Questions

Q:

Biological membranes are composed of

A) Phospholipids B) Proteins
C) Carbohydrate groups D) All of the above
 
Answer & Explanation Answer: D) All of the above

Explanation:

Biological membranes are composed of phospholipids, Proteins and Carbohydrate groups attached to lipids and proteins.

 

Biological_membranes_are_composed_of1559036778.jpg image

Report Error

View Answer Report Error Discuss

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

1 2047
Q:

Who were not confirmed with the India's highest civilian honour Bharat Ratna for 2018?

A) Bhupen Hazarika B) Nanaji Deshmukh
C) Pranab Mukherjee D) Kailash Satyarthi
 
Answer & Explanation Answer: D) Kailash Satyarthi

Explanation:
Report Error

View Answer Report Error Discuss

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

4 2047
Q:

Liquids and gases never show

A) diamagnetic property B) paramagnetic property
C) ferromagnetic property D) electromagnetic property
 
Answer & Explanation Answer: C) ferromagnetic property

Explanation:

On the basis of magnetic properties, substances are classified into three groups namely diamagnetic, paramagnetic and ferromagnetic.

As solids diffuse and reorder very slowly under ambient conditions, the net, directionally dependent (anisotropic) magnetic moment can persist. Conversely, liquids and gases freely tumble and reorder: water rearranges every few pico seconds (10^12 times per second).

Hence liquids and gases can never show ferromagnetic properties.

Report Error

View Answer Report Error Discuss

Filed Under: Physics
Exam Prep: Bank Exams

0 2047
Q:

Molten rock inside the earth is called

A) Mantle B) Core
C) Magma D) Lava
 
Answer & Explanation Answer: C) Magma

Explanation:

Molten rock inside the earth is called Magma.

Report Error

View Answer Report Error Discuss

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

5 2047
Q:

Which train was recently named as the 'Vande Bharat Express' by the Railways Ministry?

A) Uday Express 1 B) Antyodaya 10
C) 23 Humsafar Express D) Train 18
 
Answer & Explanation Answer: D) Train 18

Explanation:
Report Error

View Answer Report Error Discuss

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

0 2046
Q:

Where are the Garo Hills located?

A) Assam B) Nagaland
C) Meghalaya D) Mizoram
 
Answer & Explanation Answer: C) Meghalaya

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian Geography
Exam Prep: AIEEE , Bank Exams , CAT

1 2046
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 2046
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 2046