Admin Welcomes U ANNA UNIVERSITY QUESTION BANKS PAPERS WITH SOLUTIONS: CSE THIRD

JOIN WITH US :)

WELCOME TO GEEKERS UNIVERSITY OF STUDENT AND PROFESSORS OFFCIAL WEBSITE

THIS WEBSITE BELONGS TO STUDENTS AND PROFESSORS OF GEEKERS UNIVERSITY

GEEKERS UNIVERSITY DEPT

RESEARCH,MBBS,NURSING,ENGINEERING,ARTS AND SCIENCE,TECHNOLGY,DIPLOMA,PLUSTWO,TENTH STANDARD AND SCHOOLS :)

RESULTS

ALL RESULTS,EXAM DATES ,TIME TABLE,ETC

GEEKERS UNIVERSITY

PROJECTS,PAPER PRESENTATION SEMINARS,TUTORIALS,HOW TO,OTHERS,HACKING,MINI PROJECTS

GEEKERS UNIVERSITY---- GAMES

PUZZ,QUIZ,MEDIA,SPORTS,EBOOKS,TUTORIALS,FUN EXAMS,LEARNING,ONLINE TESTING YOUR MIND SPEED,CHATTING AND MUCH MORE


If any add appear like this please click skip add

Category

INFO

CLICK HERE
FOR LATEST RESULTS
LATEST NEW TIME TABLE/EXAM DATES FOR ALL LINK1 LINK2
ANNA UNIVERSITY COLLEGES RANK LIST 2012 CHECK SOON
LATEST FREE PLACEMENT PAPERS FOR ALL COMPANIES CHECK SOON
GET FREE MINI PROJECTS AND FINAL YEAR PROJECTS CLICK HERE
LATEST HOT HACKING TRICKS CLICK HERE

LATEST QUESTION BANKS /PAPERS/entrance FOR ALL EXAMS CLICK HERE link1 link2




our sites
www.tricksnew.blogspot.com www.questionbank.tk
www.freeminiproject.blogspot.com and
www.onlineinfocity.
blogspot.com


NOTE:

FEEL FREE TO CONTACT US click on me
DONT FORGET TO SUBSCRIBE YOUR MAIL ID ----->>>TO GET DAILY question banks IN YOUR INBOX::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: SEE RIGHT SIDE CORNER
Showing posts with label CSE THIRD. Show all posts
Showing posts with label CSE THIRD. Show all posts

Sunday, October 14, 2012

Latest Data Structure Question Banks Lecture notes and Question papers huge collections free download IT 2201


 DATA STRUCTURES

Latest Data Structure Question Banks Lecture notes
 and Question papers huge collections free download IT 2201

anna university question bank for CSE, CSE THIRD,

 IT THIRD, IT, IT FIFTH SEM, CSE FIFTH, ECE THIRD, 

QUESTION BANKS, LECTURE NOTES, QUESTION PAPERS, 

DEPARTMENT OF INFORMATION TECHNOLOGY

ACADEMIC YEAR 2011- 2012 / ODD SEMESTER

QUESTION BANK

SUBJECT NAME : CS1201-DATA STRUCTURES

YEAR / SEM : II / III

UNIT- I

FUNDAMENTALS OF ALGORITHMS


PART – A

1. Define Data structure.

2. Give few examples for data structures.

3. Define Algorithm.

4. What are the features of an efficient algorithm?

5. List down any four applications of data structures.

6. What is Divide and Conquer?

7. State the importance of dynamic programming.

8. Define storage structure.

9. Define file structure.

10. What are the four major parts in an iterative process?

11. Write down the algorithm for solving Towers of Hanoi problem.

12. What are the different types of data structures?

13. What do you mean by primitive data structure?

14. What are the three stages of problem solving aspect?

15. Define depth of recursion.

16. What is searching?

17. What is linear search?

18. Define Space Complexity

19. Define Time Complexity

