Questions

Q:

The concept of Judicial Review in ourrr constitution has been taken from the Constitution of

A) England B) USA
C) Canada D) Australia
 
Answer & Explanation Answer: B) USA

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian Politics

39 21260
Q:

November 30 is observed as ______

A) Computer Security Day B) United Nations Day for South-South Cooperation
C) International Cooperative Day D) International Human Solidarity Day
 
Answer & Explanation Answer: A) Computer Security Day

Explanation:
Report Error

View Answer Report Error Discuss

45 21237
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 21233
Q:

Which of the statements given below are correct?

A) Garbine Muguruza won the Tennis 2017 French Open Women's Singles.

B) Rafael Nadal won the Tennis 2017 US Open Men's Singles.

C) Valtteri Bottas won the Formula One 2017 Brazilian Grand Prix.

 

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

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Sports
Exam Prep: Bank Exams

0 21214
Q:

void main()

{

char good *better, *best;

printf( "%d..%d", sizeof(better), sizeof(best) );

}

A) 1..2 B) 4..4
C) 4..2 D) 2..2
 
Answer & Explanation Answer: C) 4..2

Explanation:

The second pointer is of char type and not a good pointer.

Report Error

View Answer Report Error Discuss

Filed Under: Programming

4 21162
Q:

If the following program (myprog) is run from the command line as 

myprog 1 2 3 

what would be the output?

main(int argc, char *argv[])

{

    int i, j = 0;

    for (i = 0; i < argc ; i++)

           j = j + atoi ( argv[i]);

    printf ("%d", j);

}

A) 123 B) 6
C) Error D) "123"
 
Answer & Explanation Answer: B) 6

Explanation:

When atoi() tries to convert argv[0] to a number it cannot do so (argv[0] being a file name) and hence returns a zero.

Report Error

View Answer Report Error Discuss

Filed Under: Programming

2 21131
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 21124
Q:

Which of the statements given below are correct?

 

A) In 2017, Wes Morgan captained the Premier League team Leicester City.

B) In 2017, Suresh Raina captained the IPL team Gujarat Lions Squad.

C) In 2017, Sergio Agüero played for the Premier League team Liverpool.

 

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

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Sports
Exam Prep: Bank Exams

2 21100