Question
Easy
Which of the following feature is not supported in C++?
1
Inheritance
2
Abstraction
3
Reflection
4
Dynamic Binding
Question Details
Time to Solve: 12
Exam: HTET
Level/Paper: Level 3
Chapter: Computer System & Hardware Fundamentals
Topic: Computer System
Correct Answer
Option C
Explanation
The correct option is (3): Reflection is the feature that is not natively or comprehensively supported in C++. Reflection is the ability of a program to examine, inspect, and modify its own structure and behavior at runtime, such as querying a class for its member variables or methods by name. Unlike languages like Java or C\#, which have a full reflection API built into the standard library, C++ provides only…Read More
Similar Questions from HTET Exam - Level 3 - Year 2019
Question 1
Easy
Source :
HTET 2019
Which of the following set of operations is a valid set of aggregate operations in SQL ?
Chapter :
Database Management System (DBMS) & SQL
Topic :
SQL
Question 2
Easy
Source :
HTET 2019
SQL command used to modify attribute values of one or more selected tuples is :
Chapter :
Database Management System (DBMS) & SQL
Topic :
SQL
Question 3
Easy
Source :
HTET 2019
Solution to recurrence relation $T(n)=T(n-1)+2$ is given by, where $n>=0$ and $T(0)=5$
Chapter :
Software Engineering & Problem Solving
Topic :
Programming Concepts
Question 4
Easy
Source :
HTET 2019
_______ is used to declare and initialize an object from another object of same class in C++.
Chapter :
Object-Oriented Programming (C++)
Topic :
Advanced Class Concepts