394 views

1 Answer

Best answer
5 votes
5 votes

Answer : Concrete Class 

Concrete class: A class that can have direct instances.

Abstract class: A class that has no direct instances, but whose descendants may have direct instances.

selected by

Related questions

294
views
0 answers
1 votes
Balaji Jegan asked Nov 12, 2018
294 views
Please tell why the answer is C, why not A or B?
762
views
2 answers
0 votes
logan1x asked May 19, 2019
762 views
A default catch block catches,[A]. all thrown objects[B]. no thrown objects[C]. any thrown object that has not been caught by an earlier catch block[D]. all thrown object...
222
views
1 answers
0 votes
Debargha Mitra Roy asked Apr 16
222 views
#include <stdio.h int main() { int a[3] = {1, 3, 5, 7, 9, 11}; int *ptr = a[0]; ptr += sizeof(int); printf("%d", *ptr); return 0; }(Assume size of int to be $2$ bytes.)T...
264
views
0 answers
0 votes
Debargha Mitra Roy asked Apr 12
264 views
Problem Statement: Class teacher to IX-C wants to store whether a particular student has passed in exams. The class has a strength of $32$ students. Their roll numbers li...