Questions

Q:

Which of the following serve as antibodies?

A) Proteins B) Lipids
C) Carbohydrates D) Nucleic acids
 
Answer & Explanation Answer: A) Proteins

Explanation:
Report Error

View Answer Report Error Discuss

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

5 2650
Q:

How long are profissional Golf tour players alloted per shot

A) 45 seconds B) 25 seconds
C) 1 minutes D) 2 minutes
 
Answer & Explanation Answer: A) 45 seconds

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Sports

2 2650
Q:

What is an Oracle index?

Answer

An index is an optional structure associated with a table to have direct access to rows, which can be created to increase the performance of data retrieval. Index can be created on one or more columns of a table.

Report Error

View answer Workspace Report Error Discuss

3 2650
Q:

Which factor affects the speed of an inkjet printer?

A) the quality of the paper B) the cost of the inkjet cartridges
C) the size of printer power supply D) the desired quality of the image
 
Answer & Explanation Answer: D) the desired quality of the image

Explanation:

The speed of an inkjet printer is determined mostly by the make and model of the printer, the quality of printing, and the complexity of the image. The quality of the paper, the cost of the cartridges, and the size of the power supply do not affect the speed of printing.

 

Report Error

View Answer Report Error Discuss

Filed Under: Computer
Exam Prep: Bank Exams

3 2650
Q:

Explain Adventure tourism, Attraction, Amenities, Back of the house.

Answer

Adventure tourism : to convert the adventure into pleasure for the purpose of tourism business


Attraction : Anything/object/activity, which attracts tourists and attach with it.


Amenities : Extra facilities, service added with attraction, accessibility and accommodation to create tourism. It includes trust, friendship, hospitality, etc.


Back of the house : Staffs who are not directly involved in providing service. Guests rarely interact with them

Report Error

View answer Workspace Report Error Discuss

Subject: Hospitality

2 2649
Q:

Which tennis player has authored a book titled "Unstoppable : My Life So Far" ?

A) Serena Williams B) Maria sharapova
C) Sania Mirza D) Venus Williams
 
Answer & Explanation Answer: B) Maria sharapova

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Books and Authors
Exam Prep: Bank Exams
Job Role: Bank Clerk , Bank PO

5 2649
Q:

What is Throughput, Turnaround time, waiting time and Response time?

Answer

Throughput : number of processes that complete their execution per time unit.

Turnaround time : amount of time to execute a particular process.

Waiting time : amount of time a process has been waiting in the ready queue.

Response time : amount of time it takes from when a request was submitted until the firstresponse is produced, not output (for time-sharing environment).

Report Error

View answer Workspace Report Error Discuss

2 2649
Q:

Write a c program to create dos command type.

Answer

#include
int main( int count,char * argv[] ) {
    int i;
    FILE *ptr;
    char *str;
    char ch;
    if( count == 1) {


         printf( "The syntax of the command is incorrect.\n" );
    }
    for( i=1;i<cout;i++ ){
         ptr=fopen(argv[i],"r");
         if(ptr==NULL){
             printf("The system cannot find the file specified.");
             if(count>2)
                 printf("\nError occurred while procesing : %s.\n",argv[i]);
         }
         else {
             if(count>2) {
                 printf("%s\n\n",argv[i]);
             }
             while((ch=getc(ptr))!=-1)
                 printf("%c",ch);
         }
         fclose(ptr);
    }
    return 0;
}


 


Save the above file as open.c, compile and execute the go to command mode (current working directory) and write: open xy.c (xy.c any file present in that directory)
To run the open command in all directories and drive you will have to give the path of current working directory in command mode. Write:
C:tc\bin>PATH c:\tc\bin
Now press enter key. Now your open command will work in all directory and drive.

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 2647