Questions

Q:

Agronomy is a branch of agriculture that deals with

A) Study of crops B) Study of soil
C) Both A & B D) None of the above
 
Answer & Explanation Answer: C) Both A & B

Explanation:

Agronomy is a branch of agriculture that deals with the study of crops and the soils in which they are produced.

Report Error

View Answer Report Error Discuss

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

2 2073
Q:

In the following question, out of the four alternatives, select the alternative which is the best substitute of the words/sentence.

Extremely happy, peaceful, or picturesque

A) Idyllic B) Abominable
C) Iota D) Amiss
 
Answer & Explanation Answer: A) Idyllic

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2073
Q:

The Shramjeevi Express Train runs between

A) Rajgir - New Delhi B) New Delhi - Howrah
C) Patna - Howrah D) Howrah - Rajgir
 
Answer & Explanation Answer: A) Rajgir - New Delhi

Explanation:

The Shramjeevi Train is a daily superfast express train of Indian Railways, running between Rajgir, near Nalanda, Bihar, and New Delhi, the capital city of India. Previously it was running between Patna and New Delhi, later extended to Rajgir.

Report Error

View Answer Report Error Discuss

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

2 2073
Q:

NMCG means

A) National Mission for Clean Ganga B) National Money Collection Group
C) National Mutual funds for College Gang D) None of the above
 
Answer & Explanation Answer: A) National Mission for Clean Ganga

Explanation:

NMCG means National Mission for Clean Ganga.

Report Error

View Answer Report Error Discuss

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

2 2072
Q:

Which city has made Hindi as 3rd language in courts?

A) Abu Dhabi B) Quwait
C) Colombo D) Tehran
 
Answer & Explanation Answer: A) Abu Dhabi

Explanation:

Abu Dhabi (UAE) city has made Hindi as 3rd language in courts.

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 2072
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 2072
Q:

What would be the output of the following program?

main()

{

    int i = -3, j =2, k =0, m ;

    m = ++j && ++i || ++k ;

    Printf ( "\n%d%d%d%d", i , j , k , m );

}

Answer

-2  3  0  1

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

1 2072
Q:

What would be the output of the following program?

main()

{

    printf (" %d%d%d ", sizeof (3.14f), sizeof (3.14), sizeof (3. 141);

}

Answer

4  8  10

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 2072