Questions

Q:

In the following passage some of the words have been left out. Read the passage carefully and select the correct answer for the given blank out of the four alternatives.

 

_____________ nearly eight decades, the women's movement __________ and debated the desirability and feasibility of a Uniform Civil Code, and has ended up ___________ a simple question — what is the value of uniformity? Is it for the "integrity of the nation" that uniformity in laws is required, as some judicial pronouncements ___________? If so, who exactly is the beneficiary? Which sections of people benefit from "integrity of the nation", that abstract entity which is not exactly _______ the top of your mind as your husband throws you out on the street?

 

that abstract entity which is not exactly _______ the top of your mind

A) in B) for
C) at D) of
 
Answer & Explanation Answer: C) at

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2198
Q:

A sentence/a part of the sentence is underlined. Four alternatives are given to the underlined part which will improve the sentence. Choose the correct alternative and click the button corresponding to it. In case no improvement is needed, click the button corresponding to "No improvement".

Please make it a point to send the letter at my address.

A) on B) to
C) in D) No improvement
 
Answer & Explanation Answer: B) to

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2198
Q:

In the following questions, one part of the sentence may have an error. Find out which part of the sentence has an error and click the button corresponding to it. If the sentence is free from error, click the "No error" option.

It is not possible for me (A) / to give you the accurate date (B) / of my departure yet. (C) / No Error (D)

A) A B) B
C) C D) D
 
Answer & Explanation Answer: B) B

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2198
Q:

The sentences given with blanks are to be filled with an appropriate word(s). Four alternatives are suggested for each question. For each question, choose the correct alternative and click the button corresponding to it.

My younger brother _____ my grandfather.

A) looks on B) looks after
C) looks to D) looks of
 
Answer & Explanation Answer: B) looks after

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2197
Q:

In the following question, choose the word which is opposite in meaning to the give word and click the button corresponding to it.

GRACEFUL

A) AWKWARD B) ELEGANT
C) GRACIOUS D) UGLY
 
Answer & Explanation Answer: A) AWKWARD

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2197
Q:

Which of the following medieval rulers was called 'Jagat Guru'?

A) Ibrahim Qutbshah B) Ibrahim Adilshah I
C) Akbar D) Malik Ambar
 
Answer & Explanation Answer: B) Ibrahim Adilshah I

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian History
Exam Prep: Bank Exams , GATE
Job Role: Bank Clerk , Bank PO

0 2197
Q:

Name the inventor of ATM (automated teller machine), it was opened on 27th June, 1967 by Barclays bank?

A) J Shepherd-Barron B) M D White
C) D C Wetzel D) Wilfred Barron
 
Answer & Explanation Answer: A) J Shepherd-Barron

Explanation:

John Shepherd-Barron was the inventor of ATM (automated teller machine), which was opened on 27th June, 1967 by Barclays bank.

Report Error

View Answer Report Error Discuss

Filed Under: Famous Personalities
Exam Prep: AIEEE , Bank Exams , CAT , GATE
Job Role: Analyst , Bank Clerk , Bank PO

0 2197
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 2197