GeekInterview.com
   Home |  Tech FAQ  |   Interview Questions |  Placement Papers |  Tech Articles |  Learn |  Freelance Projects |  Online Testing |  Geeks Talk |  Job Postings |  Knowledge Base | Site Search |  Add/Ask Question

Data Structures Interview Questions


Data Structures Interview Questions

Questions: 190
Comments: 313
 Data Structures Tags
 Showing Questions 1-10 of 191 Questions
[1] 2 3 4 5 6 7 8 9 10 Next >>
 Sponsored Links

 
 Data Structures Interview Questions
Sorting Options :  

View Question | Asked by : faasi113

Explain What is a node data structure Write a function such that the node data structure to visit all of the nodes in a binary tree? 
View Question | Asked by : koolck619

Latest Answer: a pointer with no return type is called a null pointer.It may be any kind of datatype.It takes the data type according to the requirement in the program.for eg: #include using namespace std;void increase (void* data, int psize){  ...

Is it possible to implement trees using arrays ? If yes, how? 
Latest Answer: Yes, it is possible. Here is an example of implementing a binary tree:Consider an attay : a[n];Place the root in first position. and let the current position to be i = 0;place left node at the position: 2i+1place right node at the position: 2i+2. Repeat ...
Read Answers (1) | Asked by : lavs_mca

View Question | Asked by : butterfire

Explain how recursive algorithm is converted into recurrence relation with example. 
View Question | Asked by : subindas

Explain how performance of algorithm is analysed? 
Latest Answer: The performance of an algorithm is analysed by the time complexity as well as its space complexity though both the complexities are trafe-offs between them. If time complexity increases then space complexity decreases & vice-versa. Also the best & ...
Read Answers (1) | Asked by : subindas

What is Polymorphic Data Type? Give example 
View Question | Asked by : chayanika39

What does it mean when a data structure is declared volatile? What does it mean when a data structure is declared Const? 
Latest Answer: Volatile - you are asking compiler to not to optimise the data structure as well as to reload to CPU registers whenever it is in use. Not a good idea for Data structure, will waste lot of CPU time in loading long data structures. ...

Given a string of characters (let us say there are about 100 characters or more in the string), what is the most efficient method to use for finding out the character that repeats itself the most?Is it 
Latest Answer: There is an way to solve this issue with complexity of O(n).1.  MAke an array size of 2562.  Using each charater read from the string as an index incremented the counter of corresponding character.3.  Let that counter be max, so inshort you have variables holding a char with number of times repeated in the string. ...
Read Answers (5) | Asked by : jobchicago

View page [1] 2 3 4 5 6 7 8 9 10 Next >>

Ask A Question
Go Top
 Sponsored Links

 
Expert Members
Subscribe
Get Latest Updates Via RSS Reader or by Email
 Forum Discussion Subscribe to Forum Discussions Via E-Mail Latest Forum Discussions Subscribers
 Knowledge Base Subscribe to Knowledge Base Series Via E-Mail Knowledge Base Subscribers
 Learning Series Subscribe to GeekInterview Learning Series Via EMail Learning Series Subscribers
 Freelance Jobs Subscribe to GeekInterview Freelance Jobs Via EMail Latest Freelance Jobs Subscribers
 GeekInterview Blog Subscribe to GeekInterview Blog Via EMail GeekInterview Blog Subscribers
 Testing Interview Questions Subscribe to Testing Interview Questions Via EMail Testing Interview Questions Subscribers
 Oracle Interview Questions Subscribe to Oracle Interview Questions Via EMail Oracle Interview Questions Subscribers
 Java Interview Questions Subscribe to Java Interview Questions Via EMail Java Interview Questions Subscribers
 Latest Placement Papers Subscribe to Latest Placement Papers Placement Papers Subscribers
 Free Training Subscribe to Free Training Via EMail Free Training Subscribers
 Learn AJAX Subscribe to AJAXwith.com Via EMail AJAXwith Subscribers
Sponsored Links

 




About Us  |   Privacy Policy  |   Terms and Conditions  |   Contact  |   Site Map  |   Add Question  |   Propose Category  |   RSS Feeds  |   Articles Sitemap  |   Site Updates  |   Add Resource

Copyright © 2005 - 2008 GeekInterview.com. All Rights Reserved
Page copy protected against web site content infringement by Copyscape