Posts

Showing posts from 2018

IGNOU Hall ticket

IGNOU has released hall ticket for Dec-2018 TEE. Click below to download your hall Ticket!!! Hall Ticket Click Below to download TEE schedule!! Exam Schedule

MCS-024 Object Oriented Technologies and Java Programming Solved assignment 2018-19

Question 1:  (a) What is Object Oriented Programming? Explain advantages of Object Oriented Programming with the help of an example.            (5 Marks)                  (b) Explain features of java programming language.          (2 Marks) (c) Write a program to explain use of Relational and Boolean operators in java.   (3 Marks) Question 2:  (a) Explain use of super and final keywords in java with the help of examples.(4 Marks)  (b) Explain followings in context of  java, with the help of examples.            (6 Marks)     i. Class and Objects      ii. Message Passing      iii. Garbage collection Question 3:  (a) What is static method? Explain why main method in java is always static. (2 Marks)  (b) What is inheritance? How inheritance is implemented in java? Create a class Book and define display method to display book information. Inherit Reference_Book and Magazine classes from Book class and override display method of Book class in Reference_Book and Magazine classes. M

MCSL-017 C and Assembly Language Programming Solved Assignment 2018-19

Section 1: C Programming Lab  Question 1:- Write an interactive program in C language to create an application program for a cooperative bank to maintain the customers’ database. This application should have menu options like below: • Creating a New Record  • Reading/Listing of Records • Modify the record • Delete the record Each customer record should have Customer Name, Account Number, Account Type, Telephone/Mobile, Address, Nominee Name, Account Balance, Date of Joining, etc. The application should be designed user-friendly.        (20 Marks)  Section 2: Assembly Language Programming Lab  Question 1:-  a) Write a program in assembly language to read the current time and Date from the system and display it in the standard format on the screen.    (5 Marks) b) Write a program in assembly language to multiply two 16-bit numbers and to store the result in the specified location.      (5 Marks) c) Write a program in assembly language to add two numbers and to store the resu

MCS-014 Systems Analysis and Design Solved Assignment 2018-19

Question 1 Develop SRS for Study Center Management System for an Open University.SRS should be as per IEEE standard SRS template. Make necessary assumptions.                                           (30 Marks) Question 2 Draw the DFDs upto 3rd level for Study Center Management System for an Open University.                                                                                                 (30 Marks) Question 3 Draw ERD for Study Center Management System for an Open University. Make necessary assumptions.                                                                       (20 Marks)                                            ðŸ‘‡ Click below to Download Solved Assignment 👇  

MCS-023 Introduction to Database Management Systems Solved Assignment 2018-19

