Questions

Q:

Which is a homologous chromosome pair?

A) Tetrad B) Gamate
C) Chromatid D) Zygote
 
Answer & Explanation Answer: A) Tetrad

Explanation:

Tetrad is a homologous chromosome pair in the given options. A homologous chromosome pair is a pair of chromosomes one from father and one from mother that has same gene sequence after the process of meiosis.

Report Error

View Answer Report Error Discuss

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

1 2046
Q:

If intermediate goods and services were included in GDP

A) the price level may change over time. B) the GDP would be overstated.
C) the price level rose by more than nominal GDP. D) All of the above
 
Answer & Explanation Answer: B) the GDP would be overstated.

Explanation:
Report Error

View Answer Report Error Discuss

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

0 2046
Q:

The federal government debt is equal to the

A) sum of past budget deficits minus the sum of past budget surpluses B) annual difference between federal government tax revenues and outlays
C) obligations of benefits from federal taxes and expenditures D) sum of all annual federal government outlays
 
Answer & Explanation Answer: A) sum of past budget deficits minus the sum of past budget surpluses

Explanation:

The federal government debt is equal to the sum of past budget deficits minus the sum of past budget surpluses.

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

Which step happens first in DNA replication?

A) Initiation B) Elongation
C) Termination D) None of the above
 
Answer & Explanation Answer: A) Initiation

Explanation:

In the first step of DNA replication called initiation, the DNA pair gets unwidened.

Report Error

View Answer Report Error Discuss

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

1 2045
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 2045
Q:

Which sport has been included in 2022 Asian Games?

A) Kabaddi B) Cricket
C) Chess D) Carroms
 
Answer & Explanation Answer: B) Cricket

Explanation:

Cricket has been included in 2022 Asian Games. The Asian Games, also known as Asiad, is a multi-sport event held every four years among athletes from all over Asia. In 2022, Asian Games are going to be hosted by China. The first Asian Games are hels in the year 1951 in New Delhi.

Report Error

View Answer Report Error Discuss

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

4 2045
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 2045
Q:

The Cabinet Committee on Economic Affairs (CCEA) has approved expansion of "Beti Bachao Beti Padhao" yojana for a pan India coverage from 2017-2018 to _____.

 

A) 2018-2019 B)  2019-2020
C) 2020-2021 D) 2021-2022
 
Answer & Explanation Answer: B)  2019-2020

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian Politics
Exam Prep: Bank Exams

1 2045