20. What are asymptotic notations?

21. What is information?

22. Define Recursion?

23. What is a Fibonacci sequence?

PART – B

1. Explain in detail the steps involved in Top down Design. (16)

2. Write the verification condition of a program segments with

a. Straight line statements (04)

b. Branches (06)

c. Loops (06)

3. Write short notes on efficiency of an algorithm (16)

4. Write short notes on analysis of an algorithm (16)

5. (a) Develop an algorithm to compute the sums for the first n terms

S=1+ (1/2) + (1/3) +…. (08)

(b) Discuss in detail about the implementation of the algorithm. (08)

6. (a) Write an algorithm to reverse the digits of a decimal number. (08)

(b) Write an algorithm to compute the Fibonacci series for ‘n’ terms. (08)

7. Explain Asymptotic Notation in detail. (16)


UNIT-II

FUNDAMENTALS OF DATA STRUCTURES

PART – A

1. What is an Abstract Data type (ADT)? Explain.

2. What is a Stack?

3. What are the two operations of Stack?

4. Write postfix form of the expression –A+B-C+D?

5. What is a Queue?

6. What is a Priority Queue?

7. What are the different ways to implement list?

8. What are the advantages in the array implementation of list?

9. What is a linked list?

10. Name the two fields of Linked list?

11. What is a doubly linked list?

12. Name the three fields of Doubly Linked list.

13. Define double circularly linked list.

14. What is the need for the header?

15. List three examples that uses linked list.

16. Give some examples for linear data structures.

17. Write postfix from of the expression –A+B-C+D.

18. How do you test for an empty queue?

19. What are the postfix and prefix forms of the expression?

20. Explain the usage of stack in recursive algorithm implementation.

21. Write down the operations that can be done with queue data structure.

22. What is a circular queue?

PART – B

1. Write a program in C to return the position of an element X in a List L. (16)

2. (a) State and explain the algorithm to perform Radix Sort. (08)

(b) Write a Program in C to create an empty stack and to push an element into it. (08)

3. Explain how queues can be implemented using Arrays (16)

4. (a) Write a ‘c’ program to multiply two polynomials. (08)

(b) Write a ‘c’ program to add two polynomials. (08)

5. (a) Write an algorithm to convert infix to postfix expression and explain it with

example. (08)

(b) Write an algorithm to evaluate a postfix expression and explain it with example.

(08)

6. (a) Write an algorithm to check given expression contains balanced parenthesis or

not. (08)

(b) Write an algorithm for insertion and deletion operation in a circular queue. (08)

7. Define Queue and briefly explain its various operations. (16)

8. Explain doubly linked list in detail. (16)

9. Compare and contrast the different features of various linked lists. (16)

10. Explain stack in detail. (16)

UNIT III

TREES

PART – A

1. Define non-linear data structure.

2. Define tree.

3. Define leaf.

4. What is meant by directed tree?

5. What is an ordered tree?

6. What is a Binary tree?

7. What are the applications of binary tree?

8. What is meant by traversing?

9. What are the different types of traversing?

10. What are the two methods of binary tree implementation?

11. Define pre-order traversal.

12. Define post-order traversal.

13. Define in-order traversal.

14. What is the length of the path in a tree?

15. Define expression trees.

16. Define strictly binary tree.

17. Define complete binary tree.

18. What is an almost complete binary tree?

19. Define AVL Tree.

20. Define collision resolution.

PART – B

1. (a) Construct an expression tree for the expression A+(B-C)*D+(E*F). (08)

(b) Write a function to delete the minimum element from a binary heap. (08)

2. Write a program in C to create an empty binary search tree & search for an element

X in it. (16)

3. Explain in detail about Open Addressing. (16)

4. Explain in detail insertion into AVL Trees. (16)

5. Write a recursive algorithm for binary tree traversal with an example. (16)

6. Write an algorithm for initializing the hash table and insertion in a separate

