Questions

Q:

What "line" divides the northern and southern US states?

Answer

Mason–Dixon line

Report Error

View answer Workspace Report Error Discuss

Subject: World Geography

0 2002
Q:

what are the various flags used in 8085?

Answer

Sign flag, Zero flag, Auxillary flag, Parity flag, Carry flag.

Report Error

View answer Workspace Report Error Discuss

Subject: Hardware

0 2002
Q:

Which organization is an interest group?

A) The National Rifle Association B) The National Right to Life organization
C) The National Organization for Women D) All the above
 
Answer & Explanation Answer: D) All the above

Explanation:

An interest group is an organization whose members share common concerns and try to influence government policies affecting those concerns. Interest groups are also known as lobbies.

Report Error

View Answer Report Error Discuss

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

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

Project Risk Management - Processes

Describe the Inputs, Tools and Techniques , Outputs included in the Risk Monitoring and Control?

Answer

I. Inputs



  • Risk management plan

  • Risk register

  • Approved change requests

  • work performance information

  • performance reports


II. Tools and Techniques



  • Risk reassessment

  • Risk audits

  • Variance and trend analysis

  • Technical performance measurement

  • Reserve analysis

  • Status meetings


III. Outputs



  • Risk register (updates)

  • Requested changes

  • Recommended corrective actions

  • Recommended preventive actions

  • Organizational process assets (updates)

  • Project management plan (updates)

Report Error

View answer Workspace Report Error Discuss

0 2002
Q:

Rearrange the parts of the sentence in correct order.
 
The whole biosphere, like
 
P : a chemically dynamic state
Q : the individual organisms that
R : live inside it, exists in

A)

RQP

B)

QRP

C)

QPR

D)

PQR

 
Answer & Explanation Answer: B)

QRP



Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: TOEFL , GRE , CAT , Bank Exams
Job Role: Bank PO , Bank Clerk

1 2002
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.

A person who is working in the same institution.

A) Guide B) Collector
C)  Captain D) Colleague
 
Answer & Explanation Answer: D) Colleague

Explanation:
Report Error

View Answer Report Error Discuss

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

0 2001
Q:

The pressure of a fluid varies with depth h as P = PQ+pgh, where p is the fluid density. This expression is associated with

A) Pascal’s law B) Newton’s law
C) Bernoulli’s principle D) Archimedes’ principle
 
Answer & Explanation Answer: A) Pascal’s law

Explanation:

Pascal's law is a principle in fluid mechanics that states that a pressure change occurring anywhere in a confined incompressible fluid is transmitted throughout the fluid such that the same change occurs everywhere.

This principle is stated mathematically as: P= P + rgh

 

Report Error

View Answer Report Error Discuss

Filed Under: Physics
Exam Prep: Bank Exams

1 2001