SlideShare a Scribd company logo
For Solved Question Papers of UGC-NET/GATE/SET/PGCET in Computer Science, visit http://victory4sure.weebly.com/
For Solved Question Papers of UGC-NET/GATE/SET/PGCET in Computer Science, visit http://victory4sure.weebly.com/
PROGRAMMING IN C & DATA STRUCTURES SOLVED PAPER JUNE- 2015
1
1 a. What are data types? Mention the different data types supported by C language,
giving an example to each. (5 Marks)
Ans:
1 b. Write a C program which takes as input p, t, r. Compute the simple interest and
display the result. (5 Marks)
Ans:
PROGRAMMING IN C & DATA STRUCTURES SOLVED PAPER JUNE- 2015
2
1 c. What is an operator? List and explain various types of operators. (10 Marks)
Ans:
PROGRAMMING IN C & DATA STRUCTURES SOLVED PAPER JUNE- 2015
3
PROGRAMMING IN C & DATA STRUCTURES SOLVED PAPER JUNE- 2015
4
2 a. What is a token? What are the different types of tokens available in C language?
Explain. (08 Marks)
Ans:
PROGRAMMING IN C & DATA STRUCTURES SOLVED PAPER JUNE- 2015
5
2 b. Write C expressions corresponding to the following (Assume all quantities are of
same type) (06 Marks)
Ans:
2 c. What is the value of ‘x’ in the following code segments? Justify your answers:
(06 Marks)
Ans:
PROGRAMMING IN C & DATA STRUCTURES SOLVED PAPER JUNE- 2015
6
3 a. What are the different types of conditional decision making statements? Explain
each with example. (10 Marks)
Ans:
PROGRAMMING IN C & DATA STRUCTURES SOLVED PAPER JUNE- 2015
7
PROGRAMMING IN C & DATA STRUCTURES SOLVED PAPER JUNE- 2015
8
PROGRAMMING IN C & DATA STRUCTURES SOLVED PAPER JUNE- 2015
9
3 b. Write a C program to simulate simple calculator that performs arithmetic
operations using switch statements. Error message should be displayed, if any
attempt is to made to divide by zero. (10 Marks)
Ans:
PROGRAMMING IN C & DATA STRUCTURES SOLVED PAPER JUNE- 2015
10
4 a. Explain with example formatted input output statements in C. (06 Marks)
Ans:
PROGRAMMING IN C & DATA STRUCTURES SOLVED PAPER JUNE- 2015
11
4 b. List four differences between while loop and do-while loop along with syntax
and example. (06 Marks)
Ans:
PROGRAMMING IN C & DATA STRUCTURES SOLVED PAPER JUNE- 2015
12
4 c. Design and develop a C program to reverse a given four digit integer number
and check whether it is a palindrome or not. (08 Marks)
Ans:
PROGRAMMING IN C & DATA STRUCTURES SOLVED PAPER JUNE- 2015
13
5 a. What is an array? Explain different methods of initialization of single
dimensional arrays. (06 Marks)
Ans:
PROGRAMMING IN C & DATA STRUCTURES SOLVED PAPER JUNE- 2015
14
PROGRAMMING IN C & DATA STRUCTURES SOLVED PAPER JUNE- 2015
15
5 b. Write a C program to read N integers into an array A and to
i) find the sum of odd numbers
ii) find the sum of even numbers
iii) find the average of all numbers
Output the results computed with appropriate headings. (06 Marks)
Ans:
PROGRAMMING IN C & DATA STRUCTURES SOLVED PAPER JUNE- 2015
16
5 c. How string is declared and initialized? Explain any FOUR string manipulation
functions with examples. (08 Marks)
Ans:
PROGRAMMING IN C & DATA STRUCTURES SOLVED PAPER JUNE- 2015
17
PROGRAMMING IN C & DATA STRUCTURES SOLVED PAPER JUNE- 2015
18
6 a. Explain function call, function definition and function prototype with examples
to each. (06 Marks)
Ans:
PROGRAMMING IN C & DATA STRUCTURES SOLVED PAPER JUNE- 2015
19
6 b. What are actual parameters and formal parameters? Illustrate with example.
(06 Marks)
Ans:
6 c. What is recursion? Write a C program to compute the factorial of a given number
‘n’ using recursion. (08 Marks)
Ans:
PROGRAMMING IN C & DATA STRUCTURES SOLVED PAPER JUNE- 2015
20
7 a. How structure is different from an array? Explain declaration of a structure with
an example. (06 Marks)
Ans:
PROGRAMMING IN C & DATA STRUCTURES SOLVED PAPER JUNE- 2015
21
7 b. Explain with an example, how to create a structure using ‘typedef’. (04 Marks)
Ans:
PROGRAMMING IN C & DATA STRUCTURES SOLVED PAPER JUNE- 2015
22
7 c. Write a C program to input the following details of ‘N’ students using structure:
Roll No: integer, name: string, marks: float, grade: char
Print the names of the students with marks >= 60.0%. (10 Marks)
Ans:
PROGRAMMING IN C & DATA STRUCTURES SOLVED PAPER JUNE- 2015
23
8 a. Explain following file operations along with syntax and examples:
i)fopen() ii)fclose() iii)fscanf() iv) fprintf() v)fgets(). (10 Marks)
Ans:
PROGRAMMING IN C & DATA STRUCTURES SOLVED PAPER JUNE- 2015
24
8 b. Write a C program to read the contents from the file called abc: text, count the
number of characters, number of lines and number of white spaces and output the
same. (10 Marks)
Ans:
PROGRAMMING IN C & DATA STRUCTURES SOLVED PAPER JUNE- 2015
25
8 a. Define pointer variable. Explain with an example, the declaration and
initialization of pointer variable. (06 Marks)
Ans:
PROGRAMMING IN C & DATA STRUCTURES SOLVED PAPER JUNE- 2015
26
8 b. Explain following C functions along with syntax and example to each.
i) malloc() ii) calloc() iii) realloc iv) free() (08 Marks)
Ans:
PROGRAMMING IN C & DATA STRUCTURES SOLVED PAPER JUNE- 2015
27
8 c. Develop a C program to read two numbers and function to swap these numbers
using pointers. (06 Marks)
Ans:
PROGRAMMING IN C & DATA STRUCTURES SOLVED PAPER JUNE- 2015
28
10 . Write short notes on following:
a. Preprocessor directives
b. Primitive and non primitive data types
c. Stack operations
d. Types of queues. (20 Marks)
Ans:
a)
PROGRAMMING IN C & DATA STRUCTURES SOLVED PAPER JUNE- 2015
29
Ans:
b)
Ans:
c)
PROGRAMMING IN C & DATA STRUCTURES SOLVED PAPER JUNE- 2015
30
Ans:
d)
For Solved Question Papers of UGC-NET/GATE/SET/PGCET in Computer Science, visit http://victory4sure.weebly.com/
For Solved Question Papers of UGC-NET/GATE/SET/PGCET in Computer Science, visit http://victory4sure.weebly.com/
For Solved Question Papers of UGC-NET/GATE/SET/PGCET in Computer Science, visit http://victory4sure.weebly.com/
PROGRAMMING IN C & DATA STRUCTURES SOLVED PAPER DEC- 2015
1
1 a. Explain the structure of ‘C’ program with example. (5 Marks)
Ans:
PROGRAMMING IN C & DATA STRUCTURES SOLVED PAPER DEC- 2015
2
1 b. Explain scanf() and printf() function in ‘C’ language with syntax and examples.
(5 Marks)
Ans: For answer, refer Solved Paper June-2015 Q.No.4a.
1 c. Write a ‘C’ program to find area of circle. (5 Marks)
Ans:
2 a. What is an algorithm? Write an algorithm to find largest of 3 numbers. (5 Marks)
Ans:
PROGRAMMING IN C & DATA STRUCTURES SOLVED PAPER DEC- 2015
3
2 b. Explain the following operators in ‘C’ language.
i) Relational ii) Conditional iii) Logical (5 Marks)
Ans:
PROGRAMMING IN C & DATA STRUCTURES SOLVED PAPER DEC- 2015
4
2 c. What is an identifier? Give any 5 rules that are to be followed while declaring a
variable. (4 Marks)
Ans:
PROGRAMMING IN C & DATA STRUCTURES SOLVED PAPER DEC- 2015
5
3 a. Explain the ELSE IF ladder with syntax and example. (8 Marks)
Ans:
PROGRAMMING IN C & DATA STRUCTURES SOLVED PAPER DEC- 2015
6
3 b. List the types of loops. Explain the working of any one type of loop with syntax
and example. (8 Marks)
Ans:
PROGRAMMING IN C & DATA STRUCTURES SOLVED PAPER DEC- 2015
7
3 b. Write a program to read a year as an input and find whether it is a LEAP YEAR or
not (8 Marks)
Ans:
PROGRAMMING IN C & DATA STRUCTURES SOLVED PAPER DEC- 2015
8
4 a. Explain SWITCH statement, with syntax and example. (8 Marks)
Ans:
4 b. Differentiate between WHILE and DO-WHILE loops. (6 Marks)
Ans: For answer, refer Solved Paper June-2015 Q.No.4b.
4 c. Write a program to find reverse of a number and check whether it is a
PALINDROME or not (6 Marks)
Ans: For answer, refer Solved Paper June-2015 Q.No.4c.
PROGRAMMING IN C & DATA STRUCTURES SOLVED PAPER DEC- 2015
9
5 a. What is an ARRAY? Explain the different ways of initializing an array with
examples. (7 Marks)
Ans: For answer, refer Solved Paper June-2015 Q.No.5a.
5 b. What are the advantages of using User defined functions. (6 Marks)
Ans:
PROGRAMMING IN C & DATA STRUCTURES SOLVED PAPER DEC- 2015
10
5 c. Write a program to read a sentence and print the frequencies of each VOWEL
and total count of CONSONANTS. (7 Marks)
Ans:
PROGRAMMING IN C & DATA STRUCTURES SOLVED PAPER DEC- 2015
11
6 a. Explain the different types of arrays, with syntax and examples. (7 Marks)
Ans:
PROGRAMMING IN C & DATA STRUCTURES SOLVED PAPER DEC- 2015
12
6 b. Explain any 4 string manipulating functions with examples. (8 Marks)
Ans:
PROGRAMMING IN C & DATA STRUCTURES SOLVED PAPER DEC- 2015
13
PROGRAMMING IN C & DATA STRUCTURES SOLVED PAPER DEC- 2015
14
6 c. Define the following:
i) Actual parameter
ii) Formal parameter
iii) Global variable (external variable)
iv) Local variable (automatic variable) (5 Marks)
Ans:
7 a. Define a STRUCTURE. Explain structure with syntax and example. (5 Marks)
Ans: For answer, refer Solved Paper June-2015 Q.No.7a.
PROGRAMMING IN C & DATA STRUCTURES SOLVED PAPER DEC- 2015
15
7 b. What is a FILE? Explain any 2 FILE functions, with example. (5 Marks)
Ans:
7 c. Write a program to maintain a record 0f ‘n’ student details using an array of
structures with four fields (Roll number, Name, Marks, and Grade). Each field is of a
appropriate data type. Print the marks of the students based on the student name as
input (10 Marks)
Ans: Ans: For answer, refer Solved Paper June-2015 Q.No.7c.
PROGRAMMING IN C & DATA STRUCTURES SOLVED PAPER DEC- 2015
16
8 a. Differntiate between STRUCTURES and UNIONS. (5 Marks)
Ans:
8 b. Explain the various MODES in which a FILE can be created successfully. (5
Marks)
Ans:
PROGRAMMING IN C & DATA STRUCTURES SOLVED PAPER DEC- 2015
17
8 c. Given 2 university information files ‘student.txt’ and ‘usn.txt’ that contains
students Name and USN respectively. Write a program to create a new file called
‘output.txt’ and copy and contents of files ‘studentname.txt’ and ‘usn.txt’ into output
file in the sequence shown below. (10 Marks)
Ans:
PROGRAMMING IN C & DATA STRUCTURES SOLVED PAPER DEC- 2015
18
9 a. Define a POINTER. Explain how pointer variable is declared and initialized. (6
Marks)
Ans: For answer, refer Solved Paper June-2015 Q.No.9a.
9 b. What are primitive and non-primitive data types? Give examples. (6 Marks)
Ans: For answer, refer Solved Paper June-2015 Q.No.10b.
9 c. Write a program using pointers to compute sum, mean and standard deviation
of all elements stored in an array of ‘n’ real numbers. (8 Marks)
Ans:
PROGRAMMING IN C & DATA STRUCTURES SOLVED PAPER DEC- 2015
19
10 a. Explain any 2 pre-processor directives in ‘C’ language. (5 Marks)
Ans: For answer, refer Solved Paper June-2015 Q.No.10a.
10 b. What is a STACK? Explain its applications. (5 Marks)
Ans:
10 c. What is a QUEUE? Explain with example. (5 Marks)
Ans:
10 d. Write a program to swap 2 numbers using call-by-refernce method. (5 Marks)
Ans: For answer, refer Solved Paper June-2015 Q.No.9c.

