Go Back   StudyChaCha 2024 2025 > StudyChaCha Discussion Forum > General Topics

  #1  
Old April 20th, 2014, 02:38 PM
Sashwat's Avatar
Super Moderator
 
Join Date: Jun 2011
Default

I am in Delhi University and I am student of B.Sc. (H) Computer Science of 2nd Semester and my exams are near so I want to get the previous year question papers I order to give my preparation the final touch so can you please help me for this?

As you want to get the previous year question papers of B.Sc. (H) Computer Science of 2nd Semester of Delhi University so here is the information of the same for you:

Some content of the file has been given here:









For more detailed information I am uploading PDF files which are free to download:

Contact Details:
University of Delhi
University Rd,
New Delhi,
Delhi 110007 ‎
011 2766 7853
India

Last edited by Aakashd; June 25th, 2019 at 10:55 AM.
Reply With Quote
Other Discussions related to this topic
Thread
Diploma in Computer Science Question Papers
Previous Question Papers for MA Political Science Delhi University
B.Sc computer science model question papers of Bharathiyar university
Bharathiar University Question Papers For Msc Computer Science
NET Exam Computer Science Question Papers
ISRO question papers for computer science
GATE Computer Science question papers
BE Computer Science 5th semester question papers of Anna University
NET Computer Science Exam Question Papers
Coimbatore ANNA University 5th Semester Computer Science Question Papers
Delhi University - B.Sc. (H) Computer Science - 2nd Semester previous years question
M.sc. Computer Science Annamalai University DDE question papers
Delhi University - B.Sc. (H) Computer Science – First Semester previous years questio
University Grants Commission NET previous year question papers of Computer Science an
B.E Anna University Computer Science (6th Semester) previous year question papers
University Grants Commission NET Computer Science previous year question papers free
DU B.Sc. (H) Computer Science - 3rd Semester Exam Papers
Kerala university Question Papers Bsc Computer Science
NET exam for Computer Science question papers
Madras University BSc Computer Science Syllabus Semester Three






  #2  
Old October 19th, 2015, 10:02 AM
Unregistered
Guest
 
Default Re: Delhi University - B.Sc. (H) Computer Science Question Papers of 2nd Semester

Hii buddy , I am pursing B.Sc. 2nd Semester in Delhi University , Here I am looking for B.Sc. 2nd Semester Question Papers , Will you please provide me fro same ?
Reply With Quote
  #3  
Old October 19th, 2015, 10:04 AM
Super Moderator
 
Join Date: Jun 2013
Default Re: Delhi University - B.Sc. (H) Computer Science Question Papers of 2nd Semester

As per your asking here I am providing Previous year B.Sc. 2nd Semester Question Papers of Delhi University :

Time: 3 Hours

Maximum Marks :75

1. (a)
Write an algorith that examines whether each occurence of delimiter is matched with a corresponding delimiter in a string,say,s.The algorithm should return true if all delimiters are Matched and false otherwise.
The delimiter to be matvhed may be {, [, ( against }, ], ) respectively. (5)
(b)
Define a class for implementing Queue of data type X(using arrays) and size s. Write a statement to create a queue of integers of size 10. Details of the methods are not required. X is a generic data type. (5)
(c)
Consider a list of unsorted elements. An application requires frequent insertions and deletions. Which of the two data structures array and linked list should be used and why?
(5)
(d)
Consider the following triangular matrix:
6 0 0 0
2 -5 0 0
9 0 1 0
-7 3 8 0
Show how the elements will be stored in one dimensional array in row major order and coulmn major order?
(5)

(e)
Deine a class to represent a node of Binary Tree. Traverse the following tree rooted at A, in preorder, inorder,postorder.(5)
(f)
A function h(n) is defined recursilvely as
h(n)=0, if n=0
h(n)=n, ifn>4
h(n)=h(n +h(2*n)) if n<=4
find the value of h(1) and h(5). (5)
(g)
Consider the following array with exactly 15 elements:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
Suppose binary search is applied or searching an elements. Find the elements, that can be found in binary search by examining one or two elements from the array. How many comparisions will be done for searching 16 in the above array.(5)

2. (a)
Write a function merge that merges two sorted linked lists arranged in ascending order.
(5)
(b) What is an activation record? What all information is stored in activation record ? When are they allocated memory and where?(5)

3.(a)
Show the contents of stack after each operation when the following postfix expression is evaluated :
ABC+*CBA-+*
where A=5,B=6 and C=4 (5)
(B)
A linked list is represented using head and tail pointers. The following operations are applied on an empty linked list L
L.add_at_head(4)
L.add_at_head(6)
L.add_at_tail(7)
L.delete(7)
L.delete_from_tail()
Show the stayus of linked list after each opearation. (5)

4. (a) Suppose a skip list has 18 nodes. How many nodes will be there having one pointer, two pointers, three pointers,four pointers? What is the maximum level of node in this skip list?
(5)

(b)
Draw a hash table with open addressing and a size of 11. Use of hash function "k%9" and linear probing for collision. Insert the keys:
5, 29, 20, 0, 27 and 18 into your table(in that order).(5)

5.(a)
Write an algorithm that seaches for a number X in a binary seach Tree. It should throw an exception if element is not found.(5)
(b)
Create a right-in-threaded binary search tree using the following data: 25, 10, 11, 65, 12, 15, 70, 80
Show the tree after each insertion (show all the threads and child).(5)

6.(a)Define a class to store 2-Dmatrix using 1-D array.Define constructor and overload operator) to store and retreive the i,jth element.(6)
(b)
Write an algorith to insert a node at the end of a doubly linked list.(4)

7.(a)
Write a function to count the number of leaf nodes in Binary Tree.(5)
(b)
Consider the following B-tree with order 5.Delete H,T and R from the following tree. Show the status of B-tree after each deletion.


Previous year B.Sc. (H) 2nd Semester Computer Science Question Papers



__________________
Answered By StudyChaCha Member
Reply With Quote
Reply




All times are GMT +6. The time now is 02:21 PM.


Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2024, vBulletin Solutions Inc.
Search Engine Friendly URLs by vBSEO 3.6.0 PL2

1 2 3 4 5 6 7 8