Answer Posted / sathiya
data's are grouped together is called data binding which is
binding the data
| Is This Answer Correct ? | 4 Yes | 20 No |
Post New Answer View All Answers
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.
What is Difeerence between List obj=new ArrayList(); and ArrayList obj=new ArrayList()?
How long to learn object oriented programming?
Write A Program to find the ambiguities in Multiple Inheritance? How are they resolved.(Virtual Functions)
What is the advantage of oop over procedural language?
What is difference between pop and oop?
What are the benefits of interface?
What is destructor oops?
Why is polymorphism needed?
Can you explain polymorphism?
class CTest { public: void someMethod() { int nCount = 0; cout << "This is some method --> " << nCount; } }; int main() { CTest *pctest; pctest->someMethod(); return 0; } It will executes the someMethod() and displays the value too. how is it possible with our creating memory for the class . i think iam not creating object for the class. Thanks in Advance... Prakash
What are the advantages of polymorphism?
What is class and example?
What is abstraction oop?
to find out the minimum of two integer number of two different classes using friend function