Questions

Q:

Who became the fastest bowler to get to 250 wickets in the test matches ?

A) K. Rabada B) R. Ashwin
C) T G Southee D) Jadeja
 
Answer & Explanation Answer: B) R. Ashwin

Explanation:

Indian Cricket team off-spin specialist Ravichandran Ashwin has become the fastest cricketer to take 250 wickets in the Test matches. Ashwin surpassed Australian fast bowler Dennis Keith Lillee to reach the milestone of 250 Test wicket. Thus Ravichandran Ashwin has become the sixth Indian bowler to reach 250 test wickets.

Report Error

View Answer Report Error Discuss

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

12 6060
Q:

When you travel in certain parts of India, you will  notice red soil. What is the main reason for this colour?

A) Abundance of magnesium B) Accumulated humus
C) Presence of ferric oxides D) Abundance of Phosphates
 
Answer & Explanation Answer: C) Presence of ferric oxides

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian Geography

12 6056
Q:

Which compound forms a colored aqueous solution?

A) CrCl3 B) KBr
C) CaCl2 D) NaOH
 
Answer & Explanation Answer: A) CrCl3

Explanation:

Colored aqueous solutions are a characteristic of transition compounds.

The only transition compound in the above choices is CrCl3.

Cr is a transition element.

Report Error

View Answer Report Error Discuss

Filed Under: Chemistry
Exam Prep: AIEEE , Bank Exams
Job Role: Analyst

5 6054
Q:

One fathom is equal to how many meters ? 

A) 1.7699 B) 2.0210
C) 1.8288 D) 2.1212
 
Answer & Explanation Answer: C) 1.8288

Explanation:

One fathom = 1.8288 meters = 6 feet

A fathom is a unit of length used especially for measuring the depth of water.

Report Error

View Answer Report Error Discuss

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

24 6054
Q:

The first speaker of the Lok Sabha was 

A) GV Mavlankar B) Hukum Singh
C) MA Ayyangar D) GS Dhillon
 
Answer & Explanation Answer: A) GV Mavlankar

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian Politics

22 6052
Q:

Arrange the following ina proper sequence.

A. Mutation

B. Reproductive isolation

C. Natural selection

D. Evolution

 

A) D,C,B,A B) C,B,A,D
C) A,C,D,B D) A,B,C,D
 
Answer & Explanation Answer: D) A,B,C,D

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Biology
Exam Prep: Bank Exams

0 6051
Q:

Solve this logical Math puzzle?

logical_thinking_puzzle1536132282.jpg image

Answer

Let that something be 'x'


From the given data,


x + x/5 = 21


5x + x/5 = 21


6x = 21 x 5


=> x = 17.5


 


Hence, that something is x = 17.5.

Report Error

View answer Workspace Report Error Discuss

8 6047
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

3 6047