Questions

Q:

Two cubes have their volumes in the ratio 1 : 27. Find the ratio of their surface areas.

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

Explanation:

Let their edges be a and b. Then,

 

a3/b3 = 1/27 (or) (a/b)3 = (1/3)3 (or) (a/b) = (1/3).

 

\Ratio of their surface area = 6a2/6b2 = a2/b2 = (a/b)2 = 1/9, i.e. 1:9.

Report Error

View Answer Report Error Discuss

31 14871
Q:

The nitrogen atom has 7 protons and 7 electrons,The nitride ion will have

A) 10 protons and 7 electrons B) 7 protons and 10 electrons
C) 4 protons and 7 electrons D) 4 protons and 10 electrons
 
Answer & Explanation Answer: B) 7 protons and 10 electrons

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Chemistry

42 14860
Q:

Pieces of camphor placed on water move about rapidly. This is because of

A) diffusion B) viscosity
C) surface tension D) capillarity
 
Answer & Explanation Answer: C) surface tension

Explanation:

The Camphor slowly dissolves in the water lowering the latter's surface tension in the immediate neighbourhood. The stronger pull exerted by the uncontaminated portion of water brings about a movement of the surface and the camphor particles are carried along with it. When after sometime the whole surface settles for the reduced tension, the movement of the camphor too short.

Report Error

View Answer Report Error Discuss

Filed Under: Physics

66 14850
Q:

Who among the following is the author of Sri Lanka's national anthem?

 

A) Ananda Samarkone B) Kumaratunga Munidasa  
C) Siri Gunasinghe   D) P.B. Jayasekara  
 
Answer & Explanation Answer: A) Ananda Samarkone

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Famous Personalities
Exam Prep: Bank Exams

0 14849
Q:

Manipur has common boundaries with the group of states of

A) Meghalaya, Mizoram and Tripura B) Nagaland, Mizoram and Meghalaya
C) Nagaland, Assam and Mizoram D) Nagaland, Meghalaya and Tripura
 
Answer & Explanation Answer: C) Nagaland, Assam and Mizoram

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian Geography

53 14844
Q:

Civil equality implies

A) Equality before law B) Equality of opportunity
C) Equal distribution of wealth D) Equal right to participate in the affairs of the State
 
Answer & Explanation Answer: A) Equality before law

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian Politics

34 14842
Q:

A Computer works on a _______ number system

A) binary B) octal
C) decimal D) hexadecimal
 
Answer & Explanation Answer: A) binary

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Computer
Exam Prep: Bank Exams

49 14841
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 14833