Question
Easy
Which of the following is not supported in C++?
1
Automatic garbage collection
2
Multiple inheritance
3
Smart pointer
4
Virtual destructor
Question Details
Time to Solve: 12
Exam: HTET
Level/Paper: Level 3
Chapter: Computer System & Hardware Fundamentals
Topic: Computer System
Correct Answer
Option A
Explanation
The correct option is (1): Automatic garbage collection is the facility to automatically free up memory that is no longer being used by the program, typically managed by a language's runtime environment (like in Java or C\#). C++ adheres to a philosophy of low-level control and high performance, which dictates manual memory management. Programmers are explicitly responsible for allocating dynamic memory using new and deallocating it with delete. While modern…Read More
Similar Questions from HTET Exam - Level 3 - Year 2018
Question 1
Easy
Source :
HTET 2018
A 2-bit full adder circuit may be designed with the help of the following 2-input logic gates:
Chapter :
Computer System & Hardware Fundamentals
Topic :
Architecture
Question 2
Easy
Source :
HTET 2018
Maximum channel utilization in case of pure ALOHA is:
Chapter :
Computer Networks & Internet
Topic :
Computer Network
Question 3
Easy
Source :
HTET 2018
Which of the following operations requires two tables as input having a least one common column ?
Chapter :
Database Management System (DBMS) & SQL
Topic :
MS Access
Question 4
Easy
Source :
HTET 2018
Which of the following is invalid C++ comment statement ?
Chapter :
Python Programming Fundamentals
Topic :
Operators & Expressions