Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

Hello! This is C++. Could you please answer these questions? Thank you and have

ID: 3712310 • Letter: H

Question

Hello! This is C++.

Could you please answer these questions?

Thank you and have a good one!

1. C++ programmers refer to an array of characters as a string

True

False

2. The following Statements has which issue?

Int myTable [6];

myTable[0]=11.5;

Compile Error

Logic Error

Run Time Error

No Issue

3. An abstract data type is Not a type defined by C++.

True

False

4. Encapsulation simplifies your concept of the process or object, allowing you to ignore nonessential details.

True

False

5. A class is a new data type you create that is more complex than the basic data types.

True

False

Compile Error

Logic Error

Run Time Error

No Issue

Explanation / Answer

1) True

In c++,string is actually a one-dimensional array of characters which is terminated by a null character ''.

2) Logic Error.

If we try to pring it, 11 will be printed. A data loss here.

3)False

abstract

4)False

abstraction simplifies your concept of the process or object, allowing you to ignore nonessential details not the Encapsulation

5)True

A class is a user defined data type, which holds its own data members and member functions, which can be accessed and used by creating an instance of that class