Questions

Q:

The country in which Yak is found

Answer

Tibet

Report Error

View answer Workspace Report Error Discuss

56 8254
Q:

Who amongst the following is a famous Sarod player

A) Zakir Hussain B) Hari Prasad Chourasia
C) Ram Narain D) Amjad Ali Khan
 
Answer & Explanation Answer: D) Amjad Ali Khan

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Famous Personalities

6 8253
Q:

Ravi, Rohan and Rajesh alone can complete a work in 10, 12 and 15 days respectively. In how many days can the work be completed, if all three work together?

A) 4 days B) 5 days
C) 3 days D) 8 days
 
Answer & Explanation Answer: A) 4 days

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Computer
Exam Prep: Bank Exams

52 8237
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 8236
Q:

In exo-biology we study about ________

A) External structure of living beings B) Life present on the earth
C) Life present in the other layer of earth atmosphere D) Life found in space and on other satellite
 
Answer & Explanation Answer: D) Life found in space and on other satellite

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Biology

14 8235
Q:

What is good customer service?

Answer

Good customer service means having thorough knowledge of your inventory, experience with your products, and being able to help customers make the best choices for them.

Report Error

View answer Workspace Report Error Discuss

5 8227
Q:

Undefined reference to 'pthread_create'

How to Fix this error?

Answer

This is a common error while compiling C program in Linux. This error occurs when you are using pthread_create function to create threads in your programs.


To fix this problem ensure following points:
Include header file pthread.h in your program.
Add –lpthread linker flag with compilation command.
1- Include Header file
#include <stdio.h>
#include <pthread.h>
...
...
2- Compile command
gcc main.c -o main -lpthread

Report Error

View answer Workspace Report Error Discuss

24 8224
Q:

 Who is known as "Iron man of India"?

A) Bhagath singh B) Sardhar vallabhai patel
C) Mahathma Gandhi D) Jawahar lal Nehru
 
Answer & Explanation Answer: B) Sardhar vallabhai patel

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Famous Personalities

11 8221