Monthly Archives: July 2014

Create a Website for a School in HTML and VBScript – IGNOU MCA Assignment 2014-15

MASTER OF COMPUTER APPLICATIONS Course Code : MCSL-016 Course Title : Internet Concepts and Web Design (Lab Course) Assignment Number : MCA(1)/L016/Assign/2014-15 Maximum Marks : 100 Weightage : 25%   Create a web site for a School consisting of the following pages: a)The Home page should consists of four areas containing the following information: Header… Read More »

Write and Implement multiple stacks in a single dimensional array – IGNOU MCA Assignment 2014-15

MASTER OF COMPUTER APPLICATIONS Course Code : MCS-021 Course Title : Data and File Structures Assignment Number : MCA(2)/021/Assign/2014-15 Maximum Marks : 100 Weightage : 25%   Implement multiple stacks in a single dimensional array. Write algorithms for various stack operations for them.   #include <stdio.h> #define max 10 int top1, top2, stk_arr[max]; void push();… Read More »

A C program and algorithm to implement Circular Doubly Linked List – IGNOU MCA Assignment 2014 – 15

MASTER OF COMPUTER APPLICATIONS Course Code : MCS-021 Course Title : Data and File Structures Assignment Number : MCA(2)/021/Assign/2014-15 Maximum Marks : 100 Weightage : 25%   Write an algorithm for the implementation of Circular Doubly Linked Lists.   #include<stdio.h> struct node { int data; struct node *next; struct node *prev; }; typedef struct node… Read More »

A C program and algorithm to implement stack in a single dimensional array – IGNOU MCA Assignment 2014 – 15

MASTER OF COMPUTER APPLICATIONS Course Code : MCS-021 Course Title : Problem Solving and Programming Assignment Number : MCA(1)/021/Assign/13 Assignment 2013   Implement stack in a single dimensional array. Write algorithms for various stack operations for them.   #include <stdio.h> #define MAX 10 /* The maximum size of the stack */ void push(int [],int *,int);… Read More »

A C program and algorithm to implement Circular Linked Lists – IGNOU MCA Assignment 2014 – 15

MASTER OF COMPUTER APPLICATIONS Course Code : MCS-021 Course Title : Problem Solving and Programming Assignment Number : MCA(1)/021/Assign/13 Assignment 2013   Write an algorithm for the implementation of Circular Linked Lists.   #include<stdio.h> struct node { int data; struct node *next; }; typedef struct node node; //with this Use “node” instead of “struct node”… Read More »

Draw ERD for Online Examination System – IGNOU MCA Assignment 2014 – 15

 MASTER OF COMPUTER APPLICATIONS Course Code : MCS-014 Course Title : Systems Analysis and Design Assignment Number : MCA(1)/014/Assign/13 Assignment 2013 ER Diagram Notations for the components of ERD: Entities: An entity is something about which the business needs to store data. An entity is a class of persons, places, objects, events or concepts about… Read More »

Draw DFD (Data Flow Diagram) to 2nd level for Online Examination System – IGNOU MCA Assignment 2014-15

 MASTER OF COMPUTER APPLICATIONS Course Code : MCS-014 Course Title : Systems Analysis and Design Assignment Number : MCA(1)/014/Assign/13 Assignment 2013   Data Flow Diagrams A DFD can be categorized in the following forms: Context diagram: An overview of an organizational system that shows the system boundaries, external entities that interact with the system and… Read More »

Develop SRS for Online Examination System. SRS as per IEEE standard – IGNOU MCA Assignment 2014-15

 MASTER OF COMPUTER APPLICATIONS Course Code : MCS-014 Course Title : Systems Analysis and Design Assignment Number : MCA(1)/014/Assign/13 Assignment 2013   Develop SRS for Online Examination System. SRS should be as per IEEE standard SRS template. Make necessary assumptions.   Software Requirement Specification (SRS) for Online Examination 1. Introduction: The following subsections of the… Read More »

A C program to prompt user with option on menu at Post Office – IGNOU MCA Assignment 2014 – 15

BACHELOR OF COMPUTER APPLICATIONS Course Code : BCSL-021 Course Title : C Language Programming Assignment Number : BCA(II)/L-021/Assign/14-15 Maximum Marks : 50 Weightage : 25%   Write an interactive C program which prompts the user with the following options on the opening menu at any Post Office: 1) Information about the Post Office 2) Details… Read More »

An Assembly language program convert 2 digit ASCII to binary – IGNOU MCA Assignment 2014 – 15

BACHELOR OF COMPUTER APPLICATIONS Course Code : BCSL-022 Course Title : Assembly Language Programming Lab Assignment Number : BCA(II)/BCSL022/Assign/14-15 Maximum Marks : 50 Weightage : 25%   Write and run an assembly language program that accepts a two digit input from the keyboard, and convert this two digit ASCII to equivalent binary value. The output… Read More »