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

SEBI is evaluating whether ICO (Initial Coin Offerings) can be brought under its purview. ICO is related to ______.

 

A) Dollars B) Pounds
C) Rupees D) Cyptocurrency
 
Answer & Explanation Answer: D) Cyptocurrency

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian Economy
Exam Prep: Bank Exams

4 2923
Q:

The book ' Redesigning the Aeroplane While Flying : Reforming Institutions' is written by

Answer

Arun Maira

Report Error

View answer Workspace Report Error Discuss

5 2923
Q:

Which of the following is a renewable source of energy

A) Natural gas B) Coal
C) Wind D) Oil
 
Answer & Explanation Answer: C) Wind

Explanation:

The energy sources that are constantly being replenished, such as sunlight, wind, and water. This means that we can use them as much as we want, and we do not have to worry about them running out. Additionally, renewable energy sources are usually much more environmentally friendly than fossil fuels. Overall, they release very few chemicals, like carbon dioxide, that can harm the environment.


Most of this energy comes from fossil fuels, such as coal, oil, and natural gas. These are nonrenewable energy sources, which means that if we use them all up, we can never get more during our lifetime. Fossil fuels also contribute greatly to global climate change by releasing carbon dioxide into the air when they are burned.

Report Error

View Answer Report Error Discuss

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

2 2923
Q:

Software designed for a specific purpose is called as

A) System software B) Application software
C) Specific software D) None of the above
 
Answer & Explanation Answer: B) Application software

Explanation:

Software designed for a specific purpose is called as Application software.

Report Error

View Answer Report Error Discuss

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

5 2922
Q:

Who has scored the most runs in a single First class innings

A) Hanif Mohammad B) Brian Lara
C) Sir Donald Bradman D) Sachin Tendulkar
 
Answer & Explanation Answer: B) Brian Lara

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Sports

1 2922
Q:

Write a c program for insertion sort.

Answer

#include<stdio.h>
int main(){

  int i,j,s,temp,a[20];

  printf("Enter total elements: ");
  scanf("%d",&s);

  printf("Enter %d elements: ",s);
  for(i=0;i<s;i++)
      scanf("%d",&a[i]);

  for(i=1;i<s;i++){
      temp=a[i];
      j=i-1;
      while((temp<a[j])&&(j>=0)){
      a[j+1]=a[j];
          j=j-1;
      }
      a[j+1]=temp;
  }

  printf("After sorting: ");
  for(i=0;i<s;i++)
      printf(" %d",a[i]);

  return 0;
}

Output:
Enter total elements: 5
Enter 5 elements: 3 7 9 0 2
After sorting:  0 2 3 7 9

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 2921
Q:

Cytoplasm contains all the organelles.

A) TRUE B) FALSE
Answer & Explanation Answer: B) FALSE

Explanation:

Cytoplasm does not contains all the organelles.

Report Error

View Answer Workspace Report Error Discuss

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

0 2920