Questions

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 20221
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 20148
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 20139
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 20122
Q:

Where is the Headquarter of ASEAN (Association of Southeast Asian Nations)?

A) Jakarta B) Beijing
C) Newyork D) Da Nang
 
Answer & Explanation Answer: A) Jakarta

Explanation:

The ASEAN Headquarters is located in Jakarta, Indonesia.

 

ASEAN is The Association of Southeast Asian Nations is a group of ten Southeast Asian countries. It was formed on 8th August 1967. The 10 countries in ASEAN are Indonesia, Malaysia, Philippines, Singapore, Brunei, Myanmar, Cambodia, Laos, Vietnam and Thailand.

 

Its main purpose include the acceleration of economic growth, social progress, cultural development among its members, the protection of the peace and stability of the region, and to provide opportunities for member countries to discuss differences peacefully.

Report Error

View Answer Report Error Discuss

Filed Under: World Organisations
Exam Prep: CAT , Bank Exams , AIEEE
Job Role: Bank PO , Bank Clerk , Analyst

32 20118
Q:

Which of the statements given below are correct?

 

A) In 2017, Dani Pedrosa raced in MotoGP for Yamaha.

B) United Arab Emirates hosted the Badminton 2017 BWF World Senior Championships.

C) Johanna Konta won the Tennis 2017 Miami Open Women's Singles.

 

 

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

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Sports
Exam Prep: Bank Exams

1 20110
Q:

Which of the statements given below are correct?

A) Sebastian Vettel won the Formula One 2017 Mexican Grand Prix.

B) In 2017, Per Mertesacker captained the Premier League team Arsenal.

C) Tan Zhongyi won the 2017 Women's World Chess Championship.

 

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

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Sports
Exam Prep: Bank Exams

0 20058
Q:

The second longest east-flowing peninsular river is 

A) Godavari B) Krishna
C) Cauvery D) Mahanadi
 
Answer & Explanation Answer: A) Godavari

Explanation:

Godavari is the largest river system in the peninsula and second largest system in india next to Ganga System.

Report Error

View Answer Report Error Discuss

Filed Under: Indian Geography

18 20055