Questions

Q:

When did India's population touch 100 crore mark

A) May, 2001 B) May 2000
C) May, 2002 D) May, 2003
 
Answer & Explanation Answer: B) May 2000

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian Economy

50 20220
Q:

Which of the statements given below are correct?

 

A) Lewis Hamilton won the Formula One 2017 Chinese Grand Prix.

B) Belgium hosted the Tennis 2017 Davis Cup Final.

C) Sebastian Vettel won the Formula One 2017 Brazilian Grand Prix.

 

A) Both A and C B) Both B and C
C) A, B and C D) None of these
 
Answer & Explanation Answer: A) Both A and C

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Sports
Exam Prep: Bank Exams

3 20189
Q:

Statement coverage will not check for the following

A) Dead Code B) Unused Statement
C) Missing Statements D) Unused Branches
 
Answer & Explanation Answer: C) Missing Statements

Explanation:

Statement coverage is a white box test design technique which involves execution of all the executable statements in the source code at least once. It is used to calculate and measure the number of statements in the source code which can be executed given the requirements.

Report Error

View Answer Report Error Discuss

22 20169
Q:

Which of the statements given below are correct?

 

A) Belgium hosted the Table Tennis 2017 ITTF Men's World Cup.

 

B) In 2017, Giannis Antetokounmpo played for the NBA team Milwaukee Bucks.

 

C) United Arab Emirates hosted the 2017 Indoor Cricket World Cup.

 

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

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Sports
Exam Prep: Bank Exams

0 20158
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 20119
Q:

Which of the statements given below are correct?

 

A) In 2017, David Warner captained the IPL team Sunrisers Hyderabad.

B) In 2017, Romelu Lukaku played for the Premier League team Manchester City.

C) Canada hosted the Table Tennis 2017 ITTF Men's World Cup.

 

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

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Sports
Exam Prep: Bank Exams

1 20101
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 20084
Q:

Govind Swami Pillai is associated with which musical instrument?

 

A) Mridangam B) Tabla
C) Veena D) Violin
 
Answer & Explanation Answer: D) Violin

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Famous Personalities
Exam Prep: Bank Exams

1 20081