A qualifier that enables the programmers to inform the compiler that the value of a particular variable should not be modified?
An organized logical sequence of records is called
Products that are bought to be used in conduct of business is called
Term that refers to a strong material used in fabrication of bulletproof vests is called
The young, thin boy surprised his wrestling opponent with his ______ strength
Regarding following statement which of the statements is true? const int a = 100;
What is the output of this program?#include < iostream >using namespace std;int main(){int a = 5, b = 10, c = 15;int *arr[ ] = {&a, &b, &c};cout << arr[1];return 0;}