Questions

Q:

A posted speed limit of 55 mph means

Answer

A posted speed limit of 55 mph means that we can drive at a speed of 55 miles per hour(mph) under good conditions in that area. We cannot that speed limit in that area.

Report Error

View answer Workspace Report Error Discuss

Subject: General Awareness Exam Prep: AIEEE , Bank Exams
Job Role: Analyst

0 2051
Q:

Polypeptides are assembled from

A) Ribosomes B) Chromosomes
C) Aminoacids D) None of the above
 
Answer & Explanation Answer: C) Aminoacids

Explanation:

Polypeptides are assembled from Aminoacids.

Report Error

View Answer Report Error Discuss

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

4 2050
Q:

Which amendment is freedom of expression?

A) 1 B) 12
C) 9 D) 19
 
Answer & Explanation Answer: A) 1

Explanation:

The freedom of expression is in amendment-1 of the Indian constitution.

Report Error

View Answer Report Error Discuss

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

5 2050
Q:

Which one of the following elements is used as a timekeeper in atomic clocks?

A) Potassium B) Caesium
C) Calcium D) Magnesium
 
Answer & Explanation Answer: B) Caesium

Explanation:

When exposed to certain frequencies of radiation, such as radio waves, the subatomic particles called electrons that orbit an atom's nucleus will "jump" back and forth between energy states. Clocks based on this jumping within atoms can therefore provide an extremely precise way to count seconds.It is no surprise then that the international standard for the length of one second is based on atoms. Since 1967, the official definition of a second is 9,192,631,770 cycles of the radiation that gets an atom of the element called caesium to vibrate between two energy states.

Report Error

View Answer Report Error Discuss

Filed Under: Chemistry
Exam Prep: Bank Exams

0 2050
Q:

In the following question, a word has been written in four different ways out of which only one is correctly spelt. Select the correctly spelt word.

A) Fluorescent B) Floresecent
C) Floroscent D) Flowrascent
 
Answer & Explanation Answer: A) Fluorescent

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams , CAT

0 2050
Q:

Who wrote the English Bill of Rights?

A) Parliament of England B) King James II
C) Mary II D) None of the above
 
Answer & Explanation Answer: A) Parliament of England

Explanation:

The Bill of Rights, also known as the English Bill of Rights, is an Act of the Parliament of England that sets out certain basic civil rights and clarifies who would be next to inherit the Crown.

Report Error

View Answer Report Error Discuss

Filed Under: Books and Authors
Exam Prep: AIEEE , Bank Exams
Job Role: Analyst , Bank Clerk

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

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