Searching for "0100"

Q:

Find the logic in the given puzzle?

Find_The_Logic_In_The_Question1565001003.jpg image

Answer

Given that, a woman has seven children. Half of them are boys. 


Half of 7 is 3.5 which is not possible. And it is possible in only one way that all the children must be boys. Then half of them are boys.

Report Error

View answer Workspace Report Error Discuss

Subject: Logic Puzzles Exam Prep: AIEEE , Bank Exams , CAT , GATE , GRE , TOEFL
Job Role: Analyst , Bank Clerk , Bank PO

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

Q:

Convert 10100010111101011001110110001011 2 to dotted decimal.

Answer

Convert to dotted hexadecimal first, and then convert each hexadecimal number pair to decimal.

A2.F5.9D.8B then 162.245.157.139

Report Error

View answer Workspace Report Error Discuss

Subject: CCNP