Questions

Q:

If the binary equivalent of 5.375 in normalised form is 0100 0000 1010 1100 0000 0000 0000 0000, what would be the output of the following program?

main()

{

    float a = 5.375 ;

    char *p;

    int i;

    p = ( char* ) &a ;

    for ( i = 0; i <= 3 ; i++ )

          printf ( " %02x ", (unsigned char ) p[i] );

}

Answer

00 00 AC 40

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

7 8393
Q:

One third of a Number is 96. What will 67% of that Number be?

A) 192.96 B) 181.44
C) 169.92 D) 204.48
 
Answer & Explanation Answer: A) 192.96

Explanation:

Let the Number be x. 

Given that one third of a Number is 96. 

i.e x = 3 x 96 = 288.

 67% of  x = x×67100=288×67100=192.96

Report Error

View Answer Report Error Discuss

3 8389
Q:

 When three or more AND and OR conditions are combined, it is easier to use the SQL keyword(s):

A) LIKE only. B) IN only.
C) NOT IN only. D) Both IN and NOT IN.
 
Answer & Explanation Answer: D) Both IN and NOT IN.

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Database

2 8389
Q:

Mango Cup is associated with which game?

A) Hockey B) Cricket
C) Foot ball D) Tennis
 
Answer & Explanation Answer: B) Cricket

Explanation:

Mango Cup is associated with Cricket game. The MANGO CUP is a Triangular Cricket limited overs tournament between the Manglorean CatholicAssociation of Sydney (MCAS), Australian Residents Anglo Indian Association (ARAIA) and GoanOverseas Association-NSW (GOA).

 

Hence, the tournament is named from both (Man) from Manglorean CatholicAssociation of Sydney and (go) from GoanOverseas Association-NSW.

Report Error

View Answer Report Error Discuss

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

20 8388
Q:

Minutes Hand Clock Puzzle?

A) 12 B) 24
C) 44 D) 60
 
Answer & Explanation Answer: B) 24

Explanation:

Exactly 24 times.

Report Error

View Answer Report Error Discuss

Filed Under: Clock puzzles
Exam Prep: GATE , CAT , Bank Exams , AIEEE
Job Role: Bank PO , Bank Clerk

25 8385
Q:

What is an Extension of Entity Type?

Answer

The collections of entities of a particular Entity Type are grouped together into an entity set.

Report Error

View answer Workspace Report Error Discuss

26 8383
Q:

An example of Full Duplex communication channel.

A) Radio Broadcasting B) Television Broadcasting
C) Walkie-Talkie D) Telephone conversation
 
Answer & Explanation Answer: D) Telephone conversation

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Computer
Exam Prep: Bank Exams

61 8381
Q:

What is the difference between lean manufacturing and JIT (Just-in-Time) Manufacturing?

Answer



Lean Manufacturing: catching the concept of JIT(Just-in-time) and re-examines it from the client point of view. Anything that is made should put something of valuable to the client’s requirement. For example, if you are manufacturing stereo system for a luxury car, you will imagine from the customer point of view like space occupancy, durability, sound quality, medium or loud sound, etc.


  JIT (Just-in-Time):  This methodology is described to provide that a product or part would arrive just in time to be used. This method saves the price of the unused inventory, and eject the need of piling up inventory.    


 

Report Error

View answer Workspace Report Error Discuss

Subject: Manufacturing

7 8371