Questions

Q:

Which of these responsibilities of US citizenship is considered mandatory?

A) Serving in the army B) Joining a political party
C) Holding political office D) Serving on a jury
 
Answer & Explanation Answer: D) Serving on a jury

Explanation:

Considering that citizens accused of crimes in the United States have the right to have their case heard in front of a jury of their peers, the government requires that citizens participate in jury duty. This responsibility is mandatory for individuals who are called on to serve. Failure to serve will result in legal punishments.

Report Error

View Answer Report Error Discuss

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

4 2142
Q:

Henry T. Colebrooke was a Professor of Sanskrit in which one of the following institutions?

A) Fort William College B) Serampore Mission
C) Kashi Vidyapith D) Asiatic Society
 
Answer & Explanation Answer: A) Fort William College

Explanation:

In 1782 Colebrooke was appointed through his father's influence to a writer-ship with the East a India Company in Calcutta.Lord Wellesley appointed him honorary professor of Hindu law and Sanskrit at the college of Fort William.

Report Error

View Answer Report Error Discuss

Filed Under: Famous Personalities
Exam Prep: Bank Exams

0 2142
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 2142
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 2141
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 2141
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 2141
Q:

The question below consists of a set of labelled sentences. Out of the four options given, select the most logical order of the sentences to form a coherent paragraph.

 

The absence of zebra

A-to the life and person

B-of citizens in most cities

C-crossings has become a threat

A) BCA B) BAC
C) CAB D) ACB
 
Answer & Explanation Answer: C) CAB

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2141
Q:

Four words are given, out of which only one word is spelt correctly. Choose the correctly spelt word and click the button corresponding to it.

A) Breif B) Percieve
C) Relieve D) Cheif
 
Answer & Explanation Answer: C) Relieve

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2141