More Related Content

What's hot

Design Procedure for an Integrator
Design Procedure for an IntegratorDesign Procedure for an Integrator
Fourier and Laplace transforms in analysis of CT systems PDf.pdf
Fourier and Laplace transforms in analysis of CT systems PDf.pdfFourier and Laplace transforms in analysis of CT systems PDf.pdf
Fourier and Laplace transforms in analysis of CT systems PDf.pdf
Dr.SHANTHI K.G
 
Depth first search [dfs]
Depth first search [dfs]Depth first search [dfs]
Depth first search [dfs]
DEEPIKA T
 
M.Tech freshers resume
M.Tech freshers resumeM.Tech freshers resume
M.Tech freshers resume
RajkumarM53
 
Fog Computing and the Internet of Things
Fog Computing and the Internet of ThingsFog Computing and the Internet of Things
Fog Computing and the Internet of Things
S.Mostafa Sayyedi
 
Data Structure Question Bank(2 marks)
Data Structure Question Bank(2 marks)Data Structure Question Bank(2 marks)
Data Structure Question Bank(2 marks)
pushpalathakrishnan
 
Cs6660 compiler design may june 2017 answer key
Cs6660 compiler design may june 2017  answer keyCs6660 compiler design may june 2017  answer key
Cs6660 compiler design may june 2017 answer key
appasami
 
Internet Of Things (November – 2018) [Choice Based | Question Paper]
Internet Of Things (November – 2018) [Choice Based | Question Paper]Internet Of Things (November – 2018) [Choice Based | Question Paper]
Internet Of Things (November – 2018) [Choice Based | Question Paper]
Mumbai B.Sc.IT Study
 
Insertion sort bubble sort selection sort
Insertion sort bubble sort  selection sortInsertion sort bubble sort  selection sort
Insertion sort bubble sort selection sort
Ummar Hayat
 
I. AO* SEARCH ALGORITHM
I. AO* SEARCH ALGORITHMI. AO* SEARCH ALGORITHM
I. AO* SEARCH ALGORITHM
vikas dhakane
 
Time and space complexity
Time and space complexityTime and space complexity
Time and space complexityAnkit Katiyar
 
Artificial Intelligence - A modern approach 3ed
Artificial Intelligence - A modern approach 3edArtificial Intelligence - A modern approach 3ed
Artificial Intelligence - A modern approach 3ed
RohanMistry15
 
Computer Science Internship Report PDF Leena AI
Computer Science Internship Report PDF Leena AIComputer Science Internship Report PDF Leena AI
Computer Science Internship Report PDF Leena AI
shadowhazard77
 
VTU internet of things(IOT) notes by Nithin,VVCE, Mysuru
VTU internet of things(IOT) notes by Nithin,VVCE, MysuruVTU internet of things(IOT) notes by Nithin,VVCE, Mysuru
VTU internet of things(IOT) notes by Nithin,VVCE, Mysuru
Nithin Kumar,VVCE, Mysuru
 
Note on fourier transform of unit step function
Note on fourier transform of unit step functionNote on fourier transform of unit step function
Note on fourier transform of unit step function
Anand Krishnamoorthy
 
Data structure ppt
Data structure pptData structure ppt
Data structure ppt
Prof. Dr. K. Adisesha
 
Prolog example explanation(Family Tree)
Prolog example explanation(Family Tree)Prolog example explanation(Family Tree)
Prolog example explanation(Family Tree)
Gayan Geethanjana
 
Time and Space Complexity
Time and Space ComplexityTime and Space Complexity
Time and Space Complexity
Ashutosh Satapathy
 
