Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Questions | Answers | Discussions | Knowledge sharing | Communities & more.
A compiler for a high-level language that runs on one machine and produces code for a different machine is called is
That's why the statement "The compiler for a high-level language that runs on one machine and produces code for another machine" refers to a cross compiler.
That’s why the statement “The compiler for a high-level language that runs on one machine and produces code for another machine” refers to a cross compiler.
See lessA hardware device that is capable of executing a sequence of instructions, is known as
A processor handles all the instructions from hardware and software. A processor is also the brain and powerhouse, or engine of a computer, that executes millions of processes.
A processor handles all the instructions from hardware and software. A processor is also the brain and powerhouse, or engine of a computer, that executes millions of processes.
See lessThe function(s) performed by the paging software is (are)
Paging works by writing data to, and reading it from, secondary storage for use in primary storage. Paging is a basic function in memory management for a computer's operating system (OS) as well -- this includes Windows, Unix, Linux and macOSs.
Paging works by writing data to, and reading it from, secondary storage for use in primary storage. Paging is a basic function in memory management for a computer’s operating system (OS) as well — this includes Windows, Unix, Linux and macOSs.
See lessWhich of following is/are the advantage(s) of modular programming?
Advantages of modular programming Code is easier to read. ... Code is easier to test. ... Easily find things later. ... Reusability without bloat. ... Single source for faster fixes. ... Easier, lower risk updates. ... Easier refactoring. ... Easier to collaborate.
Advantages of modular programming
See lessCode is easier to read. …
Code is easier to test. …
Easily find things later. …
Reusability without bloat. …
Single source for faster fixes. …
Easier, lower risk updates. …
Easier refactoring. …
Easier to collaborate.
In analyzing the compilation of PL/I program, the term "Syntax analysis" is associated with
The syntax analysis phase then checks whether the token sequence conforms to the grammar rules of the PL/I language. If any syntax errors are found, the compiler will generate error messages. After the syntax analysis, the compiler performs semantic analysis to check for any logical errors in the coRead more
The syntax analysis phase then checks whether the token sequence conforms to the grammar rules of the PL/I language. If any syntax errors are found, the compiler will generate error messages. After the syntax analysis, the compiler performs semantic analysis to check for any logical errors in the code.
See lessIn which addressing mode, the effective address of the operand is generated by adding a constant value to the contents of register?
Base indexed mode : The effective address of the operand is generated by adding a constant value to the content of a register.
Base indexed mode : The effective address of the operand is generated by adding a constant value to the content of a register.
See lessWhich of the following can be accesses by transfer vector approach of linking?
An external subroutine is a sequence of statements that perform
An external subroutine is a sequence of statements that perform
See lessIf special forms are needed for printing the output, the programmer specifies these forms through?
If a special forms are needed for printing the output, the programmer specifies these through JCL. JCL is used in a mainframe environment to act as a communication between a program (Example: COBOL, Assembler) and the operating system. In a mainframe environment, programs can be executed in batch anRead more
If a special forms are needed for printing the output, the programmer specifies these through JCL.
JCL is used in a mainframe environment to act as a communication between a program (Example: COBOL, Assembler) and the operating system. In a mainframe environment, programs can be executed in batch and online mode. Example of a batch system can be processing the bank transactions through a VSAM (Virtual Storage Access Method) file and applying it to the corresponding accounts.
Batch and online processing differ in the aspect of input, output and program execution request. In batch processing, these aspects are fed into a JCL which is in turn received by the Operating System.
A job is a unit of work which can be made up of many job steps. Each job step is specified in a Job Control Language (JCL) through a set of Job Control Statements.
See lessThe higher versions of the operating systems are so written that programs designed for earlier versions can still be run. What is it called
Upward compatibility is the higher version of the operating system that are written programs designed such that earlier version can still be run.
Upward compatibility is the higher version of the operating system that are written programs designed such that earlier version can still be run.
See lessIn which of the storage placement strategies a program is placed in the smallest available hole in the main memory?
Best Fit algorithm allocates the smallest available hole to the process, worst Fit allocates the biggest hole to the process, and First fir allocates the first hole.
Best Fit algorithm allocates the smallest available hole to the process, worst Fit allocates the biggest hole to the process, and First fir allocates the first hole.
See less