Questions

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

Which of the following vitamins is synthesized by intestinal bacteria?

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

Explanation:

Most of the Vitamin K is synthesized by intestinal bacteria in the large intestine.

Report Error

View Answer Report Error Discuss

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

3 2058
Q:

Which of the following is not a National Park?

A) Corbett National Park B) Kaziranga National Park
C) Satara National Park D) Bandipur National Park
 
Answer & Explanation Answer: C) Satara National Park

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian Geography
Exam Prep: Bank Exams

0 2058
Q:

Sociologists define the concept of "race" as

A) a socially constructed category composed of people who share biologically transmitted traits that members of a society consider important. B) people who fall into any minority category.
C) a cultural heritage shared by a category of people. D) a person's skin color.
 
Answer & Explanation Answer: A) a socially constructed category composed of people who share biologically transmitted traits that members of a society consider important.

Explanation:

Sociologists define the concept of "race" as a socially constructed category composed of people who share biologically transmitted traits that members of a society consider important.

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

What are * and? when using them for wildcards in windows?

Answer

* - any characters, aribitary among


? - single character

Report Error

View answer Workspace Report Error Discuss

Subject: Hardware

0 2057
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 2057