Questions

Q:

Polypeptides are assembled from

A) Ribosomes B) Chromosomes
C) Aminoacids D) None of the above
 
Answer & Explanation Answer: C) Aminoacids

Explanation:

Polypeptides are assembled from Aminoacids.

Report Error

View Answer Report Error Discuss

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

4 2050
Q:

What are good sources of fat for the body?

A) Fish and eggs B) Nuts
C) Cheese D) All of the above
 
Answer & Explanation Answer: D) All of the above

Explanation:

The foods that are good source of fat and incredibly healthy to the body ar fatty fish, eggs, nuts, cheese, avocados, dark chocolates, etc...

Report Error

View Answer Report Error Discuss

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

4 2049
Q:

Write a c program to copy a data of file to other file.

Answer

#include<stdio.h>
int main(){
  FILE *p,*q;
  char file1[20],file2[20];
  char ch;
  printf("\nEnter the source file name to be copied:");
  gets(file1);
  p=fopen(file1,"r");
  if(p==NULL){
      printf("cannot open %s",file1);
      exit(0);
  }
  printf("\nEnter the destination file name:");
  gets(file2);
  q=fopen(file2,"w");
  if(q==NULL){
      printf("cannot open %s",file2);
      exit(0);
  }
  while((ch=getc(p))!=EOF)
      putc(ch,q);
  printf("\nCOMPLETED");
  fclose(p);
  fclose(q);
 return 0;
}

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 2049
Q:

Define HCMOS?

Answer

High-density n-type Complimentary Metal Oxide Silicon field effect transistor.

Report Error

View answer Workspace Report Error Discuss

Subject: Hardware

0 2049
Q:

India's Multi Application Solar Telescope (MAST) was operationalized at the ____ Solar Observatory.

A) Udaipur B) Jaipur
C) Kodaikanal D) Ahmedabad
 
Answer & Explanation Answer: A) Udaipur

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian Geography

2 2049
Q:

When it comes to cholesterol it is better to have

A) more LDL B) more HDL
C) more cholesterol D) a high ratio of LDL to HDL
 
Answer & Explanation Answer: B) more HDL

Explanation:

HDL stands for high-density lipoproteins.

HDL is called the "good" cholesterol because it carries cholesterol from other parts of your body back to your liver. Your liver then removes the cholesterol from your body.

 

Hence, when it comes to cholesterol it is better to have more HDL.

Report Error

View Answer Report Error Discuss

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

1 2049
Q:

The largest expenditure component of GDP is

A) Consumption B) Net exports
C) Government spending D) Investments
 
Answer & Explanation Answer: A) Consumption

Explanation:
Report Error

View Answer Report Error Discuss

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

1 2049
Q:

When the diaphragm and external intercostal muscles contract,

A) the volume of the thorax decreases. B) the volume of the lungs decreases.
C) the volume of the thorax increases. D) the lungs shrink.
 
Answer & Explanation Answer: C) the volume of the thorax increases.

Explanation:
Report Error

View Answer Report Error Discuss

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

3 2048