Questions

Q:

Organisms that depend only on raw plant products are said to be 

A) herbivorous B) vegetarian
C) carnivorous D) omnivorous
 
Answer & Explanation Answer: A) herbivorous

Explanation:

Herbivorous organisms are those that take for their food, plant parts like leaves raw in contrast to vegetarian, which means that plant products are taken raw or after being cooked.

Report Error

View Answer Report Error Discuss

Filed Under: Biology

3 2890
Q:

The acid used in lead storage cells is

A) Sulphuric acid B) Nitric acid
C) Hydrochloric acid D) Phosphoric acid
 
Answer & Explanation Answer: A) Sulphuric acid

Explanation:

The acid used in lead storage cells is Sulphuric acid. They are used car batteries. Lead-acid batteries are capable of being recharged, which is important for their use in cars.

the_acid_used_in_lead_storage_cells_is1545132418.jpg image

Report Error

View Answer Report Error Discuss

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

0 2890
Q:

Elephant festival is celebrated in which city?

A) Jaipur B) Bangalore
C) Mizoram D) Dispur
 
Answer & Explanation Answer: A) Jaipur

Explanation:

Elephant Festival is a festival celebrated in Jaipur city in Rajasthan state in India. It is held on the day of Holi festival, usually in the month of March. The festival features Elephant polo and Elephant Dance.

Report Error

View Answer Report Error Discuss

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

15 2889
Q:

Indians who have been featured on Forbe's list of the 100 Greatest Living Business Minds ?

A) Ratan Tata B) Lakshmi Mittal
C) Vinod Khosla D) All of the above
 
Answer & Explanation Answer: D) All of the above

Explanation:

Three Indians – Ratan Tata, Lakshmi Mittal and Vinod Khosla have been featured on Forbe's list of the 100 Greatest Living Business Minds.

Report Error

View Answer Report Error Discuss

Filed Under: Famous Personalities
Exam Prep: AIEEE , Bank Exams , CAT
Job Role: Bank Clerk , Bank PO

7 2889
Q:

Which animal adaptation happened before the others?

A) Reproduction on land B) Development of a colelom
C) Tissue development D) Deuterostome development
 
Answer & Explanation Answer: C) Tissue development

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Animals and Birds
Exam Prep: AIEEE , Bank Exams , CAT
Job Role: Analyst , Bank Clerk

10 2889
Q:

Most highly intelligent mammals are

A) Elephants B) Kangaroos
C) Whales D) Dolphins
 
Answer & Explanation Answer: D) Dolphins

Explanation:

Dolphins are the most highly intelligent mammals.

Report Error

View Answer Report Error Discuss

Filed Under: Animals and Birds
Exam Prep: AIEEE , Bank Exams , CAT
Job Role: Analyst , Bank Clerk , Bank PO

9 2889
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 2889
Q:

The More You Have, The Less You See. What is it?

A) Light B) Darkness
C) Sight D) None
 
Answer & Explanation Answer: B) Darkness

Explanation:

The More You Have the Darkness, The Less You See i.e, visible less.

Report Error

View Answer Report Error Discuss

6 2887