Answer Posted / aditya
A Linked List is the collection of leniar data elements. In
linked list there will be nodes which has 2 parts. They are
data part and link part. The data part consists of the th
data element and the link part consists of the address of
the next node. In linked list the link part of the last
node will be NULL. The different types of linked list are
1) Linear Linked List
2) Double Linked List
3) Circular Linked List
4) Doule Circular Linked List
| Is This Answer Correct ? | 3 Yes | 0 No |
Post New Answer View All Answers
What is overloading and its types?
What are benefits of oop?
Why it is called runtime polymorphism?
What are properties in oop?
write a code for this. serial_number contained in the header of the file will be read , if this serial number is less than a previous serial number within a successfully processed file, or is the same as another serial number within a successfully processed file, or if the field contains anything other than 7 digits, then the file must error with the reason ‘Invalid SERIAL_NUMBER’.
Why do we use polymorphism?
Whats is abstraction in oops?
Question: Write a program that prints a paycheck. Ask the program user for the name of the employee, the hourly rate, and the number of hours worked. If the number of hours exceeds 40, the employee is paid “time and a half”, that is, 150 percent of the hourly rate on the hours exceeding 40. Be sure to use stepwi se refine ment and break your solution into several functions. Use the int_name function to print the dollar amount of the check.
What is use of overloading?
What is data binding in oops?
What is the fundamental idea of oop?
They started with the brief introduction followed by few basic C++ questions on polumorphism, inheritance and then virtual functions. What is polymorphims? How you will access polymorphic functions in C? How virtual function mechanism works?
What are the important components of cohesion?
What does and I oop mean?
What is class in oop with example?