Questions

Q:

Appetite is triggered by

Answer

Appetite is the desire to eat food or in short feeling of hunger. Appetite is triggered by the time of day, the smell, taste and texture of food, the culture in which one is raised.

Report Error

View answer Workspace Report Error Discuss

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

0 2156
Q:

Air pollution level is considered to be moderate if Air Quality index between

A) 0 to 50 B) 51 to 100
C) 101 to 150 D) 151 to 200
 
Answer & Explanation Answer: D) 151 to 200

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: General Science
Exam Prep: Bank Exams

3 2156
Q:

The Rule of Law states that

Answer

The Rule of Law states that a principle of governance in which all persons, institutions and entities, public and private, including the State itself, are accountable to laws that are publicly promulgated, equally enforced and independently adjudicated, and which are consistent with international human rights norms and standards.

Report Error

View answer Workspace Report Error Discuss

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

0 2156
Q:

What is Gol Gumbadh ?

A) Mausoleum of Hyder Ali B) Mausoleum of Aurangazeb
C) Mausoleum of Chand Bibi D) Mausoleum of Mohammed Adil Shah
 
Answer & Explanation Answer: D) Mausoleum of Mohammed Adil Shah

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Famous Places
Exam Prep: Bank Exams

7 2156
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 2155
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 2155
Q:

Which among the following Mughal Emperor was illiterate?

A) Shah Jahan B) Aurangzeb
C) Akbar D) Jahangir
 
Answer & Explanation Answer: C) Akbar

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian History
Exam Prep: Bank Exams

2 2155
Q:

Queen Elizabeth I ascended the throne of England in the year

Answer

1558 AD

Report Error

View answer Workspace Report Error Discuss

Subject: World History

2 2155