answersLogoWhite

0

Object REXX was created in 1988.

User Avatar

Wiki User

11y ago

What else can I help you with?

Continue Learning about Engineering

Is there any md5 or sha256 code for tso rexx?

Yes, I'm sure someone has implemented the functionality. The newer versions of REXX may have a function call to create the hash value.


How do you run a rexx program with jcl?

JCL (Job Control Language) to run a REXX is a common practice. You should have a sample JCL in your shop. Note this all runs on Z/OS not windows and the REXX cannot be an interactive REXX. //JOBNAME JOBCARD INFO .... //STEPNAME EXEC PGM=IKJEFT01,PARM='REXXNAME' //SYSTSPRT DD SYSOUT=* //SYSUDUMP DD SYSOUT=D,FLASH=F003 //SYSPROC DD DSN=YOUR.REXX.LIBRARY,DISP=SHR //SYSTSIN DD DUMMY,DCB=BLKSIZE=80 Change the jobcard to match your shops standards for running JCL Put a stepname you like (replace STEPNAME) Replace REXXNAME with the name of the REXX you wish to run On the SYSPROC line put the library name you used to create the REXX exec. Submit the JCL (note you also need submit authority to run JCLs)


When was Object of Obsession created?

Object of Obsession was created in 1994.


Can we create an array of objects for a class having default constructor Justify your answer?

See example code below. #include <iostream> class x { private: // Members. static int counter; int data; public: // Default constructor and destructor. x():data(++counter){printf("Object %d created!\n",data);} ~x(){printf("Object %d destroyed!\n",data);} // other members omitted for brevity... }; // Initialise static counter. int x::counter=0; int main() { // Instantiate an array of 10 objects. x arr[10]; // .. do some work with the array .. return( 0 ); // The array falls from scope, destroying the objects. } Example output: Object 1 created! Object 2 created! Object 3 created! Object 4 created! Object 5 created! Object 6 created! Object 7 created! Object 8 created! Object 9 created! Object 10 created! Object 10 destroyed! Object 9 destroyed! Object 8 destroyed! Object 7 destroyed! Object 6 destroyed! Object 5 destroyed! Object 4 destroyed! Object 3 destroyed! Object 2 destroyed! Object 1 destroyed!


.....will be automatically Invoked when an object is created?

The Class object is automatically created by the JVM when an object is created. The Class object provides information about the Class and is primarily used by the IDEs and factory classes. The method that is automatically called when an object is created is called a constructor. In Java, the constructor is a method that has the same name as the class.