Questions

Q:

As per Indian Protocol, who among the following ranks highest in the order of precedence?

A) Deputy Prime Minister B) Former President
C) Governor of a State within his state D) Speaker of Lok Sabha
 
Answer & Explanation Answer: C) Governor of a State within his state

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian Politics

49 19846
Q:

Which Indian bowler becomes the second highest wicket-taker in tests played in India?

 

A) Ravichandran Ashwin B) Axar Patel
C) Jasprit Bumrah D) Bhuvaneshwar Kumar
 
Answer & Explanation Answer: A) Ravichandran Ashwin

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Sports
Exam Prep: Bank Exams

1 19841
Q:

With which sport is the term 'Freestyle' connected with?

 

A) Tennis B) Kho Kho
C) Kabaddi D) Swimming
 
Answer & Explanation Answer: D) Swimming

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Sports
Exam Prep: Bank Exams

3 19838
Q:

The Indian cricket team scored its lowest ever total in Test cricket against which team?

 

A) England B) Australia
C) South Africa D) Pakistan
 
Answer & Explanation Answer: B) Australia

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Sports
Exam Prep: Bank Exams

4 19837
Q:

Which of the statements given below are correct?

 

A) Roger Federer won the Tennis 2017 French Open Men's Singles.

B) In 2018 IPL auctions, Rajasthan Royals retained Steve Smith.

C) Serena Williams won the Tennis 2017 French Open Women's Singles.

 

A) Only B B) B and C
C) A and B D) A, B and C
 
Answer & Explanation Answer: A) Only B

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Sports
Exam Prep: Bank Exams

1 19829
Q:

 __________ networks are connected by telephones, underwater cables and satellites.

 

A) Typewriter B) DVD
C) Computers D) Washing Machine
 
Answer & Explanation Answer: C) Computers

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Computer
Exam Prep: Bank Exams

9 19827
Q:

What will be output when you will execute following c code?

#include <stdio.h>
enum actor

{
    SeanPenn=5,
    AlPacino=-2,
    GaryOldman,
    EdNorton
};
void main()

{
     enum actor a=0;
     switch(a)

      {
         case SeanPenn:  printf("Kevin Spacey");
                         break;
         case AlPacino:  printf("Paul Giamatti");
                         break;
         case GaryOldman:printf("Donald Shuterland");
                         break;
         case EdNorton:  printf("Johnny Depp");
      } 
}

A) Kevin Spacey B) Paul Giamatti
C) Donald Shuterland D) Johnny Depp
 
Answer & Explanation Answer: D) Johnny Depp

Explanation:

Default value of enum constant
GaryOldman = -2 +1 = -1
And default value of enum constant
EdNorton = -1 + 1 = 0
Note: Case expression can be enum constant.

Report Error

View Answer Report Error Discuss

Filed Under: Programming

1 19803
Q:

The output of the code below is

       #include <stdio.h>
        void main()
        {
            int i = 0, k;
            if ( i == 0 )
                goto label;
                for ( k = 0;k < 3; k++ )
                {
                    printf( "hin" );
                    label: k = printf( "%03d", i );
                }
         }

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

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Programming

1 19800