Questions

Q:

What is a property of most metals?

A) Conductivity B) Malleability
C) Luster D) All of the above
 
Answer & Explanation Answer: D) All of the above

Explanation:

We know that most of the metals are goof conductors of electricity and heat. Metals are very strong but they are malleable i.e, they can be bent into a shape. These are shiny when they are cut or polished. 

 

Hence, metals are malleable, conductors and luster. All the above are properties of the metals.

Report Error

View Answer Report Error Discuss

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

3 1994
Q:

ISRO got approval for SSLV. It's stands for

A) Small Satellite Launch Vehicle B) Small Scale Limited Vehicles
C) Secondary Scaling Ltd Vehicles D) None of the above
 
Answer & Explanation Answer: A) Small Satellite Launch Vehicle

Explanation:
Report Error

View Answer Report Error Discuss

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

0 1994
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 1994
Q:

RBI issued currency notes under which system

A) Maximum Fiduciary System B) Proportional Reserve System
C) Fixed Fiduciary System D) Fixed Minimum Reserve System
 
Answer & Explanation Answer: D) Fixed Minimum Reserve System

Explanation:

RBI issued currency notes under Fixed Minimum Reserve System.

Report Error

View Answer Report Error Discuss

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

2 1994
Q:

Increasing the Alveolar ventilation rate will

A) Increase the rate of carbon dioxide diffusion from the blood to the alveoli B) Decrease the partial pressure of oxygen in the alveoli
C) Increase the partial pressure of carbon dioxide in the alveoli D) Have no effect on either partial pressure or diffusion rate of gases
 
Answer & Explanation Answer: A) Increase the rate of carbon dioxide diffusion from the blood to the alveoli

Explanation:

Increasing the Alveolar ventilation rate will increase the rate of carbon dioxide diffusion from the blood to the alveoli.

Report Error

View Answer Report Error Discuss

Filed Under: Biology
Exam Prep: AIEEE
Job Role: Analyst

2 1993
Q:

What is Stack Pointer?

Answer

Stack pointer is a special purpose 16-bit register in the Microprocessor, which holds the address od the top of the stack.

Report Error

View answer Workspace Report Error Discuss

Subject: Hardware

0 1992
Q:

The book 'Sudhir Sukta' was written by

A) Vishnu Wagh B) Nazir Ahmad Wani
C) Andrea Levy D) Tian Er
 
Answer & Explanation Answer: A) Vishnu Wagh

Explanation:
Report Error

View Answer Report Error Discuss

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

4 1992
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 1991