Questions

Q:

The 'Dual Economy' is a mixture of

A) traditional agriculture sector and modern industrial sector B) industrial sector and manufacturing sector
C) state ownership sector and trading of goods obtained through imports D) none of these
 
Answer & Explanation Answer: A) traditional agriculture sector and modern industrial sector

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian Economy

12 13725
Q:

What color does blue and yellow make?

A) Green B) Black
C) Red D) White
 
Answer & Explanation Answer: A) Green

Explanation:

Mixing of blue and yellow colors make Green Color.

                                 400px-Color_mixture.svg_1521793884.png image

 

RYB (an abbreviation of red–yellow–blue) is a historical set of colors used in subtractive color mixing and is one commonly used set of primary colors. It is primarily used in art and design education, particularly painting.

RYB predates modern scientific color theory, which has determined that cyan, magenta, and yellow are the best set of three colorants to combine, for the widest range of high-chroma colors.

Report Error

View Answer Report Error Discuss

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

2 13690
Q:

Surface water resources are highest in

A) Ganga plains B) North-Eastern India
C) Peninsular India D) Indus Plains
 
Answer & Explanation Answer: A) Ganga plains

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian Geography

48 13682
Q:

Ball bearings are used in cycles, scooters etc to

A) Increase the friction between the wheel and the axle B) Reduce the friction between the wheel and the axle
C) Reduce the friction between ground and the whee D) None of the above
 
Answer & Explanation Answer: B) Reduce the friction between the wheel and the axle

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Physics

47 13656
Q:

The first Indian to share the Oscar award was

A) Hargobind Khurana B) Rabindranath Tagore
C) Bhanu Athaiya D) None of these
 
Answer & Explanation Answer: C) Bhanu Athaiya

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Honours and Awards

36 13656
Q:

Which tank will fill first?

which_tank_will_be_first_filled1559193031.jpg image

A) 8 B) 7
C) 10 D) 4
 
Answer & Explanation Answer: C) 10

Explanation:

From the given diagram,

Tank 10 will be first filled because from tank 1 it will go through tank 4 and tank 10.

Report Error

View Answer Report Error Discuss

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

66 13654
Q:

Who among the following wrote Sanskrit Grammer

A) Kalidas B) Charaka
C) Panini D) Aryabhatt
 
Answer & Explanation Answer: C) Panini

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian History

28 13647
Q:

what will be the output of the following code?

class Value
{
    public int i = 15;
}
public class Test
{
    public static void main(String argv[])
    {
        Test t = new Test();
        t.first();
    }
    public void first()
    {
        int i = 5;
        Value v = new Value();
        v.i = 25;
        second(v, i);
        System.out.println(v.i);
    }
    public void second(Value v, int i)
    {
        i = 0;
        v.i = 20;
        Value val = new Value();
        v =  val;
        System.out.println(v.i + " " + i);
    }
}

A) 15 0 2 B) 15 0 0
C) 15 20 0 D) 15 0 20
 
Answer & Explanation Answer: D) 15 0 20

Explanation:
Report Error

View Answer Report Error Discuss

9 13646