-
-
-
C1 C2 C3 are three conditions whose TRUTH values are as follows.
C1-TRUE C2-FALSE C3-TRUE A,B,C are defined as given below
A:C1 AND(NOT C2) OR C3
B.(NOT C1) OR (NOT C2 AND NOT C3)
C.(C1 OR C2)AND C3 D.C1 AND C2 OR C3
given the above information which of the following statements are valid? a.only A,B and C are TRUE
b.only A,C and D are TRUE
c.A,B,C and D are TRUE
d.only C and D are TRUE -
What is SET TO TRUE all about, anyway?
In COBOL II the 88 levels can be set rather than moving their associated values to the related data item. (Web note: This change is not one of COBOL II's better specifications.)
-
How will you analyze a COBOL program?
Hi,
I was asked in interview how would you analyze a COBOL program?
I gave the ans as there are many kind of analyses -:
Requirement analysis
Root cause analysis
Impact Analysis
Problem / logic analysis
but in general we talk about problem finding in a program
and told him we would first go in for a procedure division and check what... -
Use of COMP fields?
Is there any use of using COMP fields other than betwee SPACE utilization?
-
-
-
-
-
What is the use of INSPECT verb in COBOL?
Explain it with an example?
-
COPY Statement
Which one of the following COPY statement is correct?1) COPY COPYFILE REPLACE ==PRE-== ==WK-==2) COPY COPYFILE REPLACING =PRE-= =WK-=3) COPY COPYFILE SUPPRESS4) COPY REPLACING ==PRE-== ==WK-== IN COPYFILE5) COPY SUPPRESS COPYFILE
-
-
Difference between Divisions and paragraphs?
Difference between Divisions and paragraphs in COBOL explain in details ?
-
Explain the difference between an internal and an external sort, the pros and cons, internal sort syntax etc?
An external sort is not COBOL; it is performed through JCL and PGM=SORT. It is understandable without any code reference. An internal sort can use two different syntaxes: 1.) USING, GIVING sorts are comparable to external sorts with no extra file processing; 2) INPUT PROCEDURE, OUTPUT PROCEDURE sorts allow for data manipulation before and/or after the sort.
-
-
Storage Space
What is the use and when do we are use comp variables (comp, comp1, comp2 and comp3)?
-
-
-
Dynamic Linking in COBOL
I have two modules called 'A' and 'B'. Module 'A' opens the ORACLE database connection, and Calls 'B', which queries the database using the 'SELECT' statement.When I hard code the module name during CALL, the called module uses the database connection opened in the module 'A'. Pls refer below:CALL "B"But, when I moved the module name into a variable and try to call the module, as belowMOVE "B" TO...
COBOL Interview Questions
Ans