ENG201 Solved Final Term MCQs Mega Files | Virtual Study Solutions

Adsetra Ads

 

ENG201 Solved Final Term MCQs Mega Files

Here we have Collection of ENG201 All latest final term papers and subjective question solved MEGA File. You can download Collection of Solved Final term papers from the links below:

ENG201 Final Term Paper Sample Questions:

ENG201 Final Term Question 1:- 

Identify each of the following as system software and application software.  (mark 5)
LINUX, DISK CLEANUP, WORD PROCESSOR, WINDOWS, STUDENT INFORMATION 
Answer:-
System software: - Linux, Disk cleanup, windows.
Application software:- Word Processor, Student information

Also Read: CS201 Latest Solved MCQs For Final Term Papers

ENG201 Final Term Question 2:- 

Write a program which defines three variables of type double which store three different values 
including decimal points, using set precision manipulators to print all these values with different 
numbers of digits after the decimal number.(5) 
Answer:-
#include
#include
int main ()
{
double x1 = 12345624.72345
double x2 = 987654.12345
double x3 = 1985.23456
cout << setprecision (3) << x1<< endl;
cout << setprecision (4) << x2 << endl;
cout << setprecision (5) << x3<< endl;
return 0;
}

Also Read: ENG101 Final Term Past Papers Collection

ENG201 Final Term Question 3:- 

Define static variable also explain life time of static variable? (3) 
Answer:
Static variable means maintaining the state of a variable. It exists and lives around even when we are
outside the function. It is created and initialized only once during the lifetime of the program and therefore
it will be destroyed or taken out of memory only once during the lifetime of the program.

Also Read: Mega File Final Term Papers of CS101-PAK301ISL201

ENG201 Final Term Question 4:- 

What do you know about run time error? (3) 
Answer:
Run-Time Errors
• Occur when the program is running and tries to do something that is against the rules
Example: Accessing a non-existent variable, property, method, object, etc (e.g. a method
name is misspelled)
• Sources of these can be determined by a careful reading of the code, but
unfortunately, not always.

Also Read: CS201 Most Important Questions for VIVA

ENG201 Final Term Question 5: 

What is limitation of the friendship between classes? (3) 
Answer:
Friendship relation between classes is a one way relation that is if one class declare friend another class then
the another class is the friend of first class but not the first class if the friend of another class.

ENG201 Final Term Question 6:  

what is the source and destination of cin?(2) 
Answer:
For cin, the source is normally keyboard and the destination can be an ordinary variable i.e. native-data type
variable

ENG201 Final Term Question 7:  

Write the general syntax of allocation memory dynamically to an array using new operator? (2) 
Answer: Page 332
Following is the syntax: 
new data_type [number_of_locations];

ENG201 Final Term Question 8:  

What is diffrent between pointer and variable? 
Answer:-
normal variable contains tha value of variable either int or float whereas pointer variable contains the
address of another variable

ENG201 Final Term Question 9:  

What is difference between Unary and binary operators and how they can be overloaded? 
Answer:-
Unary operator takes one argument.
a ++ is an example of unary operator
Binary take two operators
+,-,* are example of binary operators
Overloaded binary operator may return any type
Here is general syntax of overloading
Return-type operator symbol (parameters);
Operator is keyword

ENG201 Final Term Question 10: 
 
How many types of templates? 
Answer:-
There are two different types of templates in C++ language i.e.’ function templates and class templates.

Also Read: MTH101 Final Papers All in one Mega File

You Can Also Download 
ENG201 
Solved Final Term Papers, ENG201 Short Notes, ENG201 Assignment Solutions, ENG201 Lecture Wise Questions Answers Files, ENG201 Solved MCQs, ENG201 Solved Quiz , ENG201 Solved Final Term Subjective Papers , ENG201 Solved Final Term Objective Papers from Virtual Study Solutions For Preparation of Final Term Papers.

Post a Comment

  1. Here your Sample Questions is Incoreect You can write CS201 Sample Paper

    ReplyDelete
  2. is this eng 201 paper ? i think its a computer paper

    ReplyDelete

 

Top