Questions

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 2056
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 2056
Q:

Trade blocs help countries by

A) competition B) economic integration
C) Increase in trade D) All of the above
 
Answer & Explanation Answer: D) All of the above

Explanation:

A trade bloc is a type of intergovernmental agreement for a group of countries where barriers to trade are reduced or eliminated among the participating states and less competition and for economic integration.

Report Error

View Answer Report Error Discuss

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

0 2056
Q:

Look at the underlined part of each sentence. Below each sentence are given three possible substitutions for the underlined part. If one of them (a), (b) or (c) is better than the underlined part, indicate your response on the Answer Sheet against the corresponding letter. If none of the substitutions imporves the sentence, indicate (d) as your response on the Answer Sheet.

Your services are dispensed for.

A) from B) with
C) off D) no improvement
 
Answer & Explanation Answer: C) off

Explanation:

‘dispensed’ should be followed by ‘off’. Dispensed off means given away, therefore the sentence means that his services are no longer needed.

Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2056
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.
 
P: The real purpose underlying this maxim lies in its utility in the worldly sense.
Q: He has within him a spirit which is ever exhorting him to cut down his needs and learn to be happy with what he has.
R: Man is something much greater than an intelligent being using his intellect to make newer inventions from time to time.
S: It tells us to be up and doing, not to be passive in our attitude to life.

A) QPSR B) RQPS
C) SRPQ D) None
 
Answer & Explanation Answer: B) RQPS

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2055
Q:

In each of the questions, four alternatives are given for the Idiom/Phrase. Choose the alternative which best expresses the meaning of the Idiom/Phraseand click the button corresponding to it.

Fish out of water

A) Dehydrated B) Comfortable position
C) An uncomfortable position D) Fish in an aquarium
 
Answer & Explanation Answer: C) An uncomfortable position

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2055
Q:

Tennis rackets and ballpoint pens are

A) complementary goods B) independent goods
C) inferior goods D) substitute goods
 
Answer & Explanation Answer: B) independent goods

Explanation:

Tennis rackets and ballpoint pens are two independent goods. Since, one doesn't depend on the other.

Report Error

View Answer Report Error Discuss

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

0 2055
Q:

The multiplier effect means that

Answer

The multiplier effect means that "An effect in economics in which an increase in spending produces an increase in national income and consumption greater than the initial amount spent."

Report Error

View answer Workspace Report Error Discuss

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

1 2055