Answer Posted / e-mail
Link list is a collection of either diffrent diffrent data
or same type of data which is store in a node,basically
node contain non premitive data witch is divided into two
parts one part contain data and another part contain
address of next node..
| Is This Answer Correct ? | 8 Yes | 0 No |
Post New Answer View All Answers
Why do we use polymorphism in oops?
What is the difference between abstraction and polymorphism?
What is the full form of oops?
Write a c++ program to display pass and fail for three student using static member function
Why is abstraction used?
Is oop better than procedural?
Can we have inheritance without polymorphism?
What is inheritance write a program to show use of inheritance?
Why do we use class in oops?
write string class as your own class in java without using any built-in function
What is the use of oops?
c++ program to swap the objects of two different classes
What is new keyword in oops?
What are different types of JVM's? for example we use dalvik jvm for android then what about the remaining operating systems?
Write a program to compute for numeric grades for a course. The course records are in a file that will serve as the input file. The input file is in exactly the following format: Each line contains a student's first name, then one space, then ten quiz scores all on one line. The quiz scores are in whole number and are separated by one space. Your program will take it input from this file and sends it output to a second file. The data in the output file will be exactly the same as the data in the input file except that there will be one additional number (of type double) at the end of each line. This number will be the average of the student's ten quiz scores. Use at least one function that has file streams as all or some of its arguments.