Questions

Q:

Arakan yoma is the extension of the himalayas located in

A) Myanmar B) West Bengal
C) Nagaland D) Baluchistan
 
Answer & Explanation Answer: A) Myanmar

Explanation:

Arakan yoma is the extension of the himalayas located in Myanmar. The Arakan Mountains are also known as the Rakhine Mountains.

 

Arakan_yoma_is_the_extension_of_the_himalayas_located_in1558508556.jpg image 

 

These are a mountain range in western Myanmar, between the coast of Rakhine State and the Central Myanmar Basin, in which the Irrawaddy River flows.

 

Report Error

View Answer Report Error Discuss

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

10 20368
Q:

Find the appropriate relation for quantity 1 and quantity 2 in the following question:

Quantity I: the unit digit in (6817)754

Quantity II: the unit digit in (365×659×771)

A) Quantity I > Quantity II B) Quantity I < Quantity II
C) Quantity I ≥ Quantity II D) Quantity I ≤ Quantity II
 
Answer & Explanation Answer: A) Quantity I > Quantity II

Explanation:
Report Error

View Answer Report Error Discuss

1 20363
Q:

The term ' Gambit ' is associated with

A) Chess B) Tennis
C) Basket ball D) Baseball
 
Answer & Explanation Answer: A) Chess

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Sports

66 20362
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 20337
Q:

What value should come in place of question mark (?) in the following question?

442 + 232 = (?)2 + 44

A) 47 B) 65
C) 52 D) 41
 
Answer & Explanation Answer: A) 47

Explanation:

1936 + 529 = ?2 + 256 2465 = ?2 + 256 ?2 = 2465 - 256 ?2 = 2209 ?=47

Report Error

View Answer Report Error Discuss

0 20332
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 20309
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 20305
Q:

Which of the statements given below are correct?

A) In 2017, Gary Cahill captained the Premier League team Chelsea.

B) In 2017, Jordan Henderson captained the Premier League team Liverpool.

C) Canada hosted the 2017 AIBA World Boxing Championships.

 

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

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Sports
Exam Prep: Bank Exams

1 20294