Questions

Q:

Where does transcription occur in the cell?

A) Cytoplasm B) Nucleus
C) Ribosome D) None of the above
 
Answer & Explanation Answer: B) Nucleus

Explanation:

Transcription is a process of production of mRNA which occurs in the nucleus of the cell. After transcription, translation which occurs in the cytoplasm.

Report Error

View Answer Report Error Discuss

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

2 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:

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:

Microeconomics is concerned with

A) The electronics industry B) The study of individual
C) The economy as a whole D) None of the above
 
Answer & Explanation Answer: B) The study of individual

Explanation:

Microeconomics is concerned with the study of individual firms, households, etc...

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:

Nucleic acid hybridization is based on the fact that

A) a chromosome is composed of complementary strands B) all cells have DNA
C) the strands of DNA can be separated D) pairing between complementary bases occurs
 
Answer & Explanation Answer: D) pairing between complementary bases occurs

Explanation:
Report Error

View Answer Report Error Discuss

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

1 2049
Q:

The Regent (released Voltaire) P (having discovered that he had imprisoned) Q (Ran innocent man and gave him a pension) S

The correct sequence should be

A) P Q R S B) P R S Q
C) Q R S P D) Q R P S
 
Answer & Explanation Answer: D) Q R P S

Explanation:

Since, the starting statement carries a subject; the next statement will carry a verb i.e. Q follows as it mentioned the discovery of the Regent. R will bethe continuing statement which states what he actually discovered. P follows next as it talked about the reaction of the Regent after the discovery. And S would be the concluding statement and thus form a coherent paragraph.

The correct formation would be, ‘The Regent having discovered that he had imprisoned an innocent man released Voltaire and gave him a pension.’

Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2049
Q:

What are the blocking and non-blocking assignments in Verilog and which is preferred in Sequential Circutis?

Answer

A blocking assignment is one in which the statements are executed sequentially, i.e., first statement is executed and variable is assigned  a value then second is executed and so on. A non blocking assignment is  one in which statements occurs conturrently, only non blocking assignments should be used in sequential circuit.


 


e.g.


initial


begin


a=b; //blocking


c<=a; //nonblocking


d=c; // blocking


end


 


In this example firstly the value of b is assigned to a and this value is assigned to c only after execution of first statement. the second and the third statements are executed simultaneously, i.e. value a ais assigned to c and previous value if c is assigned to d.

Report Error

View answer Workspace Report Error Discuss

Subject: Hardware

0 2048
Q:

Every SOP must have the signature of the ____ within your chain of command before it is a legal document.

Answer

SOP means Standard Operating Procedure.


A standard operating procedure is a set of step-by-step instructions compiled by an organization to help workers carry out complex routine operations. SOPs aim to achieve efficiency, quality output and uniformity of performance, while reducing miscommunication and failure to comply with industry regulations.


 


Every SOP must have the signature of the approving authority within your chain of command before it is a legal document.

Report Error

View answer Workspace Report Error Discuss

6 2048