Questions

Q:

Which of the statements given below are correct?

A) In 2017, Michael Carrick captained the Premier League team Manchester United.

B) Sergio García won the Golf 2017 ANA Inspiration.

C) In 2018 IPL auctions, Kolkata Knight Riders retained Axar Patel.

 

A) Only A B) Both B and C
C) Both A and B D) None of these
 
Answer & Explanation Answer: A) Only A

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Sports
Exam Prep: Bank Exams

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

Which of the following elements is a metal?

A) Se B) I
C) Zn D) S
 
Answer & Explanation Answer: C) Zn

Explanation:

In chemistry, a metal is an element that readily forms positive ions (cations) and has metallic bonds. Metals are opaque, lustrous elements that are good conductors of heat and electricity. Most metals are malleable and ductile and are, in general, denser than the other elemental substances.

 

Examples of metals are aluminium, copper, iron, tin, gold, lead, silver, titanium, uranium, and zinc.

 

Here Se - Selenium is an element but is not a metal, S - Sulphur is not a metal and I - Iodine is also not a metal.

 

Hence, Zn - Zinc is the only metal in the given options.

Report Error

View Answer Report Error Discuss

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

4 2640
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 2640
Q:

What is the middle name of Sourav Ganguly?

A) Chandidas B) Karamdas
C) Karamchand D) Mohandas
 
Answer & Explanation Answer: A) Chandidas

Explanation:

Sourav Chandidas Ganguly was a former Indian Cricket team captain mostly called as DADA.

Report Error

View Answer Report Error Discuss

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

5 2639
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 2638