Questions

Q:

Which state launched Kalia scholarship scheme to boost education for farmers children?

A) Odisha B) Uttar Pradesh
C) Haryana D) Madhya Pradesh
 
Answer & Explanation Answer: A) Odisha

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

0 2064
Q:

Which country is the largest producer of Rice in the world?

A) Russia B) China
C) Brazil D) India
 
Answer & Explanation Answer: B) China

Explanation:

China is the largest producer of Rice in the world.

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

Which error are you likely to get when you run the following program?

main()

{

  struct emp

  {

      char name[20];

      float sal;

  };

  struct emp e[10];

  int i;

  for ( i = 0 ; i <= 9; i++)

        scanf ( "%s %f" , e[i].name, &e[i].sal );

}

Answer

Floating point formats not linked

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 2064
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 2064
Q:

Select the antonym of
conjoined

A) sever B) adjoin
C) meld D) affix
 
Answer & Explanation Answer: A) sever

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2064
Q:

A pure market economy is sometimes called pure

A) Capitalism B) Stocking
C) Sharing D) Socialism
 
Answer & Explanation Answer: A) Capitalism

Explanation:
Report Error

View Answer Report Error Discuss

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

0 2064
Q:

Haemophilia is a hereditary disease carried by

A) females and expressed by males B) males and expressed by males
C) females and expressed by females D) males and expressed by females
 
Answer & Explanation Answer: A) females and expressed by males

Explanation:

Haemophilia is an inherited bleeding disorder where the blood doesn't clot properly. It is caused when blood does not have enough clotting factor.


The main treatment for hemophilia is called replacement therapy. Concentrates of clotting factor VIII (for hemophilia A) or clotting factor IX (for hemophilia B) are slowly dripped or injected into a vein. These infusions help replace the clotting factor that's missing or low.

Report Error

View Answer Report Error Discuss

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

4 2064