Questions

Q:

Right to property was removed from the list of Fundamental Rights during the rule of

A) Indhira Gandhi Government B) Morarji Desai Government
C) Narasimha Rao Government D) Vajpayee Government
 
Answer & Explanation Answer: B) Morarji Desai Government

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian Politics

139 45680
Q:

What will be output when you will execute following c code?

#include <stdio.h>
void main()

{
    int const SIZE = 5;
    int expr;
    double value[SIZE] = { 2.0, 4.0, 6.0, 8.0, 10.0 };
    expr=1|2|3|4;
    printf ( "%f", value[expr] );
}

A) 2.000000 B) 4.000000
C) 8.000000 D) Compilation error
 
Answer & Explanation Answer: D) Compilation error

Explanation:

Size of any array in c cannot be constantan variable.

Report Error

View Answer Report Error Discuss

Filed Under: Programming

5 45641
Q:

How many times i value is checked in the below code?

       #include <stdio.h>
        int main()
        {
            int i = 0;
            do {
                i++;
                printf( "In while loopn" );
            } while (i < 3);
        }

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

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Programming

6 45618
Q:

Correct the sentence gramatically :

She went to gym despite of her illness.

A) to B) despite
C) of D) None of the above
 
Answer & Explanation Answer: C) of

Explanation:

In the given sentence,

Despite is the preposition. It does not take 'of' after it. Therefore, the grammar mistake in the given sentence is 'of'.

 

Hence, the correct sentence is  "She went to gym despite her illness."

Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams , CAT , GATE , GRE , TOEFL
Job Role: Analyst , Bank Clerk , Bank PO , Database Administration , IT Trainer

52 45509
Q:

What will be output of following c code?

#include <stdio.h>
int main()

{
    int x=123;
    int i={
         printf("c" "++")
    };
    for(x=0;x<=i;x++){
         printf("%x ",x);
    }
    return 0;

}

Answer

Output: c++0 1 2 3

Explanation: First printf function will print: c++ and return 3 to variable i.For loop will execute three time and printf function will print 0, 1, 2 respectively.

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

68 45286
Q:

Who have the power to decide an election petition?

A) Parliament B) Supreme Court
C) High Courts D) Election Commission
 
Answer & Explanation Answer: C) High Courts

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian Politics

175 44784
Q:

The Central Excise Day (CED) is celebrated on which date in India ?

 

A) February 24 B) February 22
C) February 21 D) February 27
 
Answer & Explanation Answer: A) February 24

Explanation:

The Central Excise Day (CED) is celebrated every year on February 23 in India to commemorate the enactment of the Central Excise and Salt Act, 1944. The Central Excise officers all over the country celebrate this day by organizing seminars, workshops, trade interactions and cultural events etc.

 

Report Error

View Answer Report Error Discuss

Filed Under: General Awareness
Exam Prep: CAT , Bank Exams
Job Role: Bank PO , Bank Clerk

6 44670
Q:

At 3.40, the hour hand and the minute hand of a clock form an angle of:

A) 120 degrees B) 125 degrees
C) 130 degrees D) 135 degrees
 
Answer & Explanation Answer: C) 130 degrees

Explanation:

Angle traced by hour hand in 12 hrs. = 360º.

 

Angle traced by it in  11/3 hrs=  36012*113°=110°

 

Angle traced by minute hand in 60 min. = 360º.

 

Angle traced by it in 40 min. =(360/60*40)°=240°

 

  Required angle (240 - 110)º = 130º.

Report Error

View Answer Report Error Discuss

Filed Under: Clock puzzles

147 44574