Questions

Q:

Which of the following is a Non Renewable Resource of Energy?

A) Wind Power B) Hydrogen Fuel
C) Natural Gas D) Solar Energy
 
Answer & Explanation Answer: C) Natural Gas

Explanation:

Natural Gas is a Non Renewable Resource of Energy because that does not renew itself once used, unlike the other choices. 

It is a resource that will not be naturally replenished.

Report Error

View Answer Report Error Discuss

Filed Under: Physics
Exam Prep: AIEEE , Bank Exams , CAT
Job Role: Analyst , Bank PO , IT Trainer

3 2921
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 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
Q:

Which of the following commands will allow a Linux on iSeries administrator to quickly scan backup tapes for files saved via a tar command on a Linux system?

A) The Linux command mt B) The Linux command cpio
C) The OS/400 command RST option(*print) D) The OS/400 command DSPTAP option(*savrst)
 
Answer & Explanation Answer: B) The Linux command cpio

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: IBM Certification

1 2920
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 2920
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 2920
Q:

Which one of the following National Highways is the longest

A) NH-2 B) NH-7
C) NH-8 D) NH-15
 
Answer & Explanation Answer: B) NH-7

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian Economy

4 2919
Q:

A group of giraffe is called as

A) colony B) tower
C) fleet D) pride
 
Answer & Explanation Answer: B) tower

Explanation:

A group of giraffes is called as tower.

Whereas

A group of ants is called as colony

A group of lions is called as pride

A group of ships is called as fleet.

Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: AIEEE , Bank Exams , CAT , GRE , TOEFL
Job Role: Analyst , Bank Clerk , Bank PO , IT Trainer

1 2918