Questions

Q:

"Sirius", the brightest star outside solar system, is also called ______.

A) Cat star B) Dog star
C) Fox star D) Lion star
 
Answer & Explanation Answer: B) Dog star

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: General Science
Exam Prep: Bank Exams

1 2073
Q:

The longitudinal valley lying between lesser Himalaya and the ____________ are known as Duns.

A) Himadri B) Himachal
C) Shiwaliks D) Tibet
 
Answer & Explanation Answer: C) Shiwaliks

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian Geography
Exam Prep: Bank Exams

2 2073
Q:

Isfahan, the Persian Capital is said to have provided the inspiration to build which of these monuments?

A) Humayun's Tomb B) Mahabodhi Temple Complex
C) Qutub Minar D) Red Fort Complex
 
Answer & Explanation Answer: D) Red Fort Complex

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian Geography
Exam Prep: Bank Exams

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

The Supreme Court ruled that the ‘None of The Above’ (NOTA) option will not be applicable for voting in which elections?

A) Prime Minister B) Lok Sabha
C) Rajya Sabha D) MLA
 
Answer & Explanation Answer: C) Rajya Sabha

Explanation:

The ruling of ‘None of The Above’ (NOTA) option will not be applicable for voting in Rajya Sabha elections was made by a bench of Justices comprising CJI Dipak Misra and Justices AM Khanwilkar and DY Chandrachud of the Supreme Court.

Report Error

View Answer Report Error Discuss

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

3 2072
Q:

Which state become the 1st Indian state to implement 10% Quota for EWS in General Category?

A) Telangana B) Uttar Pradesh
C) Gujarat D) Assam
 
Answer & Explanation Answer: C) Gujarat

Explanation:

Gujarat state become the 1st Indian state to implement 10% Quota for EWS in General Category.

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 2071
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 2071