-
What is the tradeoff using a linked list
What is the tradeoff using a linked list!!
-
Concatenate two circularly single linked list into one circularly linked list
typedef struct listnode*list pointer;
typedef struct list node{
int data;
list pointer link;
};
list pointer concatenate(list pointer list1,list pointer list2){
} -
Consider the following statements about (2,4) trees
Consider the following statements about (2,4) trees
I) height of (2,4) tree storing n items is O(log n)
ii) Fusion operation takes constant time
iii)Deletion operation takes O(n) time
Select one:
> All of them are true
> All of them are false
> i, ii are true and iii is false
> i is true and ii, iii are false
-
Asynchronous counter and synchronous counter
What are the areas in which asynchronous counter and synchronous counter are used.... give atleast one example of each or more
-
Collections
Why cant we use associtive array as column values in a table ?
-
Program to stimulate timer of an test
Write a progrm to stimulate timer of an online test. Us special library functions to prompt the reamining time to user and terminate the test after the time expires.
-
-
List all the employees
List all the employees who have atleast one person reporting to them List the employee details if and..
-
User Stories and Use Case
What is the difference between User Stories and a Use Case
-
Digital Signature Software - Installed or SaaS
Which version of Digital Signature Software - Installed or SaaS is more secured and legally binding?
-
Efficient Algorithm to print count and possible string combinations of a string by retaining order and length of charactersined
Problem: Given a input string as "0000" and following input scheme for the zeroes, print the possible combinations by retaining order of the characters.
Input Scheme:
A "0"
B "00"
C "000"
D "0000"
Example: "AAAA" is one string with length and order of characters retained -
What are real time usage of session parameters and variables ?
Where we should use this session parameters and how should use them
-
Design and develop database to track incoming and outgoing hard copy letters
Design and develop a database to track incoming and outgoing hard copy letters for a division with 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?
-
-
Why would you define a getSize() function instead of having the application access the size of the linked list directly?
Skill/Topic: Stacks and Queues: Insert, Delete, Peek, FindA) You use the getSize() function instead of having the application access the size of the linked list directly to protect the data from inadvertently being changed by the application.Explanation: If the application needs to change the data, then the appropriate function is called and the function changes the data.
-
Creating and using a hashtable in your application is a single-step process[Topic] Hash Table.
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 defined nodes in a tree or a linked list. The second step is to define a Hashtable class. The Hashtable class declares an instance of the user-defined structure and defines member data and member functions...
Ans