Questions

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 20610
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 20602
Q:

Windows 95, Windows 98, and Windows NT are known as what?

A) Processor B) domain names
C) modems D) operating systems
 
Answer & Explanation Answer: D) operating systems

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Computer
Exam Prep: Bank Exams
Job Role: Bank Clerk

101 20598
Q:

Crack the Missing Letter Puzzle?

 

s1509602308.jpg image

A) I B) K
C) L D) W
 
Answer & Explanation Answer: C) L

Explanation:

13 x 2 = 26 => Z (opposite side)

12 x 2 = 24 => X (opposite side)

13 x 1 = 13 => M (opposite side)

12 x 1 = 12 => L (opposite side)

Report Error

View Answer Report Error Discuss

Filed Under: Missing letters puzzles
Exam Prep: AIEEE , Bank Exams , CAT , GATE , GRE , TOEFL
Job Role: Bank Clerk , Bank PO

37 20571
Q:

Which number multiplied by itself will give the output as 12345678987654321 ?

Answer

11 * 11 = 121


111 * 111 = 12321


what we observe is that the square of the number follows a pattern: 2 1's gives 121. 3 1's gives 12321.


so to get 12345678987654321 we need to get square of 9 1's(111,111,111).

Report Error

View answer Workspace Report Error Discuss

Subject: Math Puzzles

140 20558
Q:

The operating system called UNIX is typically used for_______

A) Desktop computers B) Laptop computers
C) Super computers D) All of these
 
Answer & Explanation Answer: D) All of these

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Computer
Exam Prep: Bank Exams

99 20535
Q:

Find the odd word/letters/number from the given alternatives.

(A) BCE (B) WXZ (C) MNP (D) GHK

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

Explanation:
Report Error

View Answer Report Error Discuss

0 20533
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 20501