Questions

Q:

Which is a green planet in the solar system?

A) Pluto B) Venus
C) Uranus D) Mars
 
Answer & Explanation Answer: C) Uranus

Explanation:

Uranus is the seventh planet from the Sun which looks green color. It has the third-largest planetary radius and fourth-largest planetary mass in the Solar System. Uranus is similar in composition to Neptune, and both have different bulk chemical composition from that of the larger gas giants Jupiter and Saturn.

 

Which_is_a_green_planet_in_the_solar_system1558075325.jpg image 

 

Colors of other planets::

 

Mercury - Gray or slightly brownish

 

Venus - Pale yellow

 

Earth - Blue with white clouds

 

Mars - Mostly reddish brown

 

Jupiter - Orange and white bands

 

Saturn - Pale gold

 

Uranus - Green

 

Neptune - Pale blue

 

Pluto - Light brown

Report Error

View Answer Report Error Discuss

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

87 46601
Q:

The speed of light will be minimum while passing through

A) water B) vaccum
C) air D) glass
 
Answer & Explanation Answer: D) glass

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Physics

463 46335
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 45897
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 45830
Q:

IG full form in police department?

Answer

IG stands for Inspector General of Police. DIG(Deputy Inspector General ofPolice) is a One-star rank in the police service who works under IG.


IG_Full_form_in_Police_Department1542091017.jpg image

Report Error

View answer Workspace Report Error Discuss

Subject: General Awareness Exam Prep: CAT , Bank Exams , AIEEE
Job Role: IT Trainer , Bank PO , Bank Clerk , Analyst

173 45813
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

141 45713
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 45325
Q:

Select the synonym of

gaudy

A) modest B) showy
C) refined D) sophisticated
 
Answer & Explanation Answer: B) showy

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: AIEEE , Bank Exams , CAT

12 45159