Questions

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

Polyploidy is involved in which of the following examples?

A) XYY males B) Some plants alternate between haploid and diploid phases
C) XO females D) A normal watermelon has 22 chromosomes but seedless watermelons have 33 chromosomes
 
Answer & Explanation Answer: D) A normal watermelon has 22 chromosomes but seedless watermelons have 33 chromosomes

Explanation:
Report Error

View Answer Report Error Discuss

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

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

Radiocarbon dating technique is used to estimate the age of

A) fossils B) rocks
C) monuments D) soil
 
Answer & Explanation Answer: A) fossils

Explanation:

Radiocarbon dating also referred to as carbon dating or carbon-14 dating is a method for determining the age of an object containing organic material by using the properties of radiocarbon, a radioactive isotope of carbon.

Report Error

View Answer Report Error Discuss

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

12 2050
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 2050
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 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:

According to World Economic Forum Global Gender Gap Report 2017, Indian has closed ______ percentage of its gender gap.

A) 39 B) 67
C) 53 D) 91
 
Answer & Explanation Answer: B) 67

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian Economy
Exam Prep: Bank Exams , CAT

2 2049