MLRInstitute of Technology
Laxma Reddy Avenue, Dundigal, Quthbullapur (M), Hyderabad – 500 043
Phone Nos: 08418 – 204066 / 204088, Fax : 08418 – 204088
ASSIGNMENT QUESTIONS
Subject: COMPUTER PROGRAMMING
UNIT-IS.NO / QUESTION / BLOOMS
TAXONOMY
LEVEL / PROGRAM
OUTCOME
Explain the concept of keywords in C which helps
to retain the highest accuracy of data?
[ / Analysis [level-4] / 2
CompareRelational operators with Logical operators with an example program to find whether entered year is leap year or not?
[ / Analysis [level-4] / 2
Write a C program to perform all arithmetic operations. / Create[level-6] / 6
MLRInstitute of Technology
Laxma Reddy Avenue, Dundigal, Quthbullapur (M), Hyderabad – 500 043
Phone Nos: 08418 – 204066 / 204088, Fax : 08418 – 204088
ASSIGNMENT QUESTIONS
Subject: COMPUTER PROGRAMMING
UNIT-IIS.NO / QUESTION / BLOOMS
TAXONOMY
LEVEL / PROGRAM
OUTCOME
Differentiate between while loop and do while loops
[ / Analysis [level-4] / 4
Evaluate the output if you will compile and execute the following c code?
#include<stdio.h>
struct marks{
int p:3;
int c:3;
int m:2;
};
int main(){
struct marks s={2,-6,5};
printf("%d %d %d",s.p,s.c,s.m);
return 0;
}[ / Evaluate [level-5] / 5
Write a C program to check whether given number is Armstrong or not.
[ / Create[level-6] / 6
MLRInstitute of Technology
Laxma Reddy Avenue, Dundigal, Quthbullapur (M), Hyderabad – 500 043
Phone Nos: 08418 – 204066 / 204088, Fax : 08418 – 204088
ASSIGNMENT QUESTIONS
Subject: COMPUTER PROGRAMMING
UNIT-IIIS.NO / QUESTION / BLOOMS
TAXONOMY
LEVEL / PROGRAM
OUTCOME
Differentiate between call by value and call by reference.
[ / Analysis [level-4] / 4
A function can be implemented by using call by value and call by reference. Which is more efficient. justify your answer
[ / Evaluate [level-5] / 5
Write a C program to find the LCM of the three given numbers using functions.
[ / Create[level-6] / 6
MLRInstitute of Technology
Laxma Reddy Avenue, Dundigal, Quthbullapur (M), Hyderabad – 500 043
Phone Nos: 08418 – 204066 / 204088, Fax : 08418 – 204088
ASSIGNMENT QUESTIONS
Subject: COMPUTER PROGRAMMING
UNIT-IVS.NO / QUESTION / BLOOMS
TAXONOMY
LEVEL / PROGRAM
OUTCOME
Differentiate between pointer and pointer to pointer.
[ / Analysis [level-4] / 4
evaluate whether the given string contains special characters[ stackoverflow.com/questions/.../how-to-detect-if-a-string-contains-special-characters] / Evaluate [level-5] / 5
write a c program to count the number of vowels in a given string.
[ / Create[level-6] / 6
MLRInstitute of Technology
Laxma Reddy Avenue, Dundigal, Quthbullapur (M), Hyderabad – 500 043
Phone Nos: 08418 – 204066 / 204088, Fax : 08418 – 204088
ASSIGNMENT QUESTIONS
Subject: COMPUTER PROGRAMMING
UNIT-VS.NO / QUESTION / BLOOMS
TAXONOMY
LEVEL / PROGRAM
OUTCOME
Differentiate between tagged structures and type definition structures.
[[ / Analysis [level-4] / 4
Structure members can be accessed by using dot operator and indirect selection operator. Which is more efficient. Justify your answer.
[ / Evaluate [level-5] / 5
write a c program to print the electricity bill of customer.[customer details are to taken by using structures]
[ / Create[level-6] / 6