Which of the following is an abstract data type?
AInt
BDouble
CString
DClass
AInt
BDouble
CString
DClass
Related Questions:
What is the value of sum after the execution of the following code?
int sum = 0;
for (int i = -5; i<=;i++)
{
if (!i) break;
sum += i;
}