Portal | IBM Manuals | Downloads | Products | Refer | Info | Programs | JCLs | Forum Rules*| Site Map | Mainframe CD 
IBMMAINFRAMES.com - IBM Mainframe Support Forums Index
 
Register
 
IBMMAINFRAMES.com - IBM Mainframe Support Forums Index FAQ Search Memberlist Usergroups Profile Log in to check your private messages Log in
 
which record will be read?

 
Post new topic   Reply to topic    IBMMAINFRAMES.com Support Forums -> Interview Questions
Author Message
jyothimenon1

New User


Joined: 16 Jul 2008
Posts: 10
Location: bangalore

PostPosted: Thu Jul 24, 2008 12:39 pm    Post subject: which record will be read?
Reply with quote

A vsam file having 6 records reckey say 1 to 6

Open input infile
move 3 into reckey.
read infile next.
start inrec.
read inrec next.


here which record will be read?

1. no rec
2. rec3
3. unpredictale
4. rec1
Back to top
View user's profile Send private message
References
Moved: Thu Jul 24, 2008 12:45 pm by dick scherrer From Mainframe COBOL to Interview Questions
sedireswarapu

New User


Joined: 18 Jun 2008
Posts: 25
Location: India

PostPosted: Thu Jul 24, 2008 11:40 pm    Post subject:
Reply with quote

Hi ,

Is the question correct ?

From the question, it looks like the filename is 'infile', but 'inrec' is also used in the START/READ statements.

Only files can be read, and records are written/rewritten.

Also, only the filename is used in the START statement (used to reposition the file pointer at a record other than the next logical record).

Code:

START file-name
   KEY IS comparison key
END-START.


comparison - the type of comparison to make between the records
key field and the contents of key

EQUAL TO
GREATER THAN
NOT LESS THAN
GREATER THAN OR EQUAL TO

In the START statement, nothing is mentioned to reposition the file pointer..
Back to top
View user's profile Send private message
sedireswarapu

New User


Joined: 18 Jun 2008
Posts: 25
Location: India

PostPosted: Thu Jul 24, 2008 11:44 pm    Post subject:
Reply with quote

I guess no record will be read [choice 1].

Please correct me if am wrong...
Back to top
View user's profile Send private message
Terry Heinze

Active User


Joined: 14 Jul 2008
Posts: 159
Location: Richfield, MN, USA

PostPosted: Fri Jul 25, 2008 12:14 am    Post subject:
Reply with quote

Also, you have 2 READ statements, one of which is incorrect as Sriram has pointed out. Which of the 2 READ statements are you asking about?
Back to top
View user's profile Send private message
dick scherrer

Global Moderator


Joined: 23 Nov 2006
Posts: 8643
Location: 221 B Baker St

PostPosted: Fri Jul 25, 2008 12:46 am    Post subject:
Reply with quote

Hello Sriram,

Quote:
I guess no record will be read [choice 1].

Please read the following - i believe there is no valid choice. . .


jyothimenon1,

I believe you need to start over. . . I believe the posted code will not compile (you should verify this).

If the code will not compile, it cannot be executed, so all of the answers are incorrect. . . All of the answers assume the code will run.

As i mentioned in another of your topics, i believe you have mis-quoted some interview questions. If the questions andf answers are not posted exactly as asked in the interview, any answer given by the forum may not be the answer that was expected.
Back to top
View user's profile Send private message
Terry Heinze

Active User


Joined: 14 Jul 2008
Posts: 159
Location: Richfield, MN, USA

PostPosted: Fri Jul 25, 2008 2:36 am    Post subject:
Reply with quote

Original poster is jyothimenon1.
Back to top
View user's profile Send private message
dick scherrer

Global Moderator


Joined: 23 Nov 2006
Posts: 8643
Location: 221 B Baker St

PostPosted: Fri Jul 25, 2008 2:41 am    Post subject: Reply to: which record will be read?
Reply with quote

Hi Terry,

Thanx for the correction - i've patched up the earlier reply icon_redface.gif

d
Back to top
View user's profile Send private message
sedireswarapu

New User


Joined: 18 Jun 2008
Posts: 25
Location: India

PostPosted: Fri Jul 25, 2008 10:29 am    Post subject:
Reply with quote

Dick,

I guessed that no record will be read, assuming that there will be no successful execution of the code. But as you said the posted code has to be verified for the compilation (successful/unsuccessful).
Back to top
View user's profile Send private message
Display posts from previous:   
Post new topic   Reply to topic    IBMMAINFRAMES.com Support Forums -> Interview Questions All times are GMT + 6 Hours
Page 1 of 1