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 one of the following pairs about organ/part that helps in locomotion is not correctly matched?

A) Euglena : Flagellum B) Paramecium : Cilia
C) Nereis : Pseudopodia D) Starfish : Tubefeet
 
Answer & Explanation Answer: C) Nereis : Pseudopodia

Explanation:

Euglena move by a flagellum (plural ‚ flagella), which is a long whip-like structure that acts like a little motor.

The paramecium uses its cilia to sweep the food along with some water into the cell mouth after it falls into the oral groove.

The underside of the starfish is covered with hundreds of tube feet, which it uses for walking around, for attaching tightly to rocks, and for holding on to prey.

Nereis possess setae and parapodia for locomotion

Report Error

View Answer Report Error Discuss

Filed Under: Biology
Exam Prep: Bank Exams

1 2080
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:

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:

The 100th constitutional amendment made in 2015 is pertaining to

A) Cooperative societies B) Boundary adjustment between India & Bangladesh
C) National Judicial Appointments Commission D) Anti deflection law
 
Answer & Explanation Answer: B) Boundary adjustment between India & Bangladesh

Explanation:
Report Error

View Answer Report Error Discuss

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

3 2078
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