Tag Archives: IGNOU MCA Assignment 2015 – 16

Write a program in C language that will accept a Graph as input and will generate its Minimum Cost Spanning Tree – IGNOU MCA Assignment 2015 – 16

MASTER OF COMPUTER APPLICATIONS Course Code : MCSL-025 Course Title : Lab Course Assignment Number : MCA(II)/L-025/Assignment/15-16 Maximum Marks : 50 Weightage : 25%   Write a program in C language that will accept a Graph as input and will generate its Minimum Cost Spanning Tree. #include <stdio.h> #define MAXVERTICES 10 #define MAXEDGES 20 typedef… Read More »

Write a program in C language for addition of two numbers which have at least 20 digits each – IGNOU MCA Assignment 2015 – 16

MASTER OF COMPUTER APPLICATIONS Course Code : MCSL-025 Course Title : Lab Course Assignment Number : MCA(II)/L-025/Assignment/15-16 Maximum Marks : 50 Weightage : 25% Write a program in C language for addition of two numbers which have at least 20 digits each.   #include<stdio.h> void main() { int I,J,NUM1[20],NUM2[20],RES[21]={0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0}; char N1[21],N2[21];/*getchar is excepts NewLIne charter… Read More »

Write an algorithm for the implementation of a multiple queues in a single dimensional array – IGNOU MCA Assignment 2015 – 16

MASTER OF COMPUTER APPLICATIONS Course Code : MCS-021 Course Title : Data and File Structures Assignment Number : MCA(II)/021/Assignment/15-16 Maximum Marks : 100 Weightage : 25% Implement multiple queues in a single dimensional array. Write algorithms for various queue operations for them .   #include <stdio.h> #define MAX 20 void insert_que1(int *,int *,int *,int); void insert_que2(int… Read More »

Write an algorithm for the implementation of a Dequeue – IGNOU MCA Assignment 2015 – 16

MASTER OF COMPUTER APPLICATIONS Course Code : MCS-021 Course Title : Data and File Structures Assignment Number : MCA(II)/021/Assignment/15-16 Maximum Marks : 100 Weightage : 25% Write an algorithm for the implementation of a Dequeue .   #include <stdio.h> #define max 10 int top1, top2, stk_arr[max]; void push(); void pop(); void display(); void main() { int… Read More »

Answer the following queries in SQL – IGNOU MCA Assignment 2015 – 16

MASTER OF COMPUTER APPLICATIONS Course Code : MCS-023 Course Title : Introduction to Database Management Systems Assignment Number : MCA(II)/023/Assignment/15-16 Maximum Marks : 100 Weightage : 25%   Consider the following EMP table: ENAME DEPT-NAME DESIGNATION SALARY DATE-OF-JOIN KARAN ACCOUNTING DIRECTOR 50000 Nov 17, 2012 FARAH RESEARCH ANALYST 30000 Dec 03, 1991 SCINDIA RESEARCH ANALYST… Read More »

Construct an ER diagram for an Event Management System. Clearly indicate the entities, relationships, cardinality and the key constraints – IGNOU MCA Assignment 2015 – 16

MASTER OF COMPUTER APPLICATIONS Course Code : MCS-023 Course Title : Introduction to Database Management Systems Assignment Number : MCA(II)/023/Assignment/15-16 Maximum Marks : 100 Weightage : 25%   1. Construct an ER diagram for an Event Management System. Clearly indicate the entities, relationships, cardinality and the key constraints. Also, derive the unnormalized relational database tables… Read More »

Draw the DFDs upto 3rd level for Online Admission System for a University.- IGNOU MCA Assignment 2015 – 16

MASTER OF COMPUTER APPLICATIONS Course Code: MCS-014 Course Title: Systems Analysis and Design Assignment Number: MCA (I)/014/Assignment/15-16 Maximum Marks: 100 Weightage: 25%    Draw the DFDs upto 3rd level for Online Admission System for a University.   Data Flow Diagrams A DFD can be categorized in the following forms: Context diagram: An overview of an organizational system that… Read More »

Draw ERD for Online Admission System for a University. Make necessary assumptions – IGNOU MCA Assignment 2015 – 16

MASTER OF COMPUTER APPLICATIONS Course Code: MCS-014 Course Title: Systems Analysis and Design Assignment Number: MCA (I)/014/Assignment/15-16 Maximum Marks: 100 Weightage: 25%    Draw ERD for Online Admission System for a University. Make necessary assumptions.   ER Diagram Notations for the components of ERD: Entities: An entity is something about which the business needs to store… Read More »

Develop SRS for Online Admission System for a University. SRS should be as per IEEE standard SRS template – IGNOU MCA Assignment 2015 – 16

MASTER OF COMPUTER APPLICATIONS   Course Code: MCS-014 Course Title: Systems Analysis and Design Assignment Number: MCA (I)/014/Assignment/15-16 Maximum Marks: 100 Weightage: 25%   Develop SRS for Online Admission System for a University. SRS should be as per IEEE standard SRS template. Make necessary assumptions.   Software Requirement Specification (SRS) for Online Examination   1.… Read More »

Create a Website for a City in HTML and VBScript – IGNOU MCA Assignment 2015 – 16

MASTER OF COMPUTER APPLICATIONS Course Code : MCSL-016 Course Title : Internet Concepts and Web Design (Lab Course) Assignment Number : MCA(I)/L-016/Assignment/15-16 Maximum Marks : 50 Weightage : 25% Create a website that provides information about historical tourist places around your city. Your site should include the following pages. a. The Home page should consist… Read More »