Questions

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 8260
Q:

What is the motto Incorporated under our National Emblem?

A) Satyam Shivam B) Satyam Shivam Sundaram
C) Satyameva Jayate D) Jai Hind
 
Answer & Explanation Answer: C) Satyameva Jayate

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian History

15 8256
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 8256
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:

How do you get more retailers / customers for your business? What are the steps you would take?

Answer

Applicant should answer that being in a wholesale market, he/she would plan and direct advertising and promotional activities to attract more retailer suppliers. Promotional activities like posters, contests, coupons, give-away to create extra interest in the purchase of a product or services from customers or retailers.

Report Error

View answer Workspace Report Error Discuss

Subject: Retail

5 8239
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 8237
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