Internet of Things (IoT) - Seminar ppt
Internet of Things (IoT) - Seminar pptInternet of Things (IoT) - Seminar ppt
Internet of Things (IoT) - Seminar ppt
Nishant Kayal
 

What's hot (20)

Design Procedure for an Integrator
Design Procedure for an IntegratorDesign Procedure for an Integrator
Design Procedure for an Integrator
 
Fourier and Laplace transforms in analysis of CT systems PDf.pdf
Fourier and Laplace transforms in analysis of CT systems PDf.pdfFourier and Laplace transforms in analysis of CT systems PDf.pdf
Fourier and Laplace transforms in analysis of CT systems PDf.pdf
 
Depth first search [dfs]
Depth first search [dfs]Depth first search [dfs]
Depth first search [dfs]
 
M.Tech freshers resume
M.Tech freshers resumeM.Tech freshers resume
M.Tech freshers resume
 
Fog Computing and the Internet of Things
Fog Computing and the Internet of ThingsFog Computing and the Internet of Things
Fog Computing and the Internet of Things
 
Data Structure Question Bank(2 marks)
Data Structure Question Bank(2 marks)Data Structure Question Bank(2 marks)
Data Structure Question Bank(2 marks)
 
Cs6660 compiler design may june 2017 answer key
Cs6660 compiler design may june 2017  answer keyCs6660 compiler design may june 2017  answer key
Cs6660 compiler design may june 2017 answer key
 
Internet Of Things (November – 2018) [Choice Based | Question Paper]
Internet Of Things (November – 2018) [Choice Based | Question Paper]Internet Of Things (November – 2018) [Choice Based | Question Paper]
Internet Of Things (November – 2018) [Choice Based | Question Paper]
 
Insertion sort bubble sort selection sort
Insertion sort bubble sort  selection sortInsertion sort bubble sort  selection sort
Insertion sort bubble sort selection sort
 
12 latches
12 latches12 latches
12 latches
 
I. AO* SEARCH ALGORITHM
I. AO* SEARCH ALGORITHMI. AO* SEARCH ALGORITHM
I. AO* SEARCH ALGORITHM
 
Time and space complexity
Time and space complexityTime and space complexity
Time and space complexity
 
Artificial Intelligence - A modern approach 3ed
Artificial Intelligence - A modern approach 3edArtificial Intelligence - A modern approach 3ed
Artificial Intelligence - A modern approach 3ed
 
Computer Science Internship Report PDF Leena AI
Computer Science Internship Report PDF Leena AIComputer Science Internship Report PDF Leena AI
Computer Science Internship Report PDF Leena AI
 
VTU internet of things(IOT) notes by Nithin,VVCE, Mysuru
VTU internet of things(IOT) notes by Nithin,VVCE, MysuruVTU internet of things(IOT) notes by Nithin,VVCE, Mysuru
VTU internet of things(IOT) notes by Nithin,VVCE, Mysuru
 
Note on fourier transform of unit step function
Note on fourier transform of unit step functionNote on fourier transform of unit step function
Note on fourier transform of unit step function
 
Data structure ppt
Data structure pptData structure ppt
Data structure ppt
 
Prolog example explanation(Family Tree)
Prolog example explanation(Family Tree)Prolog example explanation(Family Tree)
Prolog example explanation(Family Tree)
 
Time and Space Complexity
Time and Space ComplexityTime and Space Complexity
Time and Space Complexity
 
Internet of Things (IoT) - Seminar ppt
Internet of Things (IoT) - Seminar pptInternet of Things (IoT) - Seminar ppt
Internet of Things (IoT) - Seminar ppt
 

Viewers also liked

VTU 4TH SEM CSE COMPUTER ORGANIZATION SOLVED PAPERS OF JUNE-2013 JUNE-2014 & ...
VTU 4TH SEM CSE COMPUTER ORGANIZATION SOLVED PAPERS OF JUNE-2013 JUNE-2014 & ...VTU 4TH SEM CSE COMPUTER ORGANIZATION SOLVED PAPERS OF JUNE-2013 JUNE-2014 & ...
VTU 4TH SEM CSE COMPUTER ORGANIZATION SOLVED PAPERS OF JUNE-2013 JUNE-2014 & ...
vtunotesbysree
 
VTU 4TH SEM CSE MICROPROCESSORS SOLVED PAPERS OF JUNE-2014 & JUNE-2015
VTU 4TH SEM CSE MICROPROCESSORS SOLVED PAPERS OF JUNE-2014 & JUNE-2015VTU 4TH SEM CSE MICROPROCESSORS SOLVED PAPERS OF JUNE-2014 & JUNE-2015
VTU 4TH SEM CSE MICROPROCESSORS SOLVED PAPERS OF JUNE-2014 & JUNE-2015
vtunotesbysree
 
VTU 8TH SEM CSE ADHOC NETWORKS SOLVED PAPERS OF JUNE-2014 DEC-14 & JUNE-2015
VTU 8TH SEM CSE ADHOC NETWORKS SOLVED PAPERS OF JUNE-2014 DEC-14 & JUNE-2015VTU 8TH SEM CSE ADHOC NETWORKS SOLVED PAPERS OF JUNE-2014 DEC-14 & JUNE-2015
VTU 8TH SEM CSE ADHOC NETWORKS SOLVED PAPERS OF JUNE-2014 DEC-14 & JUNE-2015
vtunotesbysree
 
VTU 6TH SEM CSE COMPUTER NETWORKS 2 SOLVED PAPERS OF JUNE-2013 JUNE-14 & JUNE...
VTU 6TH SEM CSE COMPUTER NETWORKS 2 SOLVED PAPERS OF JUNE-2013 JUNE-14 & JUNE...VTU 6TH SEM CSE COMPUTER NETWORKS 2 SOLVED PAPERS OF JUNE-2013 JUNE-14 & JUNE...
VTU 6TH SEM CSE COMPUTER NETWORKS 2 SOLVED PAPERS OF JUNE-2013 JUNE-14 & JUNE...
vtunotesbysree
 
VTU 5TH SEM CSE COMPUTER NETWORKS-1 (DATA COMMUNICATION) SOLVED PAPERS
VTU 5TH SEM CSE COMPUTER NETWORKS-1 (DATA COMMUNICATION)  SOLVED PAPERSVTU 5TH SEM CSE COMPUTER NETWORKS-1 (DATA COMMUNICATION)  SOLVED PAPERS
VTU 5TH SEM CSE COMPUTER NETWORKS-1 (DATA COMMUNICATION) SOLVED PAPERS
vtunotesbysree
 
MULTIPLE CHOICE QUESTIONS WITH ANSWERS ON NETWORK MANAGEMENT SYSTEMS
MULTIPLE CHOICE QUESTIONS WITH ANSWERS ON NETWORK MANAGEMENT SYSTEMSMULTIPLE CHOICE QUESTIONS WITH ANSWERS ON NETWORK MANAGEMENT SYSTEMS
MULTIPLE CHOICE QUESTIONS WITH ANSWERS ON NETWORK MANAGEMENT SYSTEMS
vtunotesbysree
 
VTU 5TH SEM CSE OPERATING SYSTEMS SOLVED PAPERS
VTU 5TH SEM CSE OPERATING SYSTEMS SOLVED PAPERSVTU 5TH SEM CSE OPERATING SYSTEMS SOLVED PAPERS
VTU 5TH SEM CSE OPERATING SYSTEMS SOLVED PAPERS
vtunotesbysree
 
MULTIPLE CHOICE QUESTIONS WITH ANSWERS ON WIRELESS SENSOR NETWORKS
MULTIPLE CHOICE QUESTIONS WITH ANSWERS ON WIRELESS SENSOR NETWORKSMULTIPLE CHOICE QUESTIONS WITH ANSWERS ON WIRELESS SENSOR NETWORKS
MULTIPLE CHOICE QUESTIONS WITH ANSWERS ON WIRELESS SENSOR NETWORKS
vtunotesbysree
 
VTU 5TH SEM CSE SOFTWARE ENGINEERING SOLVED PAPERS - JUN13 DEC13 JUN14 DEC14 ...
VTU 5TH SEM CSE SOFTWARE ENGINEERING SOLVED PAPERS - JUN13 DEC13 JUN14 DEC14 ...VTU 5TH SEM CSE SOFTWARE ENGINEERING SOLVED PAPERS - JUN13 DEC13 JUN14 DEC14 ...
VTU 5TH SEM CSE SOFTWARE ENGINEERING SOLVED PAPERS - JUN13 DEC13 JUN14 DEC14 ...
vtunotesbysree
 
