Questions

Q:

In which language did Vardhaman Mahavira taught?

A) Prakrit B) Hindi
C) Pali D) Sanskrit
 
Answer & Explanation Answer: A) Prakrit

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian History
Exam Prep: Bank Exams

2 2088
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 2087
Q:

Which of the following medieval rulers was called 'Jagat Guru'?

A) Ibrahim Qutbshah B) Ibrahim Adilshah I
C) Akbar D) Malik Ambar
 
Answer & Explanation Answer: B) Ibrahim Adilshah I

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian History
Exam Prep: Bank Exams , GATE
Job Role: Bank Clerk , Bank PO

0 2087
Q:

In what city would you find the world's tallest building?

Answer

Dubai

Report Error

View answer Workspace Report Error Discuss

Subject: World Geography

1 2087
Q:

What's the difference between L1 and L2 cache?

Answer

Level 1 cache is internal to the chip, Level 2 is external.

Report Error

View answer Workspace Report Error Discuss

Subject: Hardware

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

Rate of change of momentum is

A) Area B) Pressure
C) Force D) Velocity
 
Answer & Explanation Answer: C) Force

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Physics
Exam Prep: AIEEE , Bank Exams , CAT

1 2087
Q:

If an electron and a photon have the same wavelength, then they will have the same

A) velocity B) linear momentum
C) angular momentum D) energy
 
Answer & Explanation Answer: B) linear momentum

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Physics
Exam Prep: Bank Exams

1 2087