MCS-011 Problem Solving and Programming Solved Assignment 2018-19

Question1: Write an algorithm, draw a flow chart and write its corresponding C program to convert a decimal number to its equivalent hexadecimal number. (10 Marks)
Question2: Write an algorithm and its corresponding C program to generate students’ Progress-Report for VIII standard (section of 20 students) of a CBSE school for all its 4 terms. Use Structures concept. Assumptions can be made wherever necessary. (10 Marks)
Question 3: Write a C program to generate the following pattern: (10 Marks)
 1
 1 2
 1 2 3
 1 2 3 4
 1 2 3 4 5
Question 4: Write a program to generate Fibonacci series using Recursion. (10 Marks)
Question 5: Write a C program to perform the following operation on matrices D = A + (B * C), where A, B and C are matrices of (3 X 3) size and D is the resultant matrix. (10 Marks)
Question 6: Write an interactive C program to calculate the string length of a given string, using pointers. (10 Marks)
Question 7: Write a C program to take a list of N numbers, separate even and odd numbers and put them in two appropriate files (evenfile and oddfile). Use File Handling concept. (10 Marks)
Question 8: Write an interactive C program for each to illustrate the following concepts: (10 Marks) (a)Enumerated data type
(b) Macros in C
(c) typedef
(d) Goto statement
(e) Break statement

👇Click Below to download👇

Comments

Post a Comment

Popular posts from this blog

Array

Asymptotic notations