SOLUTION MANUAL OF WIRELESS COMMUNICATIONS BY THEODORE S RAPPAPORT
SOLUTION MANUAL OF WIRELESS COMMUNICATIONS BY THEODORE S RAPPAPORTSOLUTION MANUAL OF WIRELESS COMMUNICATIONS BY THEODORE S RAPPAPORT
SOLUTION MANUAL OF WIRELESS COMMUNICATIONS BY THEODORE S RAPPAPORT
vtunotesbysree
 
MULTIPLE CHOICE QUESTIONS ON COMMUNICATION PROTOCOL ENGINEERING
MULTIPLE CHOICE QUESTIONS ON COMMUNICATION PROTOCOL ENGINEERINGMULTIPLE CHOICE QUESTIONS ON COMMUNICATION PROTOCOL ENGINEERING
MULTIPLE CHOICE QUESTIONS ON COMMUNICATION PROTOCOL ENGINEERING
vtunotesbysree
 
VTU 7TH SEM CSE DATA WAREHOUSING AND DATA MINING SOLVED PAPERS OF DEC2013 JUN...
VTU 7TH SEM CSE DATA WAREHOUSING AND DATA MINING SOLVED PAPERS OF DEC2013 JUN...VTU 7TH SEM CSE DATA WAREHOUSING AND DATA MINING SOLVED PAPERS OF DEC2013 JUN...
VTU 7TH SEM CSE DATA WAREHOUSING AND DATA MINING SOLVED PAPERS OF DEC2013 JUN...
vtunotesbysree
 
SOLUTION MANUAL OF OPERATING SYSTEM CONCEPTS BY ABRAHAM SILBERSCHATZ, PETER B...
SOLUTION MANUAL OF OPERATING SYSTEM CONCEPTS BY ABRAHAM SILBERSCHATZ, PETER B...SOLUTION MANUAL OF OPERATING SYSTEM CONCEPTS BY ABRAHAM SILBERSCHATZ, PETER B...
SOLUTION MANUAL OF OPERATING SYSTEM CONCEPTS BY ABRAHAM SILBERSCHATZ, PETER B...
vtunotesbysree
 

Viewers also liked (13)

VTU 4TH SEM CSE COMPUTER ORGANIZATION SOLVED PAPERS OF JUNE-2013 JUNE-2014 & ...
VTU 4TH SEM CSE COMPUTER ORGANIZATION SOLVED PAPERS OF JUNE-2013 JUNE-2014 & ...VTU 4TH SEM CSE COMPUTER ORGANIZATION SOLVED PAPERS OF JUNE-2013 JUNE-2014 & ...
VTU 4TH SEM CSE COMPUTER ORGANIZATION SOLVED PAPERS OF JUNE-2013 JUNE-2014 & ...
 
VTU 4TH SEM CSE MICROPROCESSORS SOLVED PAPERS OF JUNE-2014 & JUNE-2015
VTU 4TH SEM CSE MICROPROCESSORS SOLVED PAPERS OF JUNE-2014 & JUNE-2015VTU 4TH SEM CSE MICROPROCESSORS SOLVED PAPERS OF JUNE-2014 & JUNE-2015
VTU 4TH SEM CSE MICROPROCESSORS SOLVED PAPERS OF JUNE-2014 & JUNE-2015
 
VTU 8TH SEM CSE ADHOC NETWORKS SOLVED PAPERS OF JUNE-2014 DEC-14 & JUNE-2015
VTU 8TH SEM CSE ADHOC NETWORKS SOLVED PAPERS OF JUNE-2014 DEC-14 & JUNE-2015VTU 8TH SEM CSE ADHOC NETWORKS SOLVED PAPERS OF JUNE-2014 DEC-14 & JUNE-2015
VTU 8TH SEM CSE ADHOC NETWORKS SOLVED PAPERS OF JUNE-2014 DEC-14 & JUNE-2015
 
VTU 6TH SEM CSE COMPUTER NETWORKS 2 SOLVED PAPERS OF JUNE-2013 JUNE-14 & JUNE...
VTU 6TH SEM CSE COMPUTER NETWORKS 2 SOLVED PAPERS OF JUNE-2013 JUNE-14 & JUNE...VTU 6TH SEM CSE COMPUTER NETWORKS 2 SOLVED PAPERS OF JUNE-2013 JUNE-14 & JUNE...
VTU 6TH SEM CSE COMPUTER NETWORKS 2 SOLVED PAPERS OF JUNE-2013 JUNE-14 & JUNE...
 
VTU 5TH SEM CSE COMPUTER NETWORKS-1 (DATA COMMUNICATION) SOLVED PAPERS
VTU 5TH SEM CSE COMPUTER NETWORKS-1 (DATA COMMUNICATION)  SOLVED PAPERSVTU 5TH SEM CSE COMPUTER NETWORKS-1 (DATA COMMUNICATION)  SOLVED PAPERS
VTU 5TH SEM CSE COMPUTER NETWORKS-1 (DATA COMMUNICATION) SOLVED PAPERS
 
MULTIPLE CHOICE QUESTIONS WITH ANSWERS ON NETWORK MANAGEMENT SYSTEMS
MULTIPLE CHOICE QUESTIONS WITH ANSWERS ON NETWORK MANAGEMENT SYSTEMSMULTIPLE CHOICE QUESTIONS WITH ANSWERS ON NETWORK MANAGEMENT SYSTEMS
MULTIPLE CHOICE QUESTIONS WITH ANSWERS ON NETWORK MANAGEMENT SYSTEMS
 
VTU 5TH SEM CSE OPERATING SYSTEMS SOLVED PAPERS
VTU 5TH SEM CSE OPERATING SYSTEMS SOLVED PAPERSVTU 5TH SEM CSE OPERATING SYSTEMS SOLVED PAPERS
VTU 5TH SEM CSE OPERATING SYSTEMS SOLVED PAPERS
 
MULTIPLE CHOICE QUESTIONS WITH ANSWERS ON WIRELESS SENSOR NETWORKS
MULTIPLE CHOICE QUESTIONS WITH ANSWERS ON WIRELESS SENSOR NETWORKSMULTIPLE CHOICE QUESTIONS WITH ANSWERS ON WIRELESS SENSOR NETWORKS
MULTIPLE CHOICE QUESTIONS WITH ANSWERS ON WIRELESS SENSOR NETWORKS
 
VTU 5TH SEM CSE SOFTWARE ENGINEERING SOLVED PAPERS - JUN13 DEC13 JUN14 DEC14 ...
VTU 5TH SEM CSE SOFTWARE ENGINEERING SOLVED PAPERS - JUN13 DEC13 JUN14 DEC14 ...VTU 5TH SEM CSE SOFTWARE ENGINEERING SOLVED PAPERS - JUN13 DEC13 JUN14 DEC14 ...
VTU 5TH SEM CSE SOFTWARE ENGINEERING SOLVED PAPERS - JUN13 DEC13 JUN14 DEC14 ...
 
SOLUTION MANUAL OF WIRELESS COMMUNICATIONS BY THEODORE S RAPPAPORT
SOLUTION MANUAL OF WIRELESS COMMUNICATIONS BY THEODORE S RAPPAPORTSOLUTION MANUAL OF WIRELESS COMMUNICATIONS BY THEODORE S RAPPAPORT
SOLUTION MANUAL OF WIRELESS COMMUNICATIONS BY THEODORE S RAPPAPORT
 
MULTIPLE CHOICE QUESTIONS ON COMMUNICATION PROTOCOL ENGINEERING
MULTIPLE CHOICE QUESTIONS ON COMMUNICATION PROTOCOL ENGINEERINGMULTIPLE CHOICE QUESTIONS ON COMMUNICATION PROTOCOL ENGINEERING
MULTIPLE CHOICE QUESTIONS ON COMMUNICATION PROTOCOL ENGINEERING
 
VTU 7TH SEM CSE DATA WAREHOUSING AND DATA MINING SOLVED PAPERS OF DEC2013 JUN...
VTU 7TH SEM CSE DATA WAREHOUSING AND DATA MINING SOLVED PAPERS OF DEC2013 JUN...VTU 7TH SEM CSE DATA WAREHOUSING AND DATA MINING SOLVED PAPERS OF DEC2013 JUN...
VTU 7TH SEM CSE DATA WAREHOUSING AND DATA MINING SOLVED PAPERS OF DEC2013 JUN...
 
