- What does ‘AS’ in AS400 stands for? …
- What is ‘LPAR’? …
- What is library is AS400? …
- Which library gets first loaded into the system when we login? …
- What is the purpose of QGPL library? …
- How can we see all the objects and its sizes in a library? …
- What is source physical file?
AS400 interview questions – Part 1
Rpgle runs in Integrated Language Environment and supports longer file/field names. Coding can be done using built-in functions. RPG stands for Report Program Generator, it is a programming language. It is IBM product and used only in IBM i- based systems. It is developed to replace the punched cards system. The latest version is RPG IV which is suitable for modern development. Having experienced in Rpgle is very helpful in giving preference to you. There are number of positions available across all the locations. Wisdomjobs focus on providing interview questions and answers to help you in clearing the interview with ease. Rpgle interview questions and answers are useful to attend job interviews and get shortlisted for job position. Check out interview questions page to get more information.
AS stands for Application System. These are easy to use computers widely used for small and medium sized organizations. 400 is one such series of AS. The sizes and configurations are different for each variant. The AS/400 family was succeeded in 2000 by the IBM eServer iSeries — high-performance, integrated business servers for mid-market companies. The AS/400 uses the PowerPC microprocessor with its reduced instruction set computertechnology. Its operating system is called the OS/400. The AS/400 has a built-in database. One widely-installed option is Domino (Noteswith a Web browser). Wisdomjobs has interview questions which are exclusively designed for job seekers to assist them in clearing interviews. IBM – AS/400 job interview questions and answers are useful for aspirants who want to move to IBM for job.
We help you to choose the right Python career Path at myTectra. Here are the top courses in Python one can select. Learn More →
AS400 Interview Questions for freshers experienced :-
1. How do you pass parameters in CL? Using PARM keyword.
2. What are the valid user defined data area types? CHAR, NUMERIC and LOGICAL
3. What is Multi-format logical file? Logical which uses fields from two or more physical files.
4. What is the Select and Omit criteria in logical file?
This is used to specify rules for the Selection/Omission of records from a Physical File.
5. Can fields be concatenated INa logical file level? Yes. by using CONCAT keyword
6. When would the ALL keyword be used? Use with Select or Omit, to select/omit records.
7. What are the different types of keywords in display files? File level, Record format level, Field level
8. What is difference between CAT, TCAT, BCAT?
9. What is the difference between SFLCLR and SFLINZ? SFLCLR : It clears the subfile. SFLINZ : First it clears the subfile and initiliazing the numeric variables with zeros and alphanumeric variables with characters.
10. What is the purpose of the following?A CSRLOC (F1ROW F1COL)
Using this record level keyword, you can specify cursor location on an output operation to the record format you are defining. The program sends output after setting the cursor location.
11. How can you detect and handle a record lock situation? If you try to read the locked record, we can get system defined message i. e. , the program will ended abnormally. With the help of File Information Data Structure we can handle record lock situation. Generally it will happen, when the same file of type ” U” used in different programs.
12. What is the difference between array and a multiple occurrence data structure? The values stored in array don’t vary. In the other hand, we can store the Different values in same variables at various stages.
13. What is the use of Header Specification in RPG/400? It identifies by H in column 6, provides informaion about generating and running programs.
14. What are Control level indicators? L1 to L9 used to identify certain fields on control fields and then used to condition which operations are to be processed at detail or total calculation or output time.
15. What is difference between fully procedural file and primary file?
In primary file the records will be read and processed from begining to end. This order is not changed. In fully procedural file the records will be read and processed in any order. The logic flow is controlled by the opcodes in RPG program.
16. What is the difference between externally described file and program described file? The field definitions and descriptions are defined out side of the program in a externally described file. The field definitions and descriptions are defined in side the program in a program described file.
17. What is the purpose of FRCDTA (Force Data) keyword? Use this record-level keyword to immediately display a record format, without waiting for the next input or output/input operation.
18. What is the purpose of SFLFOLD and SFLDROP keywords?
19. What is the difference between array and a multiple occurrence data structure? The values stored in array don’t vary. In the other hand, we can store the different values in same variables at various stages.
20. What is the difference between access path and Dynamic select? Dynamic select occurs whenever the program reads file. But access path occurs before the file is read (but not necessarily). Because access path maintenance performed on the file.
21. Why would you prefer OPNQRYF than logical file? The main difference is : Logical file creates permanent object on the system. OPNQRYF creates temporary access path.
22. What is purpose of declarative statement DEFN? Depends on the factor 1 value it will do two things:
* If the factor1is *LIKE then DEFN opcode defines the new field based on the attributes old field. * If the factor 1 is *NAMVAR then DEFN opcodes defines the field as a data area.
23.Can fields be concatenated INa logical file level? Yes. by using CONCAT keyword
24.When would the ALL keyword be used? Use with Select or Omit, to select/omit records.
25.What are the different types of keywords in display files? File level, Record format level, Field level
26.What is difference between CAT, TCAT, BCAT?
27.What are the different types of messages in CL? Immediate message, Break message, Program message, User message
28.How to trap errors in CL? By using Monitor Message Command (MONMSG)
29.What is the maximum length of a variable name in CL? Maximum 11 characters (including ‘&’)
30.What is the use of Header Specification in RPG/400? It identifies by H in column 6, provides informaion about generating and running programs.
31.When will DUMP and DEBUG opcodes be ignored? If blank is specified in position 15 of H specs.
32.Specify different indicators used in RPG?
33.What are Control level indicators? L1 to L9 used to identify certain fields on control fields and then used to condition which operations are to be processed at detail or total calculation or output time.
34.What is the use of E specification in RPG? Extension Specs describes all record address files, arrays and tables.
35.What is the use of L specs in RPG? Line counter specification can be used to describe printer file to indicate the length of the form and number of lines per page.
36.In which specification the report layout can be defined? O Specification.
37.How many files can be defined in F specs? 50
38.How many printer files can be defined in F specs ? 8
39.A program variable coded in an Embedded SQL statement is referred to as? Host Variable
40.Which of the CL command can be used to determine which logical files are dependent on a specific file? DSPDBR
41.What does DFU program you to do on a record? Insert, Update Delete & File Enquiry.
42.When are the Unique Constraints executed? During Insert.
43.When are the Referential Constraints executed? Insert, Update & Delete.
44.How many triggers can be associated with a file? 6(Maximum)
45.Why is the Declare cursor statement is used for? To define & name the cursor & specify rows to be fetched.
46.What do we can do with the Embedded SQL statements? We can Insert/Update/Delete records, fetch records, fetch values from records into variables.
47.Which CL command is used to trap error messages during program execution? MONMSG
48.Which CL command can be used at program execution to redirect the file named in an RPG program? OVRDBF
49.What is *ISO date format? YYYY-MM-DD for other formats refer to IBM manual or ERIS document.
50.What are the important factors in Error message subfile ? We must define error message record format (SFLMSG). And a Program Queue. (PGMQ) and Record format is associated to a line number.
51.How to define to define a Hidden filed in DSPF ? Define a filed in a DSPF of use HIDDEN.(H)
52.How To get the cursor position? With the help of RTNCSRLOC keyword, here we need to define a field to get row and column. Length of variable should be 5,0 fixed We can specify *FILED for filed *REC for Record on which a key is pressed.
53.What is OVERLAY? It allows a record format to be displayed on screen retaining the previous displayed record formats.
54.What key word is used when screen is re-display? RSTDSP is a parameter to be specified at compile time for display file.
55.Command Attention key and Command Function Key ? With the help of Command attention key we can pass only the indicator status to program not the data from screen. While command function key passes indicator status as well as a data from screen to program.
56.How to validate input values in Display file ? With the help of Validity check key words VALUE, RANGE, COMP
57.How can see logical file based on which physical file and vice versa DSPDBR
58.How can u check no of records in a file DSPFD
59.How do u compile RPGLE program Either thru 15 or crtrpgmod
60.Is module executable No You need to create an RPG prog to run the module.
61.What is SFLPAG and SFLSIZ ?
62.What are the three line types in RLU ? Report line, Filler line & Sample line.
63.What is the function of RLU ? To design & prototype a report.
64.List some of the commonly used commands for debugging STRDBG(for batch jobs), STRISDB.
65.Define the RCVF command? RCVF command used to receive the records either from the data base file or device file.
66.Define the purpose of the %SST function? To extract the information from the specified string.
67.Define the purpose of the *CAT function? To concatenate the two strings into a one string.
68.Define the purpose of the *BCAT function? To concatenate the two strings by placing a single blank in a resultant.
69.Describe the difference between the DOWxx and DOUxx operations?
70.What is the difference between Packed decimal and Zoned decimal?
71.What is default data type (if you define decimals ‘0’) in Physical file? Packed decimal
72.What is default data type for the fields(sub fields) defined in data structures in RPG? Zoned decimal
73.What is the difference between GOTO & EXSR? EXSR is a conditional branching while a GOTO is an unconditional branching.
74.Difference between CA & CF? CA: – It does not retains the value into the buffer memory. CF: – It retains the value into the buffer memory.
75.What does EXFMT does? Write & Read.
76.What is term CUA , SAA? Common User Access System Application Architecture
77. Define a Job Queue? Job queues are queues of batch jobs waiting to be processed.
78. Define a Output Queue? Output queues are queues of jobs waiting to be printed.
79. What is acronym of RPG? Report Program Generator
80. What is the native language of AS/400? RPG/400
81. Why RPG/400 is famous? * Easy to code and analyze. * Supports externally described files.
82. How do you use exceptional write in C specs? Using EXCPT opcode.
83. What does the opcode FREE do? The FREE operation removes a program from the list of activated programs, frees static storage and ensures program initialization (first cycle processing) the next time program is called. It does not close file or unlock data are
84. What does opcode POST do? Puts information in INFDS.
85.A Query can be displayed without saving it? True
86.Which are the Query selection criteria, which can be given in a Query? LIST
87.To add a file to the ‘File Selection’ option of a Query, the function key to be pressed is? F9
88.A query can be run in which mode? Batch & Interactive
89.What is the values SQLCOD when there is an error in fetching the records specified in the select statement? -ve value
90.A file cannot have more than 1 unique key? False
91.DLCOBJ command is mandatory for removing lock on any object? False
92.What is a Journal? A Journal is an object used primarily to record changes to data in a PF.
93.Which are the DB2 tools to protect Integrity of the database? Journaling & Commitment Control, Referential Integrity Embedded SQL & Object/Record Locks.
94.How many types of display are available on As/400 for user interaction? The 4 Types they are Entry, Menu, Information & List Display.
95.Which is the Primary Editor of As/400? Source Entry Utility (SEU).
96.What are the basic features of SEU? Prompt depending upon type, shows right hand side date & left hand side the line number.
97.What are the different methods to access SEU? Use the Start Source Entry Utility command (STRSEU) Option 8 from STRPGMMNU Through Program Development Manager (PDM)
98.Which are the member types which SEU supports? RPG, CL, PF, LF, PRTF & DSPF.
99.In which Specs Arrays, Tables & Constants are defined? In I Specs.
100.What is a Spool File? Printed output items placed in an output queue are known as spooled files.
FAQ
What is Qgpl AS400?
Which library gets first loaded into the system when we login in AS400?
A series of RPG videos along with video consulation service to learn as400 programming.
Which of the following is are available on AS 400 for user interaction?