What is the differances between a abstract calss and
interface
Answer Posted / kanan
Abstract class: You can inherit only one class.
Interface: You can inherit more than one interface.
Abstract class: It contains both completed and uncompleted
(abstract) methods.
Interface: It only contains uncompleted methods (methods
without body).
Abstract class: Access modifiers are there for methods and
properties.
Interface: It does not have access modifier for methods or
properties. By default they are public.
Abstract class: Fast
Interface: Require more time to find actual method in classes.
Abstract class: It can contain fields and constants.
Interface: no fields can be defining in interface.
| Is This Answer Correct ? | 3 Yes | 0 No |
Post New Answer View All Answers
What is the renewal class?
write a program to find 2^n+1 ?
What is encapsulation c#?
Advantage and disadvantage of routing in telecom sector
What are different types of JVM's? for example we use dalvik jvm for android then what about the remaining operating systems?
write a programe to calculate the simple intrest and compund intrest using by function overlading
What is object-oriented programming? Webopedia definition
Give an example where we have to specifically use C programming language and C++ programming language cannot be used?
What is ambiguity in inheritance?
What is object in oop?
What is difference between inheritance and polymorphism?
What are the 5 oop principles?
What are the 3 pillars of oop?
Where You Can Use Interface in your Project
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.