Questions

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

A protein is synthesized in the endoplasmic reticulum bound ribosomes and it targets to the inner thylakoid space of chloroplast. How many double-layered membrane layers it has to pass to reach its destination?

A) 2 B) 3
C) 4 D) 5
 
Answer & Explanation Answer: B) 3

Explanation:

There are 3 double-layered membrane layers, which the protein has to pass to reach its destination.

Report Error

View Answer Report Error Discuss

Filed Under: Biology
Exam Prep: Bank Exams

5 2019
Q:

In the following question, out of the given four alternatives, select the alternative which best expresses the meaning of the Idiom/Phrase.

To bid defiance

A) To disregard recklessly B) To apologize
C) To act in a like manner D) To bribe
 
Answer & Explanation Answer: A) To disregard recklessly

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English

1 2019
Q:

Out of the four alternatives, choose the one which can be substituted for the given words/sentences and click the button corresponding to it.

To give money to agents for sales.

A)  Salary B)  Commission
C) Fee D) Incentive
 
Answer & Explanation Answer: B)  Commission

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: TOEFL , GRE , CAT

0 2019
Q:

What's the difference between L1 and L2 cache?

Answer

Level 1 cache is internal to the chip, Level 2 is external.

Report Error

View answer Workspace Report Error Discuss

Subject: Hardware

0 2018
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 2018
Q:

Stretching exercises should ideally be performed

A) within a 5-minute time period B) 5 to 7 days a week
C) with a swinging, bouncing motion D) to the point of moderate pain
 
Answer & Explanation Answer: B) 5 to 7 days a week

Explanation:
Report Error

View Answer Report Error Discuss

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

1 2018
Q:

The concrete slump recommended for beams and slabs -

A) 45 to 75 mm B) 50 to 100 mm
C) 25 to 45 mm D) 30 to 125 mm
 
Answer & Explanation Answer: D) 30 to 125 mm

Explanation:

The concrete slump recommended for beams and slabs is 30 to 125 mm.

Report Error

View Answer Report Error Discuss

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

0 2018