Skill/Topic: ArrayA) by using the address operator, which is the ampersand (&), in an assignment statementB) by using the address operator, which is the asterisks (*), in an assignment statementC) by
Latest Answer : sayint * ptoia[10];int a=10;so we can writeptoia[0]=&a;.... and so on,. ...
Skill/Topic: ArrayA) PeriodicalB) SequentiallyC) ParallelyD) None of the aboveExplanation: Elements of an array are stored sequentially in memory. For example,First, create an array called letters and
Latest Answer : Sequentially ...
Skill/Topic: Stacks using Linked ListA) removeback()B) isEmpty()C) removedfront()Explanation: The pop() member function must determine if the stack is empty, or it will attempt to remove a node that isn’t
Latest Answer : its only depend your way of implimentation.but generally top of the stack is initialized by -1 and if we insert (push) an element in the stack the top first increment itself by one and on that index the number is stored and if we pop an element firat ...
The hasNext() function determines if there is another entry in the hashtable based on the current state of the iterator.
Skill/Topic: Hash TableA) TrueB) False
Skill/Topic: Hash TableA) TrueB) FalseExplanation: Creating and using a hashtable in your application is a two-step process. The first step is to define a user-defined structure similar to the way you
You have a new assignment to design and develop a database to track incoming and outgoing harcopy letters for your division. 35 employees are expected to use the database, ranging from clerical to managerial staff. BAsed on the information provided.What steps would you take to complete the assignment?Describe three or more exceptional features that you would design as part of the database?
Which of the following symbol table implementation is based on the property of locality of reference ?
1. Linear list 2. search tree 3. Hash table 4. self-organization list
I had following question paper for data structures on 29th Oct, 2007. There were total 10 questions in the engineering paper to be done in 1 hr. I remember only 9 of those:1. A binary search tree was given.
Latest Answer : Ans for 1: The node number 4 contains the 4th smallest value. ...
Latest Answer : There are many advantages with database approach compared to a flat file system. Some of them are:
1) It's not possible to implement relationships between files in filesystem.2) Controlled redundancy3) Program-data independence4) Easy to maintain large ...