which alternative can replace the throw statement in C++ ?
A
for
B
break
C
return
D
exit
Correct Answer: return
Throw and return does the same job as return a value . so it can be replaced .