Questions

Q:

The renal corpuscle is made up of

A) Bowman's capsule B) Glomerulus
C) Both A & B D) None of the above
 
Answer & Explanation Answer: C) Both A & B

Explanation:
Report Error

View Answer Report Error Discuss

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

3 2059
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 2059
Q:

In the following question, four words are given out of which one word is correctly spelt. Select the correctly spelt word.

A) scrupulus B) scruppulous
C) scruppulus D) scrupulous
 
Answer & Explanation Answer: D) scrupulous

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2059
Q:

A passage is given with 5 questions following it. Read the passage carefully and choose the best answer to each question out of the four alternatives and click the button corresponding to it.

 

Man's attitude to various animals changed many times in the course of centuries. From indifference or practicality, he went on to adoration and deification, and then to hatred. Ancient Egyptians, for example, highly appreciated the cat's ability to destroy rodents. The cat was much superior in this respect to the grass­snakes and weasels they had kept in their houses before. These proved unable to cope with hordes of rats which invaded Egypt from Asia. So the cat, a very useful animal, was ranked as a sacred animal and one of the most important animals, too. The goddess of the Moon, fertility and child­birth, Bast herself was portrayed by the Egyptians as a woman with a cat's head.

Sumptuous temples were built to this goddess, where cats were kept in luxury and fed the choicest of foods. They had their own priests and votaries, more numerous as a matter of fact than any other sacred animal could boast. According to the Greek historian Herodotus, the festival in the city of Bubastis, which had a temple dedicated to cats, was attended by as many as 700 thousand, who brought their offerings to the goddess in the shape of figurines of her made of gold, silver and bronze and adorned with precious stones.

 

The cat was considered to be a _____ .

A) sacred animal B) goddess
C) symbol of peace D) symbol of fertility
 
Answer & Explanation Answer: A) sacred animal

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2059
Q:

In the following questions, one part of the sentence may have an error. Find out which part of the sentence has an error and click the button corresponding to it. If the sentence is free from error, click the "No error" option.

Variety (A)/ is (B)/ spice of life (C)/ No Error (D)

A) A B) B
C) C D) D
 
Answer & Explanation Answer: C) C

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2058
Q:

Project Communications Management - Processes

Describe the Inputs, Tools and Techniques , Outputs included in the Communications planning?

Answer

I. Inputs



  • Enterprise environmental factors

  • Organizational process assets

  • Project scope statement

  • Project management plan


                   - Constraints


                   - Assumptions


II. Tools and Techniques



  • Communications requirements analysis

  • Communications technology


III. Outputs



  • Communications management plan

Report Error

View answer Workspace Report Error Discuss

0 2058
Q:

What did you enjoy most and least in your last retailing job?

Answer

i enjoy the most learning new things like staff management,motivation,management,smart working etc. i enjoy the least free timing during my job.

Report Error

View answer Workspace Report Error Discuss

Subject: Retail

0 2058
Q:

Find the resistance (in mega Ω) of a wire of length 20m, cross sectional area 1 cm2 and made of a material of resistivity 200 Ωm.

A) 40 B) 4000
C) 80 D) 2000
 
Answer & Explanation Answer: A) 40

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Physics
Exam Prep: Bank Exams

3 2058