Chaining (16)

7. State & explain the algorithm to perform Heap sort. Also analyze the time complexity

of the algorithm (16)

8. Write a C program to perform Merge sort and analyze time complexity of the

algorithm. (16)

9. State & explain the algorithm to perform Quick sort. Also analyze the time complexity

of the algorithm. (16)

10. State & explain the algorithm to perform Shell sort. Also analyze the time complexity

of the algorithm. (16)

11. Explain Huffman Algorithm with an example. (16)

12. Discuss about Hashing in detail. (16)

UNIT-IV

GRAPHS AND THEIR APPLICATIONS

PART – A

1. Define Graph.

2. Define adjacent nodes.

3. What is a directed graph?

4. What is an undirected graph?

5. What is a loop?

6. What is a simple graph?

7. What is a weighted graph?

8. Define out degree of a graph.

9. Define in degree of a graph.

10. Define path in a graph.

11. What is a simple path?

12. What is a cycle or a circuit?

13. What is an acyclic graph?

14. What is meant by strongly connected in a graph?

15. When is a graph said to be weakly connected?

16. What is meant by sorting?

17. What are the two main classifications of sorting based on the source of data?

18. What is meant by external sorting?

19. What is meant by internal sorting?

20. What are the various factors to be considered in deciding a sorting algorithm?

21. What is the main idea behind insertion sort?

22. What is the main idea behind selection sort?

23. What is the basic idea of shell sort?

24. What is the other name for shell sort?

25. What is the purpose of quick sort?

PART – B

1. Formulate an algorithm to find the shortest path using Dijkstra’s algorithm and explain

with example. (16)

2. Explain the minimum spanning tree algorithms with an example. (16)

3. (a) Write short notes on Biconnectivity. (08)

(b) Write an algorithm for Topological Sort of a graph. (08)

4. Write and explain weighted and unweighted shortest path algorithm. (16)

5. Explain the various applications of Depth First Search. (16)

6. Explain warshall’s algorithm in detail. (16)

7. Explain kruskal’s algorithm in detail. (16)

8. Explain prim’s algorithm in detail. (16)

UNIT-V

STOARAGE MANAGEMENT

PART-A

1. Mention the types of automatic list management?

2. What do you meant by reference count method?

3. What is Garbage collection?

4. What is compaction?

5. Give the purpose of list management.

6. What are the disadvantages of reference count method?

7. What are the phases of garbage collection?

8. What do you mean by thrashing?

9. What are the types of pointers?

10. What are methods of implementing add on and tail operations in linked list?

11. Define first fit.

12. Define best fit.

13. Define worst fit.

14. What is internal and external fragmentation?

15. What are the types of buddy system?

PART – B

1. Explain the linked list representation of a list with an example. (16)

2. Explain reference count method with an example. (16)

3. Explain garbage collection with their variations. (16)

4. Explain the dynamic memory management with necessary methods. (16)

5. Write about operations in linked linear lists. (16)

6. Explain collection and compaction in detail. (16)


Click here to Download more details contact us



Friday, October 5, 2012

anna university third semester question banks/Paper free download


Third Semester (B.Tech)
Question Bank
Topic – Fourier Series, Fourier Transform and Harmonic Analysis

Q1       Find the Fourier series to represent the function , given by
           
            Deduce that
Q2       Find the Fourier transforms of
                       
            Hence evaluate
                       
Q3       Obtain a Fourier expansion for  in the interval .
Q4       Obtain the Fourier expansion
            and hence deduce that
                        1

Q5       Find the first three harmonics for the function by the following table:-
           
0
60
120
180
240
300
360
0.8
0.6
0.4
0.7
0.9
1.1
0.8

Q6       Use the integral , to prove that the Fourier transform of  is
            .
Q7       Obtain the Fourier series for the function f(x) given by
     

Tuesday, October 2, 2012

