Questions

Q:

A group of eight bits is called

A) buzz B) nibble
C) byte D) word
 
Answer & Explanation Answer: C) byte

Explanation:

A group of eight bits is called as a byte and that of 4 bits is called as a nibble.

Report Error

View Answer Report Error Discuss

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

17 9111
Q:

Solve the math puzzle given below?

math_puzzle1541075516.jpg image

A) 14 B) 10
C) 9 D) 8
 
Answer & Explanation Answer: B) 10

Explanation:
Report Error

View Answer Report Error Discuss

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

78 9108
Q:

Dronacharya Award Is Given To

A) Sports Editors B) Umpires
C) Sportsmen D) Coaches
 
Answer & Explanation Answer: D) Coaches

Explanation:

The Dronacharya Award, formally known as Dronacharya Award for Outstanding Coaches in Sports and Games, is sports training honour of the Republic of India. The award is named after Drona, often referred as "Dronacharya" or "Guru Drona", a character from the Sanskrit epic Mahabharata of ancient India.

Report Error

View Answer Report Error Discuss

Filed Under: Honours and Awards
Exam Prep: GATE , CAT , Bank Exams , AIEEE
Job Role: Bank PO , Bank Clerk

15 9107
Q:

State game of Madhya Pradesh? 

A) Mallakhamba B) Lagori
C) Kabaddi D) Kho Kho
 
Answer & Explanation Answer: A) Mallakhamba

Explanation:

State_game_of_Madhya_Pradesh1552129369.jpg image

The State game of Madhya Pradesh is Mallakhamba.

Report Error

View Answer Report Error Discuss

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

11 9107
Q:

Species containing same number of electrons are called

A) Isotopes B) Isobars
C) Isoelectronic D) Isotones
 
Answer & Explanation Answer: C) Isoelectronic

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Chemistry

24 9106
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 9104
Q:

The headquarters of the coffee board of India is

A) Bangalore B) Mysore
C) Chennai D) Hyderabad
 
Answer & Explanation Answer: A) Bangalore

Explanation:

The Coffee Board of India is an organisation managed by the Ministry of Commerce and Industry of the government of India to promote coffee production in India. The headquarters of the coffee board of India is located in Bangalore, Karnataka.

 

The Coffee Board of India was established by an act of Parliament in 1942.

Report Error

View Answer Report Error Discuss

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

7 9103
Q:

Logical puzzle

You work at a fruit factory.
There are 3 crates in front of you. One crate contains only apples. One crate contains only oranges. The other crate contains both apples and oranges. And each crate is labeled. One reads "apples", one reads "oranges", and one reads "apples and oranges". But the labeling machine has gone crazy and is now labeling all boxes incorrectly. If you can only take out and look at just one of the pieces of fruit from just one of the crates, how can you label ALL of the crates correctly?

Answer

Our solution:


Take a piece of fruit from the "apples and oranges" crate. If it's an apple then you know that is the "apples" crate since ALL THE CRATES ARE LABELED INCORRECTLY. This means the crate marked "apples" must be "oranges" and the crate marked "oranges" must be "apples and oranges".

Report Error

View answer Workspace Report Error Discuss

Subject: Logic Puzzles

95 9097