-
List all the employees
List all the employees who have atleast one person reporting to them List the employee details if and..
-
-
What is the relationship between a queue and its underlying array?
Skill/Topic: QueueA) Data stored in a queue is actually stored in an array. The queue tracks which array element is at the front of the queue and which array element is at the back of the queue.
-
Circular Queue
What is Circular Queue? Explain with examples.
-
C Program to replication of string
Write a c program to implement the replication of string which will be given as a command line argument?
Structure and union
What is the difference between structure and union?
How to reverse a linked list without usinf any pointer of c?
-
How to remove some keys in ArrayList
Hi.
This a class Employee containes eid and ename are datamembers. when these employee class objects are stored in arrary list
i want to remove eid containes 100 and 1000
plz replay to me -
-
-
Linear and Non-Linear Data Structures
Explain what are linear data structure & non-linear data structure?
-
Transfer function
Relationship between transfer function and homogeneous solution
-
-
User Stories and Use Case
What is the difference between User Stories and a Use Case
-
The hashString() member function is called by other member functions of the Hashtable class whenever a function needs to convert a ________________.
Skill/Topic: Hash TableA) a hash number key to a keyB) key to a hash number keyC) a key to an IndexExplanation: The hashString() member function is another function called by other member functions of the Hashtable class whenever a function needs to convert a key to a hash number key. The hashString() function requires one argument, a char pointer to the key that is being hashed. The hash number that...
-
GetInstance()...
Please, can anybody answer me that when to use getInstance() and which class having getInstance(),I could not find that method in class Class also.
-
Can a linked list store data other than integers?
Skill/Topic: Stacks and Queues: Insert, Delete, Peek, FindA) YesB) NoExplanation: Integers are usually used, but you can modify the data type of the data in the definition of the node to change the kind of data stored in the linked list.
-
What happens if an invalid index value is passed to a function?
Skill/Topic: Stacks and Queues: Insert, Delete, Peek, FindA) If an invalid index is passed, the function terminates without further processing. [Explanation] Functions that use an index value always determine if the index passed to them is valid before using the index value . If an invalid index is received, the
Iterative Algorithm
Design an iterative algorithm to traverse a binary tree represented in two dimensional matrix
Ans