Questions

Q:

________ is an open source DBMS product that runs on UNIX, Linux and Windows.

A) MySQL B) JSP/SQL
C) JDBC/SQL D) Sun ACCESS
 
Answer & Explanation Answer: A) MySQL

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Database

39 20145
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 20134
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 20120
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 20113
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 20094
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 20043
Q:

Cobalt - 60 is commonly used in radiation therapy because it emits

A) alpha - rays B) beta rays
C) gamma rays D) X - rays
 
Answer & Explanation Answer: C) gamma rays

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Chemistry

94 20042
Q:

Find the Missing Numbers in the given Number Puzzle ?

20840690_1392703260836774_1644662038967277559_n1504170508.jpg image

A) 169 & 81 B) 67 & 121
C) 64 & 115 D) 70 & 110
 
Answer & Explanation Answer: A) 169 & 81

Explanation:

Observe that in each column, square of sum of digits in the first row = Respective second row elements.

 

In the same way, square of sum of digits in the second row = Respective third row elements.

 

=> 6+42=102=100

 

=> 4+92=132=169

 

=> 8+12=92=81.

Report Error

View Answer Report Error Discuss

Filed Under: Number Puzzles
Exam Prep: GATE , CAT , Bank Exams , AIEEE
Job Role: Bank PO , Bank Clerk

97 20037