gopal chand


{ City } hyderabad
< Country > india
* Profession * software programmer
User No # 41381
Total Questions Posted # 0
Total Answers Posted # 4

Total Answers Posted for My Questions # 0
Total Views for My Questions # 0

Users Marked my Answers as Correct # 14
Users Marked my Answers as Wrong # 5
Questions / { gopal chand }
Questions Answers Category Views Company eMail




Answers / { gopal chand }

Question { 8911 }

What should be the sorting order for SEARCH ALL?


Answer

Kavya Answer is Correct, Either Ascending or Descending
Order using Search All. Using Search there is no need of
Sorting Order

Is This Answer Correct ?    0 Yes 0 No

Question { Sun Life, 21985 }

What are different file OPEN modes available in COBOL?


Answer

In Sequential File Organization, File Opening Modes are
Output,I-O, input,extend.
In Indexed File Orgainsation, File Opening Modes are
Output,I-O, input

Is This Answer Correct ?    13 Yes 4 No


Question { TCS, 16889 }

OCCURS clause is used in the DATA DIVISION on data names at
(a) 01 level
(b) 77 level
(c) 88 level
(d) any level from 02 to 49


Answer

Answer is D:

Occurs Clause is used from 02 - 49 Levels. But Some
Compliers are accepted in 01 Level also

Is This Answer Correct ?    0 Yes 1 No

Question { ACS, 13086 }

01 a pic s9(5) value '-12345' how it will be stored


Answer

01 a pic s9(5) value '-12345' how it will be stored

It will be stored :
1234u

In data files Negative Values are Stored as per the
following manner

0-p 1-q 2-r 3-s 4-t 5-u 6-v 7-w 8-x 9-y

The Last Digit of the No. is stored like this in the
following example.

Example: 01 a pic s9(4)v99

move -3456.23 to a.
display a.
Output is : 34562s

Is This Answer Correct ?    1 Yes 0 No