Tag Archives: to create

CPP05 – Write a CPP program to create Student class with appropriate constructor and destructor

Write a CPP program to create Student class with appropriate constructor and destructor. Also show what happen when you try to attempt to access private data members from outside of the class. CODE : #include<iostream.h> #include<string.h> #include<conio.h> class student { int roll; char name[25]; char addr[100]; int std; char div; long cont; public: void get_data(int,char*,char*,int,char,long);… Read More »

Write a C program to create a file containing student’s records and also give a provision to update/modify the records too – IGNOU MCA Assignment 2017 – 18

MASTER OF COMPUTER APPLICATIONS Course Code: MCS-011 Course Title : Problem Solving and Programming Assignment Number : MCA(1)/011/Assign/2017-18 Maximum Marks : 100 Write a C program to create a file containing student’s records and also give a provision to update/modify the records too – IGNOU MCA Assignment 2017 – 18 Program: #include<stdio.h> #include<conio.h> #include<process.h> typedef… Read More »

Write an algorithm and draw a corresponding flowchart to create a simple multiple choice question (MCQ) examination of 25 questions for 50 marks along with evaluation process too – IGNOU MCA Assignment 2015 – 16

MASTER OF COMPUTER APPLICATIONS Course Code : MCS-011 Course Title : Problem Solving and Programming Assignment Number : MCA(I)/011/Assignment/15-16 Maximum Marks : 100 Weightage : 25%  Q1. Define a flowchart. Write an algorithm and draw a corresponding flowchart to create a simple multiple choice question (MCQ) examination of 25 questions for 50 marks along with evaluation process… Read More »