CS 2204 ANALOG AND DIGITAL COMMUNICATION/Principle


CS 2204 ANALOG AND DIGITAL COMMUNICATION /Principle


Third Semester Question banks two marks and 16 marks
CSE THIRD, anna university question bank for CSE, CSE,IT THIRD, IT,ANALOG AND DIGITAL COMMUNICATION , Anna University Chennai Question Bank, QUESTION BANKS, CSE THIRD, anna university question bank for CSE, CSE,IT THIRD, IT,ANALOG AND DIGITAL COMMUNICATION , Anna University Chennai Question Bank, QUESTION BANKS, CSE THIRD, anna university question bank for CSE, CSE,IT THIRD, IT,ANALOG AND DIGITAL COMMUNICATION , Anna University Chennai Question Bank, QUESTION BANKS, CSE THIRD, anna university question bank for CSE, CSE,IT THIRD, IT,ANALOG AND DIGITAL COMMUNICATION , Anna University Chennai Question Bank, QUESTION BANKS, 

click here to download 


2010 CS2204 subject notes.doc2010 CS2204 subject notes.doc
3306K   View   Download  
141304 ADC.doc141304 ADC.doc
2289K   View   Download  
Analog and Digital Communicaitons PPT.pptAnalog and Digital Communicaitons PPT.ppt
455K   View   Download  

ADC EC.pdfADC EC.pdf
152K   View   Download  

Contacts our team for more question papers


UPLOADED BY  www.keerthiworld.tk

Credit To :
Author Dr. Ganesan N Ph.D

Thursday, September 20, 2012

Anna University Exam Time Table for Nov/Dec 2012

Anna University Exam Time Table for Nov/Dec 2012 ODD semester and arrears time table will be published ....


Dear Prof/Stud/Folks

                   We already updated the last working day of odd semster for all dept under the anna university.Now Anna University Exam Time Table for Nov/Dec 2012 ODD semester and arrears time table will be published on before second week of October 2012.Stay with us for more updates and latest question banks for your odd semester.


More Details 

Subscribe your email id with our portal and then contact us ....  


2012 EXAMS,
  ALL DEPT
Anna University, 
OTHERS, HOW TO, CSE THIRD, CSE FIFTH, ECE FIFTH, EEE FIFTH, IT FIFTH SEM,


Anna University Exam Time Table for Nov/Dec 2012 ODD semester and arrears time table will be published ....Anna University Exam Time Table for Nov/Dec 2012 ODD semester and arrears time table will be published ....Anna University Exam Time Table for Nov/Dec 2012 ODD semester and arrears time table will be published ....

Tuesday, September 11, 2012

Anna university Revaluation Results for 2nd,4th ,6th semster


Dear Prof/Stud

                        Anna university is going to release the second fourth and sixth semester revaluation results by the end of September last week or begin of October.This time paper valuation is moderate only.So Stud/Prof  dont expect much thing.But We pray with god everyone will get good marks.All the best for your results.And Concentrate well on this current semester do well.God Always with you.

To Get Results in your inbox 

Click all the following links and activate it.We are No 1 to  send the results to students inbox.

Have a great future. All the best for final year students who are all preparing for placements 


LINK 1 for results toolbar in your browser

LINK 2 for results to inbox 
Enter your address:
Delivered by www.questionbanks.tk

LINK 4 click here  for official node  

When will the results for even semester ?
Which site will publish results ?
How will be the revaluation of 2nd,4th,6th semester ? 
Anna university Revaluation Results for 2nd,4th ,6th semster?ALL RESULTS, how to apply  revaluation for anna university B.E/B.Tech, ALL DEPT, Anna University, HOW TO, ECE, ECE FOURTH, ECE SEVENTH, ECE SECOND, CSE THIRD, EEE THIRD, 




Regards

Geek University Members

Wednesday, June 29, 2011

CSE THIRD SEMSTER


  • SUBJECT
  • OTHERS





chitika