Search This Blog
share your college papers with this site by sending email to me : oliswell@gmail.com.. (tips:send photo of paper or scan paper ) COLLEGEs NAME |
---|
Shri Chimanbhai Patel Post Graduate Institute Of Computer Application - Mid semester Examination ,AHMEDABAD |
GLS INSTITUTE OF TECHNOLOGY, AHMEDABAD. |
ANAND INSTITUTE OF INFORMATION SCIENCE - ANAND |
S. V. INSTITUTE OF COMPUTER STUDIES - KADI |
SHREE SWAMINARAYAN INSTITUTE OF TECHNOLOGY - GANDHINAGAR |
KALOL INSTITUTE OF MANAGEMENT |
GUJARAT TECHNOLOGICAL UNIVERSITY | |
Code | |
610001 | Fundamentals of Programming (FOP) |
610002 | Programming Skills – I (FOP) |
610003 | Discrete Mathematics for Computer Science |
610004 | Fundamentals of Computer Organization |
610005 | Database Management Systems – I |
610006 | Software Lab (SQL & PL/SQL) |
610007 | Enterprise Resources & Financial Management |
Cool exam papers collection... |
Er-Diagram
erdiagram_final
ERP by Alexis Leon
Account complete theory material.
Shared By : Kinjal Dave (KSMCS-kapadavanj)
erdiagram_final
Shared By : Kinjal Dave (KSMCS-kapadavanj)
ERP by Alexis Leon
Shared By : Kinjal Dave (KSMCS-kapadavanj)
Account complete theory material.
Shared By : Kinjal Dave (KSMCS-kapadavanj)
FACO circuit hand book.
binary arithmatic
ch-4 & 5 in FCO
Number System in FCO
Chapter 6 Digital Arithmetic
Shared By : Kinjal Dave (KSMCS-kapadavanj)
binary arithmatic
Shared By : Kinjal Dave (KSMCS-kapadavanj)
ch-4 & 5 in FCO
Shared By : Kinjal Dave (KSMCS-kapadavanj)
Number System in FCO
Shared By : Kinjal Dave (KSMCS-kapadavanj)
Chapter 6 Digital Arithmetic
Shared By : Kinjal Dave (KSMCS-kapadavanj)
sql - plsql.pdf
Shared By:Prashant Patel
dbms-I.zip Shared By:Prashant Patel
Full PL_SQL By Keval.rar Shared By:Prashant Patel
unit 1 DBMS
Shared By : Prashant Patel
ch1 from korth 5th edition Shared By : Prashant Patel
ch6 from korth 5th edition Shared By : Prashant Patel
chapter1 DBMS nice 1 Shared By : Prashant
Oracle.pdf Shared By : Prashant
Discrete_Mathematics.pdf
Full DM by keval.ppt
Shared By : Vyas Hiren
Full DM by keval.ppt
Shared By : Nagaria Keval (JVIMS MCA Jamnagar )
complete set of c.pdf
Full 'C' By Keval.ppt
Ch1 in C
Pointers in C
Ch 2 in C
Shared By:Vyas Hiren
Full 'C' By Keval.ppt
Shared By:Keval Nagaria(JVIMS MCA Jamnagar)
Ch1 in C
Shared By : Kinjal Dave (KSMCS-kapadavanj)
functions in C
Shared By : Kinjal Dave (KSMCS-kapadavanj)
Pointers in C
Shared By : Kinjal Dave (KSMCS-kapadavanj)
Ch 2 in C
Shared By : Kinjal Dave (KSMCS-kapadavanj)
Programming Skills-I (FOP)-2
MCA-1
GTU
___________________________________________
Program Implementation using C languageMCA-1
GTU
___________________________________________
Programs based on following topic should be carried out during practical hours.
Basic C Programs
Programs based on constants, variable and diff data types.
Programs based on Operator and Expression
Programs based on Decision Making and Branching
Use of Do While loop ,For loop, while loop, if loop, if else if ladder, switch, go to
Programs based on One dimensional and two dimensional array
Programs based on character array and String manipulation functions.
Programs based on user-defined functions, Recursion
Programs based on Structures and pointers
Programs based on file management in C.
Programs based on Dynamic memory allocation and linked list
Following list is just a sample guide line:
1. Write a program to print “Hello World” message.
2. Write a program to print Name , Address and Birth Date.
3. Write a program to add, multiply and divide two integers and float numbers.
4. Write a program to convert Rupees(float) to paisa(int).
5. Write a program to accept number of days and print year, month and remaining
days.
6. Write a program to check whether the entered number is prime or not.
7. Write a program to check whether the entered number is even or odd.
8. Using While loop print 1 2 3 4 5 …..10.
9. Print series 2, 4, 6, 8,…….n.
10. Print series 2, 4, 16,……n*n using shorthand operator and while loop
11. Write a program to generate fibonnacci series.
12. Write a program to print the multiplication table.
13. Write a program to find a factorial of the entered number.
14. Write a program to print all the numbers and sum of all the integers that are
greater than 100 and less than 200 and are divisible by 7.
15. Write a program to find the roots of an equation ax2 + bx + c = 0.
16. Write a program that accept basic, HRA, and convergence from the user and
calculate total salary.
17. Print the following triangle.
a b c d e
a b c d
a b c
a b
a
18. Write a program that prints the following Floyd’s triangle.
1
2 3
4 5 6
7 8 9 10
11 ……….15
.
.
79……………………….91
19. Write a program to find maximum element from 1-Dimensional array.
20. Write a program to sort given array in ascending order.
21. Given the two 1-D arrays A and B, which are sorted in ascending order. Write a program to merge them into a single sorted array C that contains every item from arrays A and B, in ascending order.
22. Write a program to add two matrices.
23. Write a program to find string length.
24. Write a program to print size of int, float, double variable.
25. Write a program that will read a text and count all occurrences of a particular word.
26. Write a program that will read a string and rewrite it in the alphabetical order. i.e. the word STRING should be written as GINRST.
27. Write a program that appends the one string to another string.
28. Write a program that finds a given word in a string.
29. Use recursive calls to evaluate
f(x) = x – x3/3! + x5/5! – x7/7! + ……
30. Write a function prime that returns 1 if its argument is a prime no. and returns 0 otherwise.
31. Write a program to add first n numbers.
32. Write a function which returns 1 if the given number is palindrome otherwise returns 0.
33. Write a function that will scan a character string passed as an argument and convert all lower-case character into their upper-case equivalent.
34. Write a function to reverse the string.
35. Write a program that search an item from array of string.
36. Define a structure called cricket that will describe the following information: Player name
Team name
Batting average
Using cricket, declare an array player with 50 elements and wire a program to read the information about all the 50 players and print a team-wise list containing names of player with their batting average.
37. In a program declare following structure member: name, code, age, weight and height. Read all members of the structure for 100 persons and find list of persons with all related data whose weight > 50 and height > 40 and print the same with suitable format and title.
38. Write a program using pointers to read an array of integers and print its elements in reverse order.
39. Write a function to calculate the roots of the quadratic equation. The function must use two pointer parameters, one to receive the coefficients a, b, and c, and the other to send the roots to the calling function.
40. Write a function using pointers to add two matrices and to return the resultant matrix to the calling function.
41. Write a program to read data from keyboard, write it to a file named STUDENT again read the same data from STUDENT file and write it into DATA file. same data should be displayed on the screen.
42. Write a program to create linear linked list interactively and print out the list and total number of items in the list.
Fundamentals of Programming (FOP)-610001
MCA-1
GTU
structured programming using C language. Students will become familiar with problem
solving techniques and algorithm development.
Prerequisites: None
Contents:
1. Introduction to programming& Basics of C: Concepts of Algorithm and
Flowcharts, Process of compilation, Generation of languages, Basic features of C
Language like Identifier, Keywords, Variable, data types, Operators and Expression.
Basic screen and keyboard I/O
2. Control Statements: Test Conditions, Conditional execution and selection, Iteration
and Repetitive Executions, Nested loops.
3. Arrays: Introduction to contiguous data types. One dimensional arrays,
multidimensional arrays, Array as strings, multidimensional character arrays.
Operations on strings.
4. Functions: Concept of modular programming, Using functions, Scope of data,
Recursive functions. Command line arguments.
5. Pointers: Need of pointer, Types and uses of pointer, Array and Pointers, Pointers
and strings, Pointer to Pointer, Pointers and functions, other aspect of pointers.
6. User Defined Data Types: Introduction to structures, usage of structure, nested
structures, Union and its usage, Enumeration types, bit fields.
7. Files: Types of files, working with files, usage of file management functions.
8. Linked List: Introduction to dynamic memory allocation, singly link list, operations
on singly link list.
9. Other features of C: Bitwise operators and its usage, C Preprocessor statements.
Main Reference Book(s):
1. Programming in C, by Pradip Dey & Manas Ghosh, Publisher – Oxford
Suggested Additional Reading :
1. Programming in ANSI C, by Balagurusamy, Publisher - Tata McGraw Hill.
2. Computer Science: A Structured Programming Approach Using C, by
Behrouz A. Forouzan & Richard F. Gilberg, Publisher – Thomson Education.
3. Programming with ANSI and Turbo C, by Ashok N Kamthane, Publisher –
Pearson Education.
4. Mastering C, by Venugopal & Prasad, Publisher – Tata McGraw Hill.
5. C: The Complete Reference, by Herbert Schildt, Publisher – Tata McGraw Hill.
6. Let us C, by Yashwant Kanitkar, Publisher – BPB Publication
7. Schaum's Outline of Programming with C, By: Byron Gottfried, Publisher
Shaum Series.
Chapter wise coverage from main reference Book(s) :
Chapter 1 to 11 except 10.4-10.6, 11.5-11.7
Accomplishments of the student after completing the course :
After completion of the course students should become reasonably good at problem
solving and algorithm development. They would become capable of solving problems
using computers through C programming language.
MCA-1
GTU
___________________________________________
Objectives: The aim of this course is to introduce to the students the rudiments ofstructured programming using C language. Students will become familiar with problem
solving techniques and algorithm development.
Prerequisites: None
Contents:
1. Introduction to programming& Basics of C: Concepts of Algorithm and
Flowcharts, Process of compilation, Generation of languages, Basic features of C
Language like Identifier, Keywords, Variable, data types, Operators and Expression.
Basic screen and keyboard I/O
2. Control Statements: Test Conditions, Conditional execution and selection, Iteration
and Repetitive Executions, Nested loops.
3. Arrays: Introduction to contiguous data types. One dimensional arrays,
multidimensional arrays, Array as strings, multidimensional character arrays.
Operations on strings.
4. Functions: Concept of modular programming, Using functions, Scope of data,
Recursive functions. Command line arguments.
5. Pointers: Need of pointer, Types and uses of pointer, Array and Pointers, Pointers
and strings, Pointer to Pointer, Pointers and functions, other aspect of pointers.
6. User Defined Data Types: Introduction to structures, usage of structure, nested
structures, Union and its usage, Enumeration types, bit fields.
7. Files: Types of files, working with files, usage of file management functions.
8. Linked List: Introduction to dynamic memory allocation, singly link list, operations
on singly link list.
9. Other features of C: Bitwise operators and its usage, C Preprocessor statements.
Main Reference Book(s):
1. Programming in C, by Pradip Dey & Manas Ghosh, Publisher – Oxford
Suggested Additional Reading :
1. Programming in ANSI C, by Balagurusamy, Publisher - Tata McGraw Hill.
2. Computer Science: A Structured Programming Approach Using C, by
Behrouz A. Forouzan & Richard F. Gilberg, Publisher – Thomson Education.
3. Programming with ANSI and Turbo C, by Ashok N Kamthane, Publisher –
Pearson Education.
4. Mastering C, by Venugopal & Prasad, Publisher – Tata McGraw Hill.
5. C: The Complete Reference, by Herbert Schildt, Publisher – Tata McGraw Hill.
6. Let us C, by Yashwant Kanitkar, Publisher – BPB Publication
7. Schaum's Outline of Programming with C, By: Byron Gottfried, Publisher
Shaum Series.
Chapter wise coverage from main reference Book(s) :
Chapter 1 to 11 except 10.4-10.6, 11.5-11.7
Accomplishments of the student after completing the course :
After completion of the course students should become reasonably good at problem
solving and algorithm development. They would become capable of solving problems
using computers through C programming language.
Subscribe to:
Posts (Atom)