Questions

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".

This is a change of my usual work

A) from my usual work B) for my usual work
C) in my usual work D) No improvement
 
Answer & Explanation Answer: A) from my usual work

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English

0 2198
Q:

In the following question, out of the four alternatives, select the word opposite in meaning to the word given.
Lugubrious

A) Clumsy B) Lucid
C) Optimistic D) Sinister
 
Answer & Explanation Answer: C) Optimistic

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2198
Q:

In the following question, a word has been written in four different ways out of which only one is correctly spelt. Select the correctly spelt word.

 

 

A) Expernce B) Experience
C) Expeireince D) Expereince
 
Answer & Explanation Answer: B) Experience

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams , GRE , TOEFL

0 2198
Q:

Which is the first Hindi newspaper of India?

A) Udaan B) Azad Vichaar
C) Udant Martand D) Vichaar Vyakti
 
Answer & Explanation Answer: C) Udant Martand

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: General Awareness
Exam Prep: Bank Exams

5 2198
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 2198
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 2198
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 2198
Q:

The first Olympiad was held in Greece in the year

Answer

776 BC

Report Error

View answer Workspace Report Error Discuss

Subject: World History

2 2197