SOLUTION MANUAL OF OPERATING SYSTEM CONCEPTS BY ABRAHAM SILBERSCHATZ, PETER B...
SOLUTION MANUAL OF OPERATING SYSTEM CONCEPTS BY ABRAHAM SILBERSCHATZ, PETER B...SOLUTION MANUAL OF OPERATING SYSTEM CONCEPTS BY ABRAHAM SILBERSCHATZ, PETER B...
SOLUTION MANUAL OF OPERATING SYSTEM CONCEPTS BY ABRAHAM SILBERSCHATZ, PETER B...
 

Similar to VTU 1ST SEM PROGRAMMING IN C & DATA STRUCTURES SOLVED PAPERS OF JUNE-2015 & DECEMBER-2015

Pcd201516
Pcd201516Pcd201516
Pcd201516
sheikhmoidin
 
Cs8251 faq1
Cs8251 faq1Cs8251 faq1
Cs8251 faq1
tamilvanan76
 
Computer Programming Past papers for DIT
Computer Programming Past papers for DITComputer Programming Past papers for DIT
Computer Programming Past papers for DIT
ChahatNoor
 
17432 object oriented programming
17432   object oriented programming17432   object oriented programming
17432 object oriented programming
soni_nits
 
FDS-CS8393 BME MODEL QP2.doc
FDS-CS8393 BME MODEL QP2.docFDS-CS8393 BME MODEL QP2.doc
FDS-CS8393 BME MODEL QP2.doc
jaba kumar
 
ASP.NET With C# (May – 2018) [IDOL: Revised Course | Question Paper]
ASP.NET With C# (May – 2018) [IDOL: Revised Course | Question Paper]ASP.NET With C# (May – 2018) [IDOL: Revised Course | Question Paper]
ASP.NET With C# (May – 2018) [IDOL: Revised Course | Question Paper]
Mumbai B.Sc.IT Study
 
[Question Paper] Advanced SQL (Revised Course) [April / 2014]
[Question Paper] Advanced SQL (Revised Course) [April / 2014][Question Paper] Advanced SQL (Revised Course) [April / 2014]
[Question Paper] Advanced SQL (Revised Course) [April / 2014]
Mumbai B.Sc.IT Study
 
[Question Paper] ASP.NET With C# (60:40 Pattern) [April / 2014]
[Question Paper] ASP.NET With C# (60:40 Pattern) [April / 2014][Question Paper] ASP.NET With C# (60:40 Pattern) [April / 2014]
[Question Paper] ASP.NET With C# (60:40 Pattern) [April / 2014]
Mumbai B.Sc.IT Study
 
2. cs8451 daa anna univ question bank unit 2
2. cs8451 daa anna univ question bank unit 22. cs8451 daa anna univ question bank unit 2
[Question Paper] C++ and Java (Old Course) [June / 2014]
[Question Paper] C++ and Java (Old Course) [June / 2014][Question Paper] C++ and Java (Old Course) [June / 2014]
[Question Paper] C++ and Java (Old Course) [June / 2014]
Mumbai B.Sc.IT Study
 
MCA-ASS-Semester V.pdf
MCA-ASS-Semester V.pdfMCA-ASS-Semester V.pdf
MCA-ASS-Semester V.pdf
ShubbyyChan
 
Oop r&s may 2019
Oop r&s may 2019Oop r&s may 2019
Oop r&s may 2019
ktuonlinenotes
 
Oop r&s may 2019 (2)
Oop r&s may 2019 (2)Oop r&s may 2019 (2)
Oop r&s may 2019 (2)
ktuonlinenotes
 
