Questions

Q:

In the following question, four words have been written out of which only one is incorrectly spelt. Select the incorrectly spelt word.

A) Coalescence B) Complaisance
C) Concomittant D) Commissariat
 
Answer & Explanation Answer: C) Concomittant

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2139
Q:

Chief Ministers of States are members of _________________

A) NITI Commission(Aayog) B) Finance Commission
C) National Development Council D) Election Commission
 
Answer & Explanation Answer: C) National Development Council

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian Politics

3 2139
Q:

The four pillars of smart planning are vital to the success of Smart Cities and the Regional Smart City Initiative. Which of the following pillar is not them? 

A)  MOBILITY  B) SUSTAINABILITY
C) INFRASTRUCTURE D) CONNECTIVITY  
 
Answer & Explanation Answer: C) INFRASTRUCTURE

Explanation:

The four pillars of smart planning are vital to the success of Smart Cities and the Regional Smart City Initiative. While each is important in its own way, the four are interdependent. These are MOBILITY, SUSTAINABILITY, CONNECTIVITY and SECURITY.

Report Error

View Answer Report Error Discuss

Filed Under: Indian Politics
Exam Prep: AIEEE , Bank Exams , CAT

0 2139
Q:

If 84+96=4842, then 36+78= ?

A) 3918 B) 3678
C) 3819 D) 1839
 
Answer & Explanation Answer: A) 3918

Explanation:
Report Error

View Answer Report Error Discuss

9 2139
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 2139
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 2139
Q:

Which of the following sports is most popular worldwide?

A) Cricket B) Football
C) Tennis D) Badminton
 
Answer & Explanation Answer: B) Football

Explanation:

Football or Soccer is the most popular sport worldwide. This game has an estimated following of 4 billion which is followed by Cricket which has 2.5 billion estimated followers.

Report Error

View Answer Report Error Discuss

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

4 2139
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 2139