Questions

Q:

The price elasticity of supply measures how

Answer

The price elasticity of supply measures how the responsiveness of the quantity demanded of a commodity to changes it its prices; defined as the percentage change in quantity demanded divided by the percentage change in price.

Report Error

View answer Workspace Report Error Discuss

Subject: Business Awareness Exam Prep: AIEEE , Bank Exams , CAT
Job Role: Analyst , Bank Clerk , Bank PO

7 2145
Q:

Goa got freedom from which rule?

A) Portuguese B) Romans
C) Britishers D) None of the above
 
Answer & Explanation Answer: A) Portuguese

Explanation:
Report Error

View Answer Report Error Discuss

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

1 2145
Q:

Differ between static and dynamic RAM?

Answer

Static RAM: no refreshing, 6 to 8 MOS transistors are required to form one memory cell, information stored as voltage level in flip flop. 


Dynamic RAM: refreshed periodically, 3 to 4 transistors are required to form one memory cell, information is  stored as a charge in the gate to substrate capacitance.

Report Error

View answer Workspace Report Error Discuss

Subject: Hardware

1 2145
Q:

Project Integration Management - Processes

Describe the Inputs, Tools and Techniques, Outputs of Direct and Manage Project Execution Phase?

Answer

I. Inputs



  • Project management plan

  • Approved corrective actions

  • Approved preventive actions

  • Approved change requests

  • Approved defect repair

  • Validated defect repair

  • Administrative closure procedure


II. Tools and Techniques



  • Project management methodology

  • Project management information system


III. Outputs



  • Deliverables

  • Requested changes

  • Implemented change requests

  • Implemented corrective actions

  • Implemented preventive actions

  • Implemented defect repair

  • Work performance information

Report Error

View answer Workspace Report Error Discuss

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

In July 2017, RBI Capped how much Customer liability if they report unauthorised transactions within seven working days?

A) Rs 50,000 B) Rs 25,000
C) Rs 10,000 D) Rs 20,000
 
Answer & Explanation Answer: B) Rs 25,000

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: General Awareness
Exam Prep: Bank Exams

0 2144
Q:

In the following question, out of the four alternatives, select the alternative which best expresses the meaning of the idiom/phrase.

to get over it

A) to accept something that happened in the past and move on B) to complete a project or task
C) to control one's anger D) to achieve something seemingly easy, but with a lot of difficulty
 
Answer & Explanation Answer: A) to accept something that happened in the past and move on

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2144
Q:

The sentences given with blanks are to be filled with an appropriate word(s). Four alternatives are suggested for each question. For each question, choose the correct alternative and click the button corresponding to it.

Food was packed, and they__________, a merry, delighted party.

A) went off B) start off
C) cut off D) set off
 
Answer & Explanation Answer: D) set off

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2144