Questions

Q:

Which of the following is not an enzyme?

A) Oxytocin B) Trypsin
C) Pepsin D) Ptyalin
 
Answer & Explanation Answer: A) Oxytocin

Explanation:

Oxytocin is a mamallian hormone and also acts as neuro transmitter in the brain.

Report Error

View Answer Report Error Discuss

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

7 2518
Q:

A gland below the bladder and surrounding the urethra is

A) prostate B) seminal vesicle
C) bartholin D) vas deferens
 
Answer & Explanation Answer: A) prostate

Explanation:

                               prostategland1531291431.jpg image

A gland surrounding the neck of the bladder in male mammals and releasing a fluid component of semen is Prostate gland which is below the bladder and surrounding the urethra.

Report Error

View Answer Report Error Discuss

Filed Under: Biology
Exam Prep: AIEEE
Job Role: Analyst

3 2517
Q:

Man has _____ pairs of salivary glands

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

Explanation:

Salivary glands of man are 3 pairs = 6. They are one pair of parotid glands, one pair of sub-maxillary or sub-mandibular glands and one pair of sub-lingual glands.

Report Error

View Answer Report Error Discuss

Filed Under: Biology

3 2516
Q:

Serious dehydration may cause all of the following, EXCEPT

A) muscle cramps B) torn ligaments
C) reduced blood volume D) increased heart rate
 
Answer & Explanation Answer: B) torn ligaments

Explanation:

Serious_dehydration_may_cause_all_of_the_following,_EXCEPT1558508048.jpg image

 

Dehydration is a loss of body fluid that impairs normal bodily functions. Serious dehydration may cause muscle cramps, reduced blood volume and increased heart rate.

Report Error

View Answer Report Error Discuss

Filed Under: General Science
Exam Prep: Bank Exams , AIEEE
Job Role: Bank PO , Bank Clerk , Analyst

4 2516
Q:

Abu Simbel is located in which country?

A) South Africa B) Iran
C) Iraq D) Egypt
 
Answer & Explanation Answer: D) Egypt

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Famous Places

4 2516
Q:

Improve the following code using typedef.

struct node

{

      int data1;  float data2;

       struct node *left;

       struct node *right;

};

struct node *ptr;

ptr = (struct node *) malloc (sizeof (struct node) ); 

Answer

typedef struct node * treeptr


typedef struct node


{


         int data1;


         float data2;


         treeptr *left;


         treeptr *right;


}treenode;


treeptr ptr;


ptr = ( treeptr ) malloc ( sizeof ( treenode ) );

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 2515
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 2515
Q:

_________ is a specialized server that enables the client to share application and data across the network.

A) Mass Server B) File server
C) Data Server D) Host Server
 
Answer & Explanation Answer: B) File server

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Computer
Exam Prep: AIEEE , Bank Exams
Job Role: Bank Clerk

18 2515