Analyst Questions


Q:

What is the main reason the OSI Model was created?

Answer

The OSI Model is used as a reference model.


The primary reason the OSI model was created was so that different networks could inter-operate. Hence, different networks could communicate.

Report Error

View answer Workspace Report Error Discuss

34 16301
Q:

In MS-Word, for what does ruler help?

A) to set indents B) to change page margins
C) to set tabs D) All the above
 
Answer & Explanation Answer: D) All the above

Explanation:

In_MS-Word,_for_what_does_ruler_help1554294391.jpg image 

 

In MS-Word, the Ruler function helps align the text, graphic, tables or other elements in your document.

 

In_MS-Word,_for_what_does_ruler_help1558590348.png image 

Report Error

View Answer Report Error Discuss

33 16229
Q:

111 13 112 24 113 35 117 ?

A) 46 B) 57
C) 68 D) 79
 
Answer & Explanation Answer: D) 79

Explanation:

The given puzzle follows a pattern that,

Number - <last digit> <sum of all digits>.

111 - 13

112 - 24

113 - 35

So 

117 - 79

Report Error

View Answer Report Error Discuss

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

60 16206
Q:

First Indian woman to participate in Olympics?

A) Karnam Malleswari B) Mary Kom
C) P.V. Sindhu D) Geeta Phogat
 
Answer & Explanation Answer: A) Karnam Malleswari

Explanation:

The first Indian woman to ever win an Olympic medal was Karnam Malleswari who won a bronze medal at the Sydney Olympics in the Women's 69 kg category in Weightlifting.

Report Error

View Answer Report Error Discuss

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

24 16184
Q:

Which of the following is not an Endocrine Gland?

A) Spleen B) Pituitary
C) Thyroid D) Adrenal
 
Answer & Explanation Answer: A) Spleen

Explanation:

Endocrine glands are glands of the endocrine system that secrete their products, hormones, directly into the blood rather than through a duct.

 

The major glands of the endocrine system include the

pineal gland,

pituitary gland,

pancreas,

ovaries,

testes,

thyroid gland,

parathyroid gland,

hypothalamus and

adrenal glands.

Report Error

View Answer Report Error Discuss

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

30 16176
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 16176
Q:

There are three rooms in a Hotel: one single, one double and one for four persons. How many ways are there to house seven persons in these rooms ?

A) 105 B) 7! x 6!
C) 7!/5! D) 420
 
Answer & Explanation Answer: A) 105

Explanation:

Choose 1 person for the single room & from the remaining choose 2 for the double room & from the remaining choose 4 people for the four person room, 

 Then, 7C1 x 6C2 x 4C

= 7 x 15 x 1 = 105

Report Error

View Answer Report Error Discuss

Filed Under: Permutations and Combinations
Exam Prep: GRE , GATE , CAT , Bank Exams , AIEEE
Job Role: Bank PO , Bank Clerk , Analyst

14 16139
Q:

Which sentence is capitalized correctly?

A) on a cloudless night, I studied pisces, a constellation in the north sky. B) On a cloudless night, I studied Pisces, a constellation in the North sky.
C) on a Cloudless Night, i studied Pisces, a constellation in the North Sky. D) On a cloudless night, I studied pisces, a constellation in the north sky.
 
Answer & Explanation Answer: B) On a cloudless night, I studied Pisces, a constellation in the North sky.

Explanation:
Report Error

View Answer Report Error Discuss

14 16109