[Question Paper] Object Oriented Programming With C++ (Revised Course) [Janua...
[Question Paper] Object Oriented Programming With C++ (Revised Course) [Janua...[Question Paper] Object Oriented Programming With C++ (Revised Course) [Janua...
[Question Paper] Object Oriented Programming With C++ (Revised Course) [Janua...
Mumbai B.Sc.IT Study
 
BScIT: Semester – V (May - 2018) [IDOL: Old Course | Question Paper]
BScIT: Semester – V (May - 2018) [IDOL: Old Course | Question Paper]BScIT: Semester – V (May - 2018) [IDOL: Old Course | Question Paper]
BScIT: Semester – V (May - 2018) [IDOL: Old Course | Question Paper]
Mumbai B.Sc.IT Study
 

Similar to VTU 1ST SEM PROGRAMMING IN C & DATA STRUCTURES SOLVED PAPERS OF JUNE-2015 & DECEMBER-2015 (20)

Pcd201516
Pcd201516Pcd201516
Pcd201516
 
Cs8251 faq1
Cs8251 faq1Cs8251 faq1
Cs8251 faq1
 
Computer Programming Past papers for DIT
Computer Programming Past papers for DITComputer Programming Past papers for DIT
Computer Programming Past papers for DIT
 
17432 object oriented programming
17432   object oriented programming17432   object oriented programming
17432 object oriented programming
 
FDS-CS8393 BME MODEL QP2.doc
FDS-CS8393 BME MODEL QP2.docFDS-CS8393 BME MODEL QP2.doc
FDS-CS8393 BME MODEL QP2.doc
 
ASP.NET With C# (May – 2018) [IDOL: Revised Course | Question Paper]
ASP.NET With C# (May – 2018) [IDOL: Revised Course | Question Paper]ASP.NET With C# (May – 2018) [IDOL: Revised Course | Question Paper]
ASP.NET With C# (May – 2018) [IDOL: Revised Course | Question Paper]
 
[Question Paper] Advanced SQL (Revised Course) [April / 2014]
[Question Paper] Advanced SQL (Revised Course) [April / 2014][Question Paper] Advanced SQL (Revised Course) [April / 2014]
[Question Paper] Advanced SQL (Revised Course) [April / 2014]
 
2013-June: 7th Semester ISE Question Papers
2013-June: 7th  Semester ISE Question Papers2013-June: 7th  Semester ISE Question Papers
2013-June: 7th Semester ISE Question Papers
 
7th Semester Information Science (2013-June) Question Papers
7th Semester Information Science (2013-June) Question Papers 7th Semester Information Science (2013-June) Question Papers
7th Semester Information Science (2013-June) Question Papers
 
2013-June: 7th Semester CSE Question Papers
2013-June: 7th  Semester CSE Question Papers2013-June: 7th  Semester CSE Question Papers
2013-June: 7th Semester CSE Question Papers
 
7th Semester Computer Science (2013-June) Question Papers
7th Semester Computer Science (2013-June) Question Papers7th Semester Computer Science (2013-June) Question Papers
7th Semester Computer Science (2013-June) Question Papers
 
7th cs june 2013
7th cs   june 20137th cs   june 2013
7th cs june 2013
 
[Question Paper] ASP.NET With C# (60:40 Pattern) [April / 2014]
[Question Paper] ASP.NET With C# (60:40 Pattern) [April / 2014][Question Paper] ASP.NET With C# (60:40 Pattern) [April / 2014]
[Question Paper] ASP.NET With C# (60:40 Pattern) [April / 2014]
 
2. cs8451 daa anna univ question bank unit 2
2. cs8451 daa anna univ question bank unit 22. cs8451 daa anna univ question bank unit 2
2. cs8451 daa anna univ question bank unit 2
 
[Question Paper] C++ and Java (Old Course) [June / 2014]
[Question Paper] C++ and Java (Old Course) [June / 2014][Question Paper] C++ and Java (Old Course) [June / 2014]
[Question Paper] C++ and Java (Old Course) [June / 2014]
 
MCA-ASS-Semester V.pdf
MCA-ASS-Semester V.pdfMCA-ASS-Semester V.pdf
MCA-ASS-Semester V.pdf
 
Oop r&s may 2019
Oop r&s may 2019Oop r&s may 2019
Oop r&s may 2019
 
Oop r&s may 2019 (2)
Oop r&s may 2019 (2)Oop r&s may 2019 (2)
Oop r&s may 2019 (2)
 
[Question Paper] Object Oriented Programming With C++ (Revised Course) [Janua...
[Question Paper] Object Oriented Programming With C++ (Revised Course) [Janua...[Question Paper] Object Oriented Programming With C++ (Revised Course) [Janua...
[Question Paper] Object Oriented Programming With C++ (Revised Course) [Janua...
 
BScIT: Semester – V (May - 2018) [IDOL: Old Course | Question Paper]
BScIT: Semester – V (May - 2018) [IDOL: Old Course | Question Paper]BScIT: Semester – V (May - 2018) [IDOL: Old Course | Question Paper]
BScIT: Semester – V (May - 2018) [IDOL: Old Course | Question Paper]
 

Recently uploaded

Sachpazis:Terzaghi Bearing Capacity Estimation in simple terms with Calculati...
Sachpazis:Terzaghi Bearing Capacity Estimation in simple terms with Calculati...Sachpazis:Terzaghi Bearing Capacity Estimation in simple terms with Calculati...
Sachpazis:Terzaghi Bearing Capacity Estimation in simple terms with Calculati...
Dr.Costas Sachpazis
 
ML for identifying fraud using open blockchain data.pptx
ML for identifying fraud using open blockchain data.pptxML for identifying fraud using open blockchain data.pptx
ML for identifying fraud using open blockchain data.pptx
Vijay Dialani, PhD
 
Student information management system project report ii.pdf
Student information management system project report ii.pdfStudent information management system project report ii.pdf
Student information management system project report ii.pdf
Kamal Acharya
 
Cosmetic shop management system project report.pdf
Cosmetic shop management system project report.pdfCosmetic shop management system project report.pdf
Cosmetic shop management system project report.pdf
Kamal Acharya
 
Immunizing Image Classifiers Against Localized Adversary Attacks
Immunizing Image Classifiers Against Localized Adversary AttacksImmunizing Image Classifiers Against Localized Adversary Attacks
Immunizing Image Classifiers Against Localized Adversary Attacks
gerogepatton
 
The Benefits and Techniques of Trenchless Pipe Repair.pdf
The Benefits and Techniques of Trenchless Pipe Repair.pdfThe Benefits and Techniques of Trenchless Pipe Repair.pdf
The Benefits and Techniques of Trenchless Pipe Repair.pdf
Pipe Restoration Solutions
 
Fundamentals of Electric Drives and its applications.pptx
Fundamentals of Electric Drives and its applications.pptxFundamentals of Electric Drives and its applications.pptx
Fundamentals of Electric Drives and its applications.pptx
manasideore6
 
road safety engineering r s e unit 3.pdf
road safety engineering  r s e unit 3.pdfroad safety engineering  r s e unit 3.pdf
road safety engineering r s e unit 3.pdf
VENKATESHvenky89705
 
Gen AI Study Jams _ For the GDSC Leads in India.pdf
Gen AI Study Jams _ For the GDSC Leads in India.pdfGen AI Study Jams _ For the GDSC Leads in India.pdf
Gen AI Study Jams _ For the GDSC Leads in India.pdf
gdsczhcet
 
Runway Orientation Based on the Wind Rose Diagram.pptx
Runway Orientation Based on the Wind Rose Diagram.pptxRunway Orientation Based on the Wind Rose Diagram.pptx
Runway Orientation Based on the Wind Rose Diagram.pptx
SupreethSP4
 
space technology lecture notes on satellite
space technology lecture notes on satellitespace technology lecture notes on satellite
space technology lecture notes on satellite
ongomchris
 
English lab ppt no titlespecENG PPTt.pdf
English lab ppt no titlespecENG PPTt.pdfEnglish lab ppt no titlespecENG PPTt.pdf
English lab ppt no titlespecENG PPTt.pdf
BrazilAccount1
 
Water Industry Process Automation and Control Monthly - May 2024.pdf
Water Industry Process Automation and Control Monthly - May 2024.pdfWater Industry Process Automation and Control Monthly - May 2024.pdf
Water Industry Process Automation and Control Monthly - May 2024.pdf
Water Industry Process Automation & Control
 
HYDROPOWER - Hydroelectric power generation
HYDROPOWER - Hydroelectric power generationHYDROPOWER - Hydroelectric power generation
HYDROPOWER - Hydroelectric power generation
Robbie Edward Sayers
 
一比一原版(SFU毕业证)西蒙菲莎大学毕业证成绩单如何办理
一比一原版(SFU毕业证)西蒙菲莎大学毕业证成绩单如何办理一比一原版(SFU毕业证)西蒙菲莎大学毕业证成绩单如何办理
一比一原版(SFU毕业证)西蒙菲莎大学毕业证成绩单如何办理
bakpo1
 
RAT: Retrieval Augmented Thoughts Elicit Context-Aware Reasoning in Long-Hori...
RAT: Retrieval Augmented Thoughts Elicit Context-Aware Reasoning in Long-Hori...RAT: Retrieval Augmented Thoughts Elicit Context-Aware Reasoning in Long-Hori...
RAT: Retrieval Augmented Thoughts Elicit Context-Aware Reasoning in Long-Hori...
thanhdowork
 
DESIGN A COTTON SEED SEPARATION MACHINE.docx
DESIGN A COTTON SEED SEPARATION MACHINE.docxDESIGN A COTTON SEED SEPARATION MACHINE.docx
DESIGN A COTTON SEED SEPARATION MACHINE.docx
FluxPrime1
 
J.Yang, ICLR 2024, MLILAB, KAIST AI.pdf
J.Yang,  ICLR 2024, MLILAB, KAIST AI.pdfJ.Yang,  ICLR 2024, MLILAB, KAIST AI.pdf
J.Yang, ICLR 2024, MLILAB, KAIST AI.pdf
MLILAB
 
Design and Analysis of Algorithms-DP,Backtracking,Graphs,B&B
Design and Analysis of Algorithms-DP,Backtracking,Graphs,B&BDesign and Analysis of Algorithms-DP,Backtracking,Graphs,B&B
Design and Analysis of Algorithms-DP,Backtracking,Graphs,B&B
Sreedhar Chowdam
 
一比一原版(UofT毕业证)多伦多大学毕业证成绩单如何办理
一比一原版(UofT毕业证)多伦多大学毕业证成绩单如何办理一比一原版(UofT毕业证)多伦多大学毕业证成绩单如何办理
一比一原版(UofT毕业证)多伦多大学毕业证成绩单如何办理
ydteq
 

Recently uploaded (20)

Sachpazis:Terzaghi Bearing Capacity Estimation in simple terms with Calculati...
Sachpazis:Terzaghi Bearing Capacity Estimation in simple terms with Calculati...Sachpazis:Terzaghi Bearing Capacity Estimation in simple terms with Calculati...
Sachpazis:Terzaghi Bearing Capacity Estimation in simple terms with Calculati...
 
ML for identifying fraud using open blockchain data.pptx
ML for identifying fraud using open blockchain data.pptxML for identifying fraud using open blockchain data.pptx
ML for identifying fraud using open blockchain data.pptx
 
Student information management system project report ii.pdf
Student information management system project report ii.pdfStudent information management system project report ii.pdf
Student information management system project report ii.pdf
 
Cosmetic shop management system project report.pdf
Cosmetic shop management system project report.pdfCosmetic shop management system project report.pdf
Cosmetic shop management system project report.pdf
 
Immunizing Image Classifiers Against Localized Adversary Attacks
Immunizing Image Classifiers Against Localized Adversary AttacksImmunizing Image Classifiers Against Localized Adversary Attacks
Immunizing Image Classifiers Against Localized Adversary Attacks
 
The Benefits and Techniques of Trenchless Pipe Repair.pdf
The Benefits and Techniques of Trenchless Pipe Repair.pdfThe Benefits and Techniques of Trenchless Pipe Repair.pdf
The Benefits and Techniques of Trenchless Pipe Repair.pdf
 
Fundamentals of Electric Drives and its applications.pptx
Fundamentals of Electric Drives and its applications.pptxFundamentals of Electric Drives and its applications.pptx
Fundamentals of Electric Drives and its applications.pptx
 
road safety engineering r s e unit 3.pdf
road safety engineering  r s e unit 3.pdfroad safety engineering  r s e unit 3.pdf
road safety engineering r s e unit 3.pdf
 
Gen AI Study Jams _ For the GDSC Leads in India.pdf
Gen AI Study Jams _ For the GDSC Leads in India.pdfGen AI Study Jams _ For the GDSC Leads in India.pdf
Gen AI Study Jams _ For the GDSC Leads in India.pdf
 
Runway Orientation Based on the Wind Rose Diagram.pptx
Runway Orientation Based on the Wind Rose Diagram.pptxRunway Orientation Based on the Wind Rose Diagram.pptx
Runway Orientation Based on the Wind Rose Diagram.pptx
 
space technology lecture notes on satellite
space technology lecture notes on satellitespace technology lecture notes on satellite
space technology lecture notes on satellite
 
English lab ppt no titlespecENG PPTt.pdf
English lab ppt no titlespecENG PPTt.pdfEnglish lab ppt no titlespecENG PPTt.pdf
English lab ppt no titlespecENG PPTt.pdf
 
Water Industry Process Automation and Control Monthly - May 2024.pdf
Water Industry Process Automation and Control Monthly - May 2024.pdfWater Industry Process Automation and Control Monthly - May 2024.pdf
Water Industry Process Automation and Control Monthly - May 2024.pdf
 
HYDROPOWER - Hydroelectric power generation
HYDROPOWER - Hydroelectric power generationHYDROPOWER - Hydroelectric power generation
HYDROPOWER - Hydroelectric power generation
 
一比一原版(SFU毕业证)西蒙菲莎大学毕业证成绩单如何办理
一比一原版(SFU毕业证)西蒙菲莎大学毕业证成绩单如何办理一比一原版(SFU毕业证)西蒙菲莎大学毕业证成绩单如何办理
一比一原版(SFU毕业证)西蒙菲莎大学毕业证成绩单如何办理
 
RAT: Retrieval Augmented Thoughts Elicit Context-Aware Reasoning in Long-Hori...
RAT: Retrieval Augmented Thoughts Elicit Context-Aware Reasoning in Long-Hori...RAT: Retrieval Augmented Thoughts Elicit Context-Aware Reasoning in Long-Hori...
RAT: Retrieval Augmented Thoughts Elicit Context-Aware Reasoning in Long-Hori...
 
DESIGN A COTTON SEED SEPARATION MACHINE.docx
DESIGN A COTTON SEED SEPARATION MACHINE.docxDESIGN A COTTON SEED SEPARATION MACHINE.docx
DESIGN A COTTON SEED SEPARATION MACHINE.docx
 
J.Yang, ICLR 2024, MLILAB, KAIST AI.pdf
J.Yang,  ICLR 2024, MLILAB, KAIST AI.pdfJ.Yang,  ICLR 2024, MLILAB, KAIST AI.pdf
J.Yang, ICLR 2024, MLILAB, KAIST AI.pdf
 
Design and Analysis of Algorithms-DP,Backtracking,Graphs,B&B
Design and Analysis of Algorithms-DP,Backtracking,Graphs,B&BDesign and Analysis of Algorithms-DP,Backtracking,Graphs,B&B
Design and Analysis of Algorithms-DP,Backtracking,Graphs,B&B
 
一比一原版(UofT毕业证)多伦多大学毕业证成绩单如何办理
一比一原版(UofT毕业证)多伦多大学毕业证成绩单如何办理一比一原版(UofT毕业证)多伦多大学毕业证成绩单如何办理
一比一原版(UofT毕业证)多伦多大学毕业证成绩单如何办理
 

VTU 1ST SEM PROGRAMMING IN C & DATA STRUCTURES SOLVED PAPERS OF JUNE-2015 & DECEMBER-2015

  • 1.
  • 2. For Solved Question Papers of UGC-NET/GATE/SET/PGCET in Computer Science, visit http://victory4sure.weebly.com/
  • 3. For Solved Question Papers of UGC-NET/GATE/SET/PGCET in Computer Science, visit http://victory4sure.weebly.com/
  • 4. PROGRAMMING IN C & DATA STRUCTURES SOLVED PAPER JUNE- 2015 1 1 a. What are data types? Mention the different data types supported by C language, giving an example to each. (5 Marks) Ans: 1 b. Write a C program which takes as input p, t, r. Compute the simple interest and display the result. (5 Marks) Ans:
  • 5. PROGRAMMING IN C & DATA STRUCTURES SOLVED PAPER JUNE- 2015 2 1 c. What is an operator? List and explain various types of operators. (10 Marks) Ans:
  • 6. PROGRAMMING IN C & DATA STRUCTURES SOLVED PAPER JUNE- 2015 3
  • 7. PROGRAMMING IN C & DATA STRUCTURES SOLVED PAPER JUNE- 2015 4 2 a. What is a token? What are the different types of tokens available in C language? Explain. (08 Marks) Ans:
  • 8. PROGRAMMING IN C & DATA STRUCTURES SOLVED PAPER JUNE- 2015 5 2 b. Write C expressions corresponding to the following (Assume all quantities are of same type) (06 Marks) Ans: 2 c. What is the value of ‘x’ in the following code segments? Justify your answers: (06 Marks) Ans:
  • 9. PROGRAMMING IN C & DATA STRUCTURES SOLVED PAPER JUNE- 2015 6 3 a. What are the different types of conditional decision making statements? Explain each with example. (10 Marks) Ans:
  • 10. PROGRAMMING IN C & DATA STRUCTURES SOLVED PAPER JUNE- 2015 7
  • 11. PROGRAMMING IN C & DATA STRUCTURES SOLVED PAPER JUNE- 2015 8
  • 12. PROGRAMMING IN C & DATA STRUCTURES SOLVED PAPER JUNE- 2015 9 3 b. Write a C program to simulate simple calculator that performs arithmetic operations using switch statements. Error message should be displayed, if any attempt is to made to divide by zero. (10 Marks) Ans:
  • 13. PROGRAMMING IN C & DATA STRUCTURES SOLVED PAPER JUNE- 2015 10 4 a. Explain with example formatted input output statements in C. (06 Marks) Ans:
  • 14. PROGRAMMING IN C & DATA STRUCTURES SOLVED PAPER JUNE- 2015 11 4 b. List four differences between while loop and do-while loop along with syntax and example. (06 Marks) Ans:
  • 15. PROGRAMMING IN C & DATA STRUCTURES SOLVED PAPER JUNE- 2015 12 4 c. Design and develop a C program to reverse a given four digit integer number and check whether it is a palindrome or not. (08 Marks) Ans:
  • 16. PROGRAMMING IN C & DATA STRUCTURES SOLVED PAPER JUNE- 2015 13 5 a. What is an array? Explain different methods of initialization of single dimensional arrays. (06 Marks) Ans:
  • 17. PROGRAMMING IN C & DATA STRUCTURES SOLVED PAPER JUNE- 2015 14
  • 18. PROGRAMMING IN C & DATA STRUCTURES SOLVED PAPER JUNE- 2015 15 5 b. Write a C program to read N integers into an array A and to i) find the sum of odd numbers ii) find the sum of even numbers iii) find the average of all numbers Output the results computed with appropriate headings. (06 Marks) Ans:
  • 19. PROGRAMMING IN C & DATA STRUCTURES SOLVED PAPER JUNE- 2015 16 5 c. How string is declared and initialized? Explain any FOUR string manipulation functions with examples. (08 Marks) Ans:
  • 20. PROGRAMMING IN C & DATA STRUCTURES SOLVED PAPER JUNE- 2015 17
  • 21. PROGRAMMING IN C & DATA STRUCTURES SOLVED PAPER JUNE- 2015 18 6 a. Explain function call, function definition and function prototype with examples to each. (06 Marks) Ans:
  • 22. PROGRAMMING IN C & DATA STRUCTURES SOLVED PAPER JUNE- 2015 19 6 b. What are actual parameters and formal parameters? Illustrate with example. (06 Marks) Ans: 6 c. What is recursion? Write a C program to compute the factorial of a given number ‘n’ using recursion. (08 Marks) Ans:
  • 23. PROGRAMMING IN C & DATA STRUCTURES SOLVED PAPER JUNE- 2015 20 7 a. How structure is different from an array? Explain declaration of a structure with an example. (06 Marks) Ans:
  • 24. PROGRAMMING IN C & DATA STRUCTURES SOLVED PAPER JUNE- 2015 21 7 b. Explain with an example, how to create a structure using ‘typedef’. (04 Marks) Ans:
  • 25. PROGRAMMING IN C & DATA STRUCTURES SOLVED PAPER JUNE- 2015 22 7 c. Write a C program to input the following details of ‘N’ students using structure: Roll No: integer, name: string, marks: float, grade: char Print the names of the students with marks >= 60.0%. (10 Marks) Ans:
  • 26. PROGRAMMING IN C & DATA STRUCTURES SOLVED PAPER JUNE- 2015 23 8 a. Explain following file operations along with syntax and examples: i)fopen() ii)fclose() iii)fscanf() iv) fprintf() v)fgets(). (10 Marks) Ans:
  • 27. PROGRAMMING IN C & DATA STRUCTURES SOLVED PAPER JUNE- 2015 24 8 b. Write a C program to read the contents from the file called abc: text, count the number of characters, number of lines and number of white spaces and output the same. (10 Marks) Ans:
  • 28. PROGRAMMING IN C & DATA STRUCTURES SOLVED PAPER JUNE- 2015 25 8 a. Define pointer variable. Explain with an example, the declaration and initialization of pointer variable. (06 Marks) Ans:
  • 29. PROGRAMMING IN C & DATA STRUCTURES SOLVED PAPER JUNE- 2015 26 8 b. Explain following C functions along with syntax and example to each. i) malloc() ii) calloc() iii) realloc iv) free() (08 Marks) Ans:
  • 30. PROGRAMMING IN C & DATA STRUCTURES SOLVED PAPER JUNE- 2015 27 8 c. Develop a C program to read two numbers and function to swap these numbers using pointers. (06 Marks) Ans:
  • 31. PROGRAMMING IN C & DATA STRUCTURES SOLVED PAPER JUNE- 2015 28 10 . Write short notes on following: a. Preprocessor directives b. Primitive and non primitive data types c. Stack operations d. Types of queues. (20 Marks) Ans: a)
  • 32. PROGRAMMING IN C & DATA STRUCTURES SOLVED PAPER JUNE- 2015 29 Ans: b) Ans: c)
  • 33. PROGRAMMING IN C & DATA STRUCTURES SOLVED PAPER JUNE- 2015 30 Ans: d)
  • 34. For Solved Question Papers of UGC-NET/GATE/SET/PGCET in Computer Science, visit http://victory4sure.weebly.com/
  • 35. For Solved Question Papers of UGC-NET/GATE/SET/PGCET in Computer Science, visit http://victory4sure.weebly.com/
  • 36. For Solved Question Papers of UGC-NET/GATE/SET/PGCET in Computer Science, visit http://victory4sure.weebly.com/
  • 37. PROGRAMMING IN C & DATA STRUCTURES SOLVED PAPER DEC- 2015 1 1 a. Explain the structure of ‘C’ program with example. (5 Marks) Ans:
  • 38. PROGRAMMING IN C & DATA STRUCTURES SOLVED PAPER DEC- 2015 2 1 b. Explain scanf() and printf() function in ‘C’ language with syntax and examples. (5 Marks) Ans: For answer, refer Solved Paper June-2015 Q.No.4a. 1 c. Write a ‘C’ program to find area of circle. (5 Marks) Ans: 2 a. What is an algorithm? Write an algorithm to find largest of 3 numbers. (5 Marks) Ans:
  • 39. PROGRAMMING IN C & DATA STRUCTURES SOLVED PAPER DEC- 2015 3 2 b. Explain the following operators in ‘C’ language. i) Relational ii) Conditional iii) Logical (5 Marks) Ans:
  • 40. PROGRAMMING IN C & DATA STRUCTURES SOLVED PAPER DEC- 2015 4 2 c. What is an identifier? Give any 5 rules that are to be followed while declaring a variable. (4 Marks) Ans:
  • 41. PROGRAMMING IN C & DATA STRUCTURES SOLVED PAPER DEC- 2015 5 3 a. Explain the ELSE IF ladder with syntax and example. (8 Marks) Ans:
  • 42. PROGRAMMING IN C & DATA STRUCTURES SOLVED PAPER DEC- 2015 6 3 b. List the types of loops. Explain the working of any one type of loop with syntax and example. (8 Marks) Ans:
  • 43. PROGRAMMING IN C & DATA STRUCTURES SOLVED PAPER DEC- 2015 7 3 b. Write a program to read a year as an input and find whether it is a LEAP YEAR or not (8 Marks) Ans:
  • 44. PROGRAMMING IN C & DATA STRUCTURES SOLVED PAPER DEC- 2015 8 4 a. Explain SWITCH statement, with syntax and example. (8 Marks) Ans: 4 b. Differentiate between WHILE and DO-WHILE loops. (6 Marks) Ans: For answer, refer Solved Paper June-2015 Q.No.4b. 4 c. Write a program to find reverse of a number and check whether it is a PALINDROME or not (6 Marks) Ans: For answer, refer Solved Paper June-2015 Q.No.4c.
  • 45. PROGRAMMING IN C & DATA STRUCTURES SOLVED PAPER DEC- 2015 9 5 a. What is an ARRAY? Explain the different ways of initializing an array with examples. (7 Marks) Ans: For answer, refer Solved Paper June-2015 Q.No.5a. 5 b. What are the advantages of using User defined functions. (6 Marks) Ans:
  • 46. PROGRAMMING IN C & DATA STRUCTURES SOLVED PAPER DEC- 2015 10 5 c. Write a program to read a sentence and print the frequencies of each VOWEL and total count of CONSONANTS. (7 Marks) Ans:
  • 47. PROGRAMMING IN C & DATA STRUCTURES SOLVED PAPER DEC- 2015 11 6 a. Explain the different types of arrays, with syntax and examples. (7 Marks) Ans:
  • 48. PROGRAMMING IN C & DATA STRUCTURES SOLVED PAPER DEC- 2015 12 6 b. Explain any 4 string manipulating functions with examples. (8 Marks) Ans:
  • 49. PROGRAMMING IN C & DATA STRUCTURES SOLVED PAPER DEC- 2015 13
  • 50. PROGRAMMING IN C & DATA STRUCTURES SOLVED PAPER DEC- 2015 14 6 c. Define the following: i) Actual parameter ii) Formal parameter iii) Global variable (external variable) iv) Local variable (automatic variable) (5 Marks) Ans: 7 a. Define a STRUCTURE. Explain structure with syntax and example. (5 Marks) Ans: For answer, refer Solved Paper June-2015 Q.No.7a.
  • 51. PROGRAMMING IN C & DATA STRUCTURES SOLVED PAPER DEC- 2015 15 7 b. What is a FILE? Explain any 2 FILE functions, with example. (5 Marks) Ans: 7 c. Write a program to maintain a record 0f ‘n’ student details using an array of structures with four fields (Roll number, Name, Marks, and Grade). Each field is of a appropriate data type. Print the marks of the students based on the student name as input (10 Marks) Ans: Ans: For answer, refer Solved Paper June-2015 Q.No.7c.
  • 52. PROGRAMMING IN C & DATA STRUCTURES SOLVED PAPER DEC- 2015 16 8 a. Differntiate between STRUCTURES and UNIONS. (5 Marks) Ans: 8 b. Explain the various MODES in which a FILE can be created successfully. (5 Marks) Ans:
  • 53. PROGRAMMING IN C & DATA STRUCTURES SOLVED PAPER DEC- 2015 17 8 c. Given 2 university information files ‘student.txt’ and ‘usn.txt’ that contains students Name and USN respectively. Write a program to create a new file called ‘output.txt’ and copy and contents of files ‘studentname.txt’ and ‘usn.txt’ into output file in the sequence shown below. (10 Marks) Ans:
  • 54. PROGRAMMING IN C & DATA STRUCTURES SOLVED PAPER DEC- 2015 18 9 a. Define a POINTER. Explain how pointer variable is declared and initialized. (6 Marks) Ans: For answer, refer Solved Paper June-2015 Q.No.9a. 9 b. What are primitive and non-primitive data types? Give examples. (6 Marks) Ans: For answer, refer Solved Paper June-2015 Q.No.10b. 9 c. Write a program using pointers to compute sum, mean and standard deviation of all elements stored in an array of ‘n’ real numbers. (8 Marks) Ans:
  • 55. PROGRAMMING IN C & DATA STRUCTURES SOLVED PAPER DEC- 2015 19 10 a. Explain any 2 pre-processor directives in ‘C’ language. (5 Marks) Ans: For answer, refer Solved Paper June-2015 Q.No.10a. 10 b. What is a STACK? Explain its applications. (5 Marks) Ans: 10 c. What is a QUEUE? Explain with example. (5 Marks) Ans: 10 d. Write a program to swap 2 numbers using call-by-refernce method. (5 Marks) Ans: For answer, refer Solved Paper June-2015 Q.No.9c.