|
INTERVIEW QUESTIONS
MAINFRAME
COBOL
DETAILS
Question: Without execution cobol program how to see output?
How to rename input filename and outputfile name?
3) Wat is flag?
4) What is impact analysis what basis how will you write test cases?
5) How you sea output of cics command?
6) How are datasets concatenated explain with example?
Answer: According to my knowledge,<br><br>1) You cannot see the output of a program unless you have executed the program. but You can see the results of a CICS pgm using INTERTEST.<br><br>2) I DONT KNOW<br><br><br>3) Flags would be assigned a value based on some condition. While using it for some processing, there is no need to calculating every time. u can calculate one time and keep the decision saved in a varibale. this can be used multiple times.<br><br>4) Say you are changing a module, this module may be interacting with many other modules or the results of this module may be used by some other module. Any changes done for some bug fix in this module should not change the functionality of any module. This is main purpose of Imapct analysis. <br><br>To write the test cases, we need to be aware of the functioanlity of the module and the working of the module. <br><br>5)Intertest while testing.....<br><br>6) //DDNAME DD DSN=file1.file,DISP=SHR<br><br>// DD DSN=file2.file, DISP=SHR<br><br>// DD DSN=file3.file, DISP=SHR<br><br>
|
|
|
Category |
COBOL Interview Questions & Answers -
Exam Mode /
Learning Mode
|
Rating |
(0.2) By 9342 users |
Added on |
7/22/2011 |
Views |
68453 |
Rate it! |
|
|
Question:
Without execution cobol program how to see output?
How to rename input filename and outputfile name?
3) Wat is flag?
4) What is impact analysis what basis how will you write test cases?
5) How you sea output of cics command?
6) How are datasets concatenated explain with example?
Answer:
According to my knowledge,<br><br>1) You cannot see the output of a program unless you have executed the program. but You can see the results of a CICS pgm using INTERTEST.<br><br>2) I DONT KNOW<br><br><br>3) Flags would be assigned a value based on some condition. While using it for some processing, there is no need to calculating every time. u can calculate one time and keep the decision saved in a varibale. this can be used multiple times.<br><br>4) Say you are changing a module, this module may be interacting with many other modules or the results of this module may be used by some other module. Any changes done for some bug fix in this module should not change the functionality of any module. This is main purpose of Imapct analysis. <br><br>To write the test cases, we need to be aware of the functioanlity of the module and the working of the module. <br><br>5)Intertest while testing.....<br><br>6) //DDNAME DD DSN=file1.file,DISP=SHR<br><br>// DD DSN=file2.file, DISP=SHR<br><br>// DD DSN=file3.file, DISP=SHR<br><br> Source: CoolInterview.com
If you have the better answer, then send it to us. We will display your answer after the approval.
Rules to Post Answers in CoolInterview.com:-
- There should not be any Spelling Mistakes.
- There should not be any Gramatical Errors.
- Answers must not contain any bad words.
- Answers should not be the repeat of same answer, already approved.
- Answer should be complete in itself.
|
|
Related Questions |
View Answer |
|
What are the two cobol verbs that are used in data division? (one is COPY..what is the other)
|
View Answer
|
|
What is the difference between write & move in COBOL.? What is the meaning of 'TALLING' verb in cobol? What is the meaning of 'Eject' verb in cobol?
|
View Answer
|
|
What is te difference between Call and Link in cobol?
|
View Answer
|
|
Can we use search and search all in embedded sql
|
View Answer
|
|
What is RESIDENT progamme
|
View Answer
|
|
What are the HIGH Values,LOW values and where we can use?
|
View Answer
|
|
In FILE SECTION of a COBOL programme, I have the following line.
RECORD VARYING FROM 122 TO 160 DEPENDING ON WS00_RECORD_LENGTH
How would the value of WS00_RECORD_LENGTH found out? Where will it be?
|
View Answer
|
|
Can we use redefine clause in occurs clause?
|
View Answer
|
|
How may do the following definitions occupy?
(a) s(3)v99 comp-3 (b) s(9)v99 comp
|
View Answer
|
|
How to initialize a group data which is containing occur clause?
|
View Answer
|
|
What is the maximum size of table space?
|
View Answer
|
|
How to commit updated records in IMS as well as in DB2?Both in CICS and Batch. Is there any single command will do these? Please help me
|
View Answer
|
|
What are differences between COBOL and java ? why we are giving more preference to COBOL ?
|
View Answer
|
|
What are the functions like c/c++ in cobol?
|
View Answer
|
|
What is the difference between Working-storage Section & Linkage Section?
|
View Answer
|
|
Plz tell me how to read/write records form bottom frm a sequential file in cobol?
|
View Answer
|
|
How can you pass values from COBOL program to non-COBOL programs
|
View Answer
|
|
What is the logical difference b/w Move A TO B and COMPUTE B = A.
|
View Answer
|
|
Cofiguration section comes under which division?
|
View Answer
|
|
77 CTR PIC S9(4)V99 VALUE 1234.55. What will be output of the statement DISPLAY CTR?
|
View Answer
|