Question { 5489 }
Name some commands used for CICS file browsing.
Answer
Is This Answer Correct ? | 0 Yes | 0 No |
Question { 15574 }
I have one column say 'X' defined as VARCHAR
Can anyone tell me What are the different ways to update
this column thru COBOL-DB2 program?
Answer
Is This Answer Correct ? | 1 Yes | 0 No |
Question { 12542 }
what is the minimum number of lines a Cobol program should
have to successfully compile and run
Answer
Is This Answer Correct ? | 1 Yes | 1 No |
Question { 4597 }
can any one expalin check point with an example?
Answer
Is This Answer Correct ? | 2 Yes | 0 No |
Question { 9926 }
is it possible to rename 01 level?
Answer
Is This Answer Correct ? | 7 Yes | 2 No |
Question { 7771 }
in how many mode we can open a file ?
Answer
Is This Answer Correct ? | 10 Yes | 0 No |
Q:what is the difference between the variable length and
fixed lenght.how it varies in the cobol.
Answer
Is This Answer Correct ? | 39 Yes | 34 No |
How can we execute only one step in a job
Answer
Is This Answer Correct ? | 1 Yes | 0 No |
Question { Bally Technologies, 19167 }
write the SQL statement to retrieve the 2nd Highest salary
ammount(File Name="EMPLOY",Field Name="SALARY")
Answer
Is This Answer Correct ? | 24 Yes | 2 No |
If A>B
next sentence
end-if
display 1
display 2.
display 3.
If a>b, it will display only 3.(the next sentence,
ie., after fullstop/period)
____________________________________
if a>b
continue
end-if
display 1
display 2.
display 3.
If a>b, it Will display 1 2 3 (the next statement)
____________________________________
if a>b
continue
display 1
end-if
display 2
display 3.
display 4.
If a>b, Will it display 2 3 4 (or) 1 2 3 4 ?
Answer
Is This Answer Correct ? | 2 Yes | 2 No |
How to read the last 100 records from a COBOL file. The file
contains N number of records.
Answer
Is This Answer Correct ? | 4 Yes | 8 No |
Question { 7216 }
Can comments be specified at the very beginning of a
jobcard? Will the JCL execute?
Answer
Is This Answer Correct ? | 6 Yes | 2 No |
Question { 7974 }
How to define the a field which accepts value till 99999.99
in db2
Answer
Is This Answer Correct ? | 33 Yes | 1 No |
How to retain the Duplicates in the one records?
Answer
Is This Answer Correct ? | 15 Yes | 4 No |