Question 1: List and describe briefly all the possible applications of a database management system for a University.          (15 Marks)  Question 2:  Identify all the associated entities for a University Management System, their corresponding attributes, relationships and cardinality and design an EntityRelationship (ER) diagram for it.           (20 Marks)                       Question 3:  Consider the E-R diagram of Question 2 and design the relational schema and the tables. Perform and show the Normalization till the required normal form. Implement the database using MS-Access and submit the screenshots along with your assignment response for this question.  (20 Marks)                       Question 4:  Consider the following relations:  Supplier(S#,sname,status,city) Parts(P#,pname,color,weight,city) SP(S#,P#,quantity)  Answer the following simple queries in SQL.                                                          (15X1=15 Marks)  a) Find name of supplier for cit

MCSL-025 Lab Course Solved Assignment 2018-19

PART-1: MCS-021  Question 1:  Write a program in C language for multiplication of two matrices using Pointers    (5 marks) Question 2: Write a program in C language that will accept a Graph as input and will perform a Depth First Search on it. Make necessary assumptions.       (5 marks) PART-2: MCS-022  Question 1:  Write a shell script in Linux/Unix that accepts a text file as input and prints the number of words in the file which do not have a vowel.     (5 marks) Question 2: Your PC is on a network. Make necessary settings in your PC so that one of the folders in any drive is always shared with Public        (5 marks) PART-3: MCS-023  Question 1: Create a database consisting of Name of University, Number of affiliated Colleges, Total number of Programmes offered, Total number of students enrolled. After creating the database, perform the following tasks:    (10 marks) (i) List the names of those Universities  which are having total number of more than 100 affiliat

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, s

MCS-022 Operating System Concepts and Networking Management Solved Assignment 2018-19

MCS-022 Solved Assignment Question 1:  (a) Write the purpose of VPN and name the VPN technologies supported by Windows  2000.           (5 Marks) (b) List the main contents of Password files and where are they located in Windows?  Also, explain the concept of Shadow passwords?     (5 Marks) Question 2:  (a) Compare the role and responsibilities of user mode and kernel mode of Windows  2000 system.           (5 Marks) (b) List the important components of domain name server. Also, explain how the domain name server is configured in LINUX operating system.    (5 Marks) Question 3:  Discuss the Users' Administration in WINDOWS 2000. What are the different types of user groups supported by Windows 2000? Discuss the scope and limitations of each group. Also, list the tools available in Windows2000 for user management.           (10 Marks) Question 4:  (a) Discuss the tasks performed by LinuxConf package.     (5 Marks) (b) Explain the advantages and disadvantages o

Stacks Data Structure

Stacks & Algorithm Stack is a linear data structure which follows a particular order in which the operations are performed. The order may be LIFO(Last In First Out) or FILO(First In Last Out). Mainly the following three basic operations are performed in the stack: Push:  Adds an item in the stack. If the stack is full, then it is said to be an Overflow condition. Pop:   Removes an item from the stack. The items are popped in the reversed order in which they are pushed. If the stack is empty, then it is said to be an Underflow condition. Peek or Top:   Returns top element of stack. isEmpty:  Returns true if stack is empty, else false. Click below to download!!  ðŸ‘‡

MCS-022 Solved Assignment

Click below to download Mcs-022 assignment.....Rest of Questions will bw uploaded shortly!! Question 1:  (a) Write the purpose of VPN and name the VPN technologies supported by Windows  2000.           (5 Marks)    (b) List the main contents of Password files and where are they located in Windows?  Also, explain the concept of Shadow passwords?     (5 Marks)    Question 2:  (a) Compare the role and responsibilities of user mode and kernel mode of Windows  2000 system.           (5 Marks)    (b) List the important components of domain name server. Also, explain how the domain name server is configured in LINUX operating system.    (5 Marks)    Question 3:  Discuss the Users' Administration in WINDOWS 2000. What are the different types of user groups supported by Windows 2000? Discuss the scope and limitations of each group. Also, list the tools available in Windows2000 for user management.           (10 Marks) Question 4:  (a) Discuss the tasks performed by Li

Re-Registration

IGNOU Re-registration window is live now, re-registration process for January-2019 has started.   Click Here to Know More

MCS-024 Object Oriented Technologies and Java Programming solved assignment

 Click on below Link to Download Q1, Rest of Question will be updated Soon....                                                           Click here to download

MCS-022 Operating System Concepts and Networking Management Solved assignment

     Click on below Link to Download Q1 and Q2. Rest of Question will be updated Soon....                                       Click Below to Download

MCS-021 Data and File Structures Solved Assignment 2018-19

MCS-021 Solved Assignment 2018-19 Question 1 :     Write an algorithm that accepts a Binary Tree as input and prints its height to standard output    Question 2 :     Write an algorithm for the implementation of a B tree.    Question 3 :  Write a note of not more than 5 pages summarizing the latest research in the area of “Searching Techniques”.  Refer to various journals and other online resources. Indicate them in your assignment.    Question 4 :   Write an algorithm for the implementation of a Circularly Doubly Linked List.                                                                Click Here to Download  ðŸ‘‡

Result

Click on link to check your MCA/BCA June-2018 Result and Grade Card: 1. Result-  Click here to check 2. Grade Card-   Click here to check

Discreate Mathmatics Book PDF

Click below to download.....

MCA 2nd Semester Assignment

Click on Below link to download... MCA 2