Analyst Questions


Q:

The age of a lion can be determined from its

A) hair B) nose
C) nails D) tail
 
Answer & Explanation Answer: B) nose

Explanation:

By seeing the color of the nose we can determine the age of lions.

Report Error

View Answer Report Error Discuss

Filed Under: Animals and Birds
Exam Prep: AIEEE , Bank Exams , CAT
Job Role: Analyst , Bank Clerk , Bank PO

24 8839
Q:

Cyanide is historically found in the following except

A) Teflon B) Cherries
C) Apricots D) All of the above
 
Answer & Explanation Answer: A) Teflon

Explanation:

Cyanide is historically found in the following except Teflon. Cyanide is found in the stones of cherries, apricots,...

Report Error

View Answer Report Error Discuss

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

5 8830
Q:

Pipe K fills a tank in 30 minutes. Pipe L can fill the same tank 5 times as fast as pipe K. If both the pipes were kept open when the tank is empty, how much time will it take for the tank to overflow ?

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

Explanation:

Let the total capacity of tank be 90 liters.
Capacity of tank filled in 1 minute by K = 3 liters.
Capacity of tank filled in 1 minute by L = 15 liters.
Therefore, capacity of the tank filled by both K and L in 1 minute = 18 liters.
Hence, time taken by both the pipes to overflow the tank = 90/18 = 5 minutes.

Report Error

View Answer Report Error Discuss

11 8819
Q:

Anthropology : Man :: Anthology : ?

A) Nature B) Poems
C) Trees D) Apes
 
Answer & Explanation Answer: B) Poems

Explanation:

Anthropology deals with the study of man. Similarly, Anthology deals with the collection of poems.

Report Error

View Answer Report Error Discuss

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

51 8769
Q:

A tin a mixture of two liquids A and B in the proportion 4 : 1. If 45 litres of the mixture is replaced by 45 litres of liquid B, then the ratio of the two liquids becomes 2 : 5. How much of the liquid B was there in the tin? What quantity does the tin hold?

A) 58 l B) 65 l
C) 50 l D) 62 l
 
Answer & Explanation Answer: C) 50 l

Explanation:

Let the tin contain 5x litres of liquids

5x - 45 x 455x - 45 x 15 + 45 = 25

=> 5(4x - 36) = 2(x + 36)

=> 20x - 180 = 2x + 72

=> x = 14 litres

Hence, the initial quantity of mixture = 70l

Quantity of liquid B

70 - 45 x 15 + 45 

= 50 litres.

Report Error

View Answer Report Error Discuss

Filed Under: Alligation or Mixture
Exam Prep: AIEEE , Bank Exams , CAT , GATE
Job Role: Analyst , Bank Clerk , Bank PO

29 8736
Q:

A woman’s voice is shriller than a man’s voice due to

A) weak vocal chords B) lower frequency
C) higher frequency D) higher amplitude
 
Answer & Explanation Answer: C) higher frequency

Explanation:

As the frequency of sound is higher, women have shriller voices than men.

The shrillness or pitch of a sound is determined by its frequency. The higher the pitch shriller the voice. As the sounds produced by vocal cords of women are higher than men so women have shriller voices than men. Because their vocal cord is of smaller size. As their vocal cord is more stretched than men's.

Report Error

View Answer Report Error Discuss

Filed Under: Physics
Exam Prep: AIEEE , Bank Exams , CAT
Job Role: Analyst , Bank Clerk , Bank PO

7 8734
Q:

What has three feet but no toes?

Answer

A Yardstick has three feet used for measuring but no toes.

Report Error

View answer Workspace Report Error Discuss

Subject: Word Puzzles Exam Prep: CAT , Bank Exams , AIEEE
Job Role: Bank PO , Bank Clerk , Analyst

47 8733
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

4 8732