AS 400 Interview Questions and Answers
Here you can find AS 400 Interview Questions and Answers.
Why AS 400 Interview Questions and Answers Required?
In this AS 400 Interview Questions and Answers section you can learn and practice AS 400 Interview Questions and Answers to improve your skills in order to face technical
inerview by IT companies. By Practicing these interview questions, you can easily crack any AS 400 interview.
Where can I get AS 400 Interview Questions and Answers?
AllIndiaExams provides you lots AS 400 Interview Questions and Answers with proper explanation. Fully solved examples with detailed answer description. All students,
freshers can download AS 400 Interview Questions and Answers as PDF files and eBooks.
How to solve these AS 400 Interview Questions and Answers?
You no need to worry, we have given lots of AS 400 Interview Questions and Answers and also we have provided lots of FAQ's to quickly answer the questions in the
AS 400 technical interview.
AS400 Interview Questions and Answers
What does ‘AS’ in AS400 stands for?
Application system.
AS400 Interview Questions and Answers
What is ‘LPAR’?
OS/400 Version 4, introduced a feature LPAR (Logical PARtitioning) which facilitates running multiple operating systems simultaneously on one IBM System i unit ensuring
that one OS doesn’t interfere other’s system resources/memory.
AS400 Interview Questions and Answers
What is library is AS400? What are the types of library?
When we execute a command or call a program, the AS/400 must know where to find the command or program and the answer is library.
A Library is a collection of objects. QSYS is the only library that contains other library.
QSYS is the root library where the entire user defined/ system defined library is created. System supplied libraries begin with the letter "Q" or "#".
Library list types:
System library: All IBM supplied library e.g. QSYS, QHLPSYS, QUSRSYS…
Product Library: Whenever Ibm product is used it is added to the library automatically and is removed itself when the job completes.
Current Library: Current library is the working library i.e. all the work done by you is stored in current library.
User Library: Non-IBM supplied i.e. created by the user.
AS400 Interview Questions and Answers
Which library gets first loaded into the system when we login?
QSYS
AS400 Interview Questions and Answers
Is QGPL a user library or system library?
It’s a user library.
AS400 Interview Questions and Answers
How can we see all the objects and its sizes in a library?
By using the command DSPLIB.
AS400 Interview Questions and Answers
What is source physical file?
Source physical file is a file which contains the sources of different types of objects.
There can be up to 32768 members. Source physical file is an object.
But the source member is not an object.
When we compile the member, the object is created for that source. Command used is CRTSRCPF.
AS400 Interview Questions and Answers
How to see all members of a file?
By using the command shown below:
DSPFD FILE(IROBO1/QRPGLESRC) TYPE(*MBRLIST)
AS400 Interview Questions and Answers
How to see all record formats used in a file?
By using the command shown below:
DSPFD FILE(IROBO1/QRPGLESRC) TYPE(*RCDFMT)
AS400 Interview Questions and Answers
How to change the record size of a physical file?
By using the command below:
CHGPF FILE(AMITNEM/OBJ) SRCFILE(AMINEM/QDDSSRC) SRCMBR(OBJ_SRC)