Questions

Q:

In the following question, a sentence has been given in Active/Passive voice. Out of four alternatives suggested, select the one which best expresses the same sentence in Passive/Active voice.
Somebody told me that there had been a robbery in the jewellery exhibition.

A) I was informed that there was a robbery in the jewellery exhibition. B) I was told by somebody that there has been a robbery in the jewellery exhibition.
C) I was told by somebody about a robbery in the jewellery exhibition. D) I was told about a robbery in the jewellery exhibition.
 
Answer & Explanation Answer: B) I was told by somebody that there has been a robbery in the jewellery exhibition.

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

1 2080
Q:

Which city was the venue of 'ParmanuTech 2019'?

A) Kolkata B) Pune
C) New Delhi D) Hyderabad
 
Answer & Explanation Answer: C) New Delhi

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: General Awareness
Exam Prep: AIEEE , Bank Exams , CAT
Job Role: Analyst , Bank Clerk , Bank PO

1 2079
Q:

A watch is listed for Rs.230 and is sold at a discount of 12%, then the sale price of the watch is

A) Rs.27.6 B) Rs.276
C) Rs.202.4 D) Rs.257.6
 
Answer & Explanation Answer: C) Rs.202.4

Explanation:
Report Error

View Answer Report Error Discuss

1 2079
Q:

Why we use do-while loop in c?

Answer

It is also called as post tested loop. It is used when it is necessary to execute the loop at least one time. Syntax:

do {
Loop body
} while (Expression);

Example:

int main(){
    int num,i=0;  
    do{
         printf("To enter press 1\n");
         printf("To exit press  2");
         scanf("%d",&num);
         ++i;
         switch(num){
             case 1:printf("You are welcome\n");break;
             default : exit(0);
         }
    }
    while(i<=10);
    return 0;
}

Output: 3 3 4 4

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 2079
Q:

Swap two variables without using third variable.

Answer

#include<stdio.h>
int main(){
    int a=5,b=10;
    a=b+a;
    b=a-b;
    a=a-b;
    printf("a= %d  b=  %d",a,b);
}

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 2079
Q:

In loading programs into memory, what is the difference between load-time dynamic linking and run-time dynamic linking?

Answer

For load-time dynamic linking: Load module to be loaded is read into memory. Any reference to a target external module causes that module to be loaded and the references are updated to a relative address from the start base address of the application module.


With run-time dynamic loading: Some of the linking is postponed until actual reference during execution. Then the correct module is loaded and linked.

Report Error

View answer Workspace Report Error Discuss

0 2078
Q:

Most catches in test cricket by wicket keeper?

A) MV. Boucher B) M.S Dhoni
C) Gilchrist D) IA. Healy
 
Answer & Explanation Answer: A) MV. Boucher

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Sports
Exam Prep: AIEEE , Bank Exams , CAT
Job Role: Analyst , Bank Clerk , Bank PO

4 2078
Q:

Southerners who were for redemption wanted which of the following?

A) remove blacks from politics B) remove republicans from politics
C) hold political power D) All of the above
 
Answer & Explanation Answer: D) All of the above

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: World History
Exam Prep: AIEEE , Bank Exams
Job Role: Analyst , Bank Clerk , Bank PO

0 2078