P2Pprogrammer 2 programmer

Home > Download > SMU - Question Paper > MCA > MC0061

Computer Programming ―C Language


This is the collection of Sikkim Manipal University (SMU) question and answers for Computer Programming ―C Language. It will help to prepare your examination. All question paper are classified as per semester, subject code and question type of Part A, Part B and Part C with multiple choice options as same as actual examination. SMU question papers includes year 2025, 2024, 2023 Sem I, II, III, IV, V, VI examinations of all subjects.

SMU question test set of old, last and previous year are updated regularly and it is absolutely free to use. Question paper includes Visual basic 6, VB.Net, C#, ASP.Net, Web, Oracle, Database, SQL, Software Engineering, C, C++, OOPS, MBA, MCA, BSC IT I have requested you kindly send me the question paper of Computer Programming ―C Language, SMU - Master of Computer Application.

Course Name        MCA (Master of Computer Application)

Subject Code       MC0061 (Computer Programming ―C Language)

Get Questions        PART - A    PART - B    PART - C

Subject : Computer Programming ―C Language

     MC0061 : PART - C    


Q. 1What would be output by the following segment of C++?
int fact I;
fact = 1
i = 2
while(i < =6)
fact *= i;
i++;
cout << fact;
 A)2, 6, 24, 120, 720
 B)1, 2, 6, 24, 120
 C)2, 2, 6, 24, 120
 D)1, 1, 1, 6, 24
   
Q. 2Select correct Syntaxes
1. for (initialization; test condition; modifier expression;)
2. for (initialization1, initialization2; test
conditon1, test condition2; modifier1,
modifier2)
{ body of the loop};
3. while (test condition)
{ body of the loop}
4. do
{ body of the loop} while (condition);
 A)1
 B)1 and 2
 C)2, 3
 D)All the above
   
Q. 3Write the output of the following code, as it would appear on the monitor screen.
Const int b = 0;
int DashRiprock(int h, int &i int &j);
int main()
{
int a=10, b=20, c= 30, d=40;
a = DashRiprock(c, d, b);
cout << a<< “<< b<<” < return 0;
}
int DashRiprock(inth, int &i, int&j)
{
h = h/2
i = h;
j = j/4;
return b:
}
 A)5, 10, 20, 30
 B)0, 5, 15, 30
 C)0, 5, 30, 15
 D)30, 15, 5, 0
   
Q. 4Here is a function prototype and some possible function calls:
int day_of_week(int year; int month =1; int
day = 1);
// Possible function calls;
1. cout << day_of __week()
2. cout << day_of __week(1995)
3. cout << day_of __week(1995, 10)
4. cout << day_of __week(1995, 10, 4)
How many of the function calls are legal?
 A)1 and 2 of them is legal
 B)2 and 3 of them are legal
 C)1, 2 and 3 of them are legal
 D)All of them are legal
   
Q. 5If a is 5, b is 10, c is 15, and d is 0 what are the truth values of the following expressions?
1. C= =a+b
2. a != 7
3. b< =a
4. a> 5
5. a+d >= c-b
6. d/a < c*b
 A)1, 2 and 4 result in truth values
 B)1, 2 and 5 result in truth values
 C)2, 3, 4 and 6 result in truth values
 D)1, 3, 5 and 6 result in truth values
   
Click here to get Computer Programming ―C Language (MC0061) New Question


Home > Download > SMU - Question Paper > MCA > MC0061