⟩ What is a default constructor in C++?
Default constructor WITH arguments
class B {
public:
B (int m = 0) : n (m) {}
int n;
};
int main(int argc, char *argv[])
{
B b;
return 0;
}
Default constructor WITH arguments
class B {
public:
B (int m = 0) : n (m) {}
int n;
};
int main(int argc, char *argv[])
{
B b;
return 0;
}
What care has to be taken to force program to execute above 16 Meg line?
How do you submit JCL via a COBOL program?
What guidelines should be followed to write a structured COBOL prgm?
Give some advantages of REDEFINES clause?
What is the difference between static call and Dynamic call?
How do you code COBOL to access a parameter that has been defined in JCL? And do you code the PARM parameter on the EXEC line in JCL?
What do you feel makes a good program?
Why do we code S9 (4) comp. Inspite of knowing comp-3 will occupy less space ?
How to execute a set of JCL statements from a COBOL program?
Differentiate COBOL and COBOL-II. (Most of our programs are written in COBOLII, so, it is good to know, how, this is different from COBOL)?