Mainframe Ch 3 & 6

Approved & Edited by ProProfs Editorial Team
The editorial team at ProProfs Quizzes consists of a select group of subject experts, trivia writers, and quiz masters who have authored over 10,000 quizzes taken by more than 100 million users. This team includes our in-house seasoned quiz moderators and subject matter experts. Our editorial experts, spread across the world, are rigorously trained using our comprehensive guidelines to ensure that you receive the highest quality quizzes.
Learn about Our Editorial Process
| By Ajeff
A
Ajeff
Community Contributor
Quizzes Created: 39 | Total Attempts: 54,182
Questions: 16 | Attempts: 2,701

SettingsSettingsSettings
Mainframe Ch 3 & 6 - Quiz

Questions and Answers
  • 1. 

    A few simple kinds of jobs can be defined by JCL that consists solely of a few JOB statements.

    • A.

      True

    • B.

      False

    Correct Answer
    B. False
    Explanation
    JCL (Job Control Language) is used for defining and controlling jobs on mainframe computers. A few simple kinds of jobs can indeed be defined by JCL that consists solely of a few JOB statements. Therefore, the statement is true.

    Rate this question:

  • 2. 

    To indicate that a JCL statement is continued on the next line, ______________.

    • A.

      Place a space followed by a hyphen at the end of the line being continued.

    • B.

      Omit the leading // from each continuation line.

    • C.

      Place a comma (,) at the end of the line being continued and omit the leading // from each continuation line.

    • D.

      Place a comma (,) at the end of the line being continued and start the continuation line with // followed by at least one space.

    Correct Answer
    D. Place a comma (,) at the end of the line being continued and start the continuation line with // followed by at least one space.
    Explanation
    To indicate that a JCL statement is continued on the next line, you need to place a comma (,) at the end of the line being continued and start the continuation line with // followed by at least one space. This format allows the JCL interpreter to understand that the statement is being continued and should be treated as a single logical line. The comma (,) indicates that the line is not complete and the // followed by a space indicates the continuation of the statement.

    Rate this question:

  • 3. 

    SDSF stands for ___________.

    • A.

      SYSTEM DATA SEARCH FEATURE

    • B.

      SORT DATA SEQUENTIAL FACILITY

    • C.

      SYSTEM DISPLAY SEQUENCE FUNCTION

    • D.

      SYSTEM DISPLAY and SEARCH FACILITY

    Correct Answer
    D. SYSTEM DISPLAY and SEARCH FACILITY
    Explanation
    The correct answer is "SYSTEM DISPLAY and SEARCH FACILITY". SDSF is a mainframe utility program used for displaying and managing the system and job output. It allows users to display and search for specific information within the system. Therefore, "SYSTEM DISPLAY and SEARCH FACILITY" is the most appropriate explanation for the acronym SDSF.

    Rate this question:

  • 4. 

    Dynamic address translation, or DAT, is defined as:

    • A.

      The process of translating a channel address into the corresponding FICON address.

    • B.

      Translating program messages into foreign languages.

    • C.

      The process of translating a real address during a storage reference into the corresponding virtual address.

    • D.

      The process of translating a virtual address during a storage reference into the corresponding real address.

    • E.

      None of the above.

    Correct Answer
    D. The process of translating a virtual address during a storage reference into the corresponding real address.
    Explanation
    Dynamic address translation (DAT) is the process of translating a virtual address during a storage reference into the corresponding real address. This is typically done by the operating system or hardware to map virtual addresses used by programs into physical addresses in memory. By using DAT, the system can efficiently manage memory and allow multiple programs to share the same physical memory without interfering with each other. This translation is crucial for ensuring that programs can access the correct data in memory and for providing memory protection and security.

    Rate this question:

  • 5. 

    The mainframe developer must pay close attention to paging issues as he/she designs and develops a program.

    • A.

      True

    • B.

      False

    Correct Answer
    B. False
    Explanation
    The statement is false because mainframe developers do not need to pay close attention to paging issues while designing and developing a program. Paging is a memory management technique used by the operating system, and it is the responsibility of the operating system to handle paging issues. Mainframe developers focus on writing efficient and optimized code for their programs, but they do not directly deal with the implementation or management of paging.

    Rate this question:

  • 6. 

    Mainframe auxiliary storage is tightly coupled with the processor itself, whereas mainframe central storage is located on (comparatively) slower, external disk and tape drives.

    • A.

      True

    • B.

      False

    Correct Answer
    B. False
    Explanation
    The given statement is incorrect. Mainframe auxiliary storage, also known as secondary storage, is located on slower external disk and tape drives, while mainframe central storage, also known as primary storage or main memory, is tightly coupled with the processor and is much faster than auxiliary storage.

    Rate this question:

  • 7. 

    For the processor to execute a program instruction, both the instruction and the data it references must be in central storage.

    • A.

      True

    • B.

      False

    Correct Answer
    A. True
    Explanation
    The statement is true because in order for the processor to execute a program instruction, both the instruction itself and the data it references must be present in central storage. This is because the processor needs to access the instruction and the data from memory in order to perform the necessary calculations and operations. Without the instruction and the data in central storage, the processor would not be able to execute the program correctly.

    Rate this question:

  • 8. 

    Before an instruction can executes, the entire program needs to be in central storage.

    • A.

      True

    • B.

      False

    Correct Answer
    B. False
    Explanation
    This statement is false because in most programming languages, instructions are executed sequentially, meaning that the program does not need to be entirely in central storage before an instruction can execute. Instead, instructions are fetched from memory one at a time and executed immediately. This allows for efficient use of memory as only the necessary instructions and data are loaded into central storage as needed.

    Rate this question:

  • 9. 

    Which of the following JCL sequences correctly illustrates concatenation?

    • A.

      //DATAIN DD DISP=OLD,DSN=MY.INPUT1, // DD DISP=OLD,DSN=MY.INPUT2, // DD DISP=SHR,DSN=YOUR.DATA

    • B.

      //DATAIN DD DISP=OLD,DSN=MY.INPUT1 // DD DISP=OLD,DSN=MY.INPUT2 // DD DISP=SHR,DSN=YOUR.DATA

    • C.

      //DATAIN DD DISP=OLD,DSN=MY.INPUT1 //DATAIN DD DISP=OLD,DSN=MY.INPUT2 //DATAIN DD DISP=SHR,DSN=YOUR.DATA

    • D.

      //DATAIN DD DISP=OLD,DSN=MY.INPUT1, //DATAIN DD DISP=OLD,DSN=MY.INPUT2, //DATAIN DD DISP=SHR,DSN=YOUR.DATA

    Correct Answer
    B. //DATAIN DD DISP=OLD,DSN=MY.INPUT1 // DD DISP=OLD,DSN=MY.INPUT2 // DD DISP=SHR,DSN=YOUR.DATA
    Explanation
    The correct answer is //DATAIN DD DISP=OLD,DSN=MY.INPUT1 // DD DISP=OLD,DSN=MY.INPUT2 // DD DISP=SHR,DSN=YOUR.DATA. This JCL sequence correctly illustrates concatenation because it specifies multiple input files using the same DD name (DATAIN) with each file separated by a comma. The DISP parameter is used to specify the disposition of each file, such as whether it is to be opened for reading (DISP=OLD) or shared (DISP=SHR). The DSN parameter is used to specify the dataset name for each input file.

    Rate this question:

  • 10. 

    Which of the following JCL statement shows a procedure named CCLG being executed?

    • A.

      //STEP1 EXEC PGM=CCLG

    • B.

      //STEP1 EXEC PROCEDURE=CCLG

    • C.

      //STEP1 EXEC CCLG

    • D.

      //CCLG EXEC PROC

    Correct Answer
    C. //STEP1 EXEC CCLG
    Explanation
    The correct answer is "//STEP1 EXEC CCLG". This JCL statement specifies that the procedure named CCLG is being executed in the STEP1 of the job. It is the correct syntax to execute a procedure in JCL. The other options are incorrect because they either use the wrong keyword or syntax to execute a procedure.

    Rate this question:

  • 11. 

    To indicate that a JCL statement is continued on the next line, ______________.

    • A.

      Place a space followed by a hyphen at the end of the line being continued.

    • B.

      Omit the leading // from each continuation line.

    • C.

      Place a comma (,) at the end of the line being continued and omit the leading // from each continuation line.

    • D.

      Place a comma (,) at the end of the line being continued and start the continuation line with // followed by at least one space.

    Correct Answer
    D. Place a comma (,) at the end of the line being continued and start the continuation line with // followed by at least one space.
    Explanation
    To indicate that a JCL statement is continued on the next line, you should place a comma (,) at the end of the line being continued and start the continuation line with // followed by at least one space. This format is used to ensure that the JCL statement is properly continued and interpreted by the system. The comma (,) at the end of the line indicates that the statement is not complete and needs to be continued, while the // followed by a space at the beginning of the continuation line marks it as a continuation of the previous line.

    Rate this question:

  • 12. 

    Mainframe pages are ______ bytes in size.

    • A.

      512

    • B.

      1024

    • C.

      2048

    • D.

      4096

    • E.

      8192

    Correct Answer
    D. 4096
    Explanation
    Mainframe pages are typically 4096 bytes in size. This is a common page size used in mainframe systems. The page size refers to the amount of memory that can be addressed and accessed at one time. A larger page size allows for more efficient memory management and reduces the overhead of managing multiple smaller pages.

    Rate this question:

  • 13. 

    Auxiliary storage is more expensive than central storage.

    • A.

      True

    • B.

      False

    Correct Answer
    B. False
    Explanation
    The given statement is false. Auxiliary storage, such as external hard drives or cloud storage, is generally less expensive than central storage, which refers to the main memory or internal storage of a computer system. Auxiliary storage is used for long-term storage of data and is typically cheaper because it offers larger storage capacities at lower costs per unit. Central storage, on the other hand, is faster and more expensive due to its proximity to the processor and its role in actively running programs and storing temporary data.

    Rate this question:

  • 14. 

    Mainframe auxiliary storage is tightly coupled with the processor itself, whereas mainframe central storage is located on (comparatively) slower, external disk and tape drives.

    • A.

      True

    • B.

      False

    Correct Answer
    B. False
    Explanation
    The explanation for the given answer, False, is that mainframe auxiliary storage, also known as secondary storage, is not tightly coupled with the processor itself. Instead, it is located on slower external disk and tape drives. On the other hand, mainframe central storage, also known as primary storage or main memory, is directly connected to the processor and provides faster access to data.

    Rate this question:

  • 15. 

    A few simple kinds of jobs can be defined by JCL that consists solely of a few JOB statements.

    • A.

      True

    • B.

      False

    Correct Answer
    B. False
    Explanation
    JCL (Job Control Language) is a scripting language used on IBM mainframe operating systems to instruct the system on how to run batch jobs. A few simple kinds of jobs can indeed be defined by JCL that consists solely of a few JOB statements. Therefore, the correct answer is False.

    Rate this question:

  • 16. 

    One of the disadvantages of JCL is that if the name of a file changes, all programs accessing that file must be changed and recompiled in order to access the file.

    • A.

      True

    • B.

      False

    Correct Answer
    B. False
    Explanation
    The statement is false because JCL (Job Control Language) is a scripting language used for controlling batch processing in mainframe operating systems. It is not responsible for managing file names or their changes. Programs accessing files may need to be modified if the file structure or format changes, but not necessarily if the file name changes. Therefore, the given statement is incorrect.

    Rate this question:

Quiz Review Timeline +

Our quizzes are rigorously reviewed, monitored and continuously updated by our expert board to maintain accuracy, relevance, and timeliness.

  • Current Version
  • Mar 21, 2023
    Quiz Edited by
    ProProfs Editorial Team
  • Oct 17, 2011
    Quiz Created by
    Ajeff
Back to Top Back to top
Advertisement