The (1) program means a program written in a high-level language. It is generally translated to an (2) program, which is in a form. directly understandably by the computer.The translation is usually done by a program called (3).A.assembleB.webC.CD.source

The (1) program means a program written in a high-level language. It is generally translated to an (2) program, which is in a form. directly understandably by the computer.

The translation is usually done by a program called (3).

A.assemble

B.web

C.C

D.source


相关考题:

● (71) means that a program written for one computer system can be compiled and run on another system with little or no modification.(71)A. PortabilityB. ReliabilityC. AvailabilityD. Reusability

The program which gives a computer a mind of his own can never be written by human beings.()

An application software is any program(68)to perform. a specific function directly for the user or, in some cases, for another application program.A.designB.designingC.designedD.praticed

The term“(67)program”means a program written in high-level language.A.compilerB.executableC.sourceD.object

______means that a program written for one computer system can be compiled and run on another system with little or no modification.A.PortabilityB.ReliabilityC.AvailabilityD.ReusabilityA.B.C.D.

The(74) program is generally translated to an object program, which is in a form. directly understandably by the computer.A.transferB.assembleC.sourceD.compile

Programmers test a program by running it to ensure that the(74)are correct and that the program produces the desired outcome. If errors do occur, the programmer must make the appropriate change and recheck the program until it produces the correct results. This(75)is called testing and debugging.A.commandsB.softwareC.instructionsD.measure

The term "______ program" means a program written in high-level language.A.compilerB.executableC.sourceD.object

A(68)program is usually described as a program written in high-level language.A.compilerB.executableC.sourceD.object

A(72)translates a computer program written in a human-readable computer language into a form. that a computer can exec utA.compilerB.linkerC.assemblerD.application

A computer program, orjust a program, is a sequence of (75) ,written to performa specified task with a computer.A.languagesB.instructionsC.programsD.functions

A(74)translates a computer program written in a human-readable computer language into a form. that a computer can executablA.compilerB.linkerC.assemblerD.application

The( )program is generally translated to an object program, which is in a form directly understandably by the computer.A. transferB. assembleC. sourceD. Compile

Which of the following locations would hold 32-bit application files in Windows Vista 64-bit?()A、C:/Program Files/B、C:/Program Files (x86)/C、C:/Program Files 32/D、C:/Program files 32-bit/

Which of the following is TRUE about the ate program?()A、When running ate for the first time it will prompt for all the required information and configure all the required devicesB、The program is used by cu to communicate to a remote systemC、The program is used for remote communications between the host and a remote system using a modem or null modem via a tty portD、The program ate calls cu to communicate with the remote system

What will be the result of attempting to run the following program?()   public class Qaa75 {   public static void main(String args[]) {   String[][][] arr = {   { {}, null },   { { "1", "2" }, { "1", null, "3" } },   {},   { { "1", null } }  };   System.out.println(arr.length + arr[1][2].length);   }   }  A、The program will terminate with an ArrayIndexOutOfBoundsException.B、The program will terminate with a NullPointerException.C、4 will be written to standard output.D、6 will be written to standard output.E、7 will be written to standard output.

An administrator is implementing a new data retention program for the company. Which of the following is the MOST important consideration as the new program is created? ()A、 Awareness of company policy requirementsB、 Differentiating between archiving and backup processesC、 Awareness of potential legal requirementsD、 Ensuring that the backups for the retention program cover key business areas

Which narrative regarding loading software is incorrect?()A、The approved Loading Program could substituted the approved Loading Manual and/or Trim and Stability BookletB、A Loading Program is required to have General Approval by classification Society prior to being considered for use on a specific shipC、Following a satisfactory installation test on board the ship the Surveyor will issue a Program Installation TestD、A Loading Program may be provided as a classification requirement or as an Owner’s option

A user can no longer launch their word processing program. The program worked fine yesterday.Which of the following options could BEST be used to fix the word processing program?()A、Safe ModeB、Automated System RecoveryC、Last Known Good ConfigurationD、System Restore

Which of the following objects can be directly referenced by a window object?()A、 Schedule objectB、 Program objectC、 Job objectD、 Resource planE、 Resource consumer group

单选题What will be the result of attempting to run the following program?()   public class Qaa75 {   public static void main(String args[]) {   String[][][] arr = {   { {}, null },   { { "1", "2" }, { "1", null, "3" } },   {},   { { "1", null } }  };   System.out.println(arr.length + arr[1][2].length);   }   }AThe program will terminate with an ArrayIndexOutOfBoundsException.BThe program will terminate with a NullPointerException.C4 will be written to standard output.D6 will be written to standard output.E7 will be written to standard output.

单选题The author mentions “trousers” in paragraph 1 most likely in order to _____.Amake a comparison between the program target and the program audienceBemphasize the similarities between the market segment and the program targetCprovide an example of the way three groups of consumers are affected by a marketing programDclarify the distinction between the market segment and the program target

单选题Which program helps improve thinking skills?ASports Program.BArt ProgramCDevelopment ProgramDWoodshop Program

单选题What will be the result of attempting to compile and run the following program?()   public class Q28fd {   public static void main(String args[]) {   int counter = 0;   l1:   for (int i=10; i i) break l2;   if (i == j) {   counter++;   continue l1;   }   }   counter--;   }   System.out.println(counter);  }   }AThe program will fail to compile.BThe program will not terminate normally.CThe program will write 10 to the standard output.DThe program will write 0 to the standard output.EThe program will write 9 to the standard output.

单选题It can be inferred from the passage that which of the following is true for most consumer-goods markets?AThe program target and the program audience are not usually identical.BThe program audience and the market segment are usually identical.CThe market segment and the program target are usually identical.DThe program target is larger than the market segment.

单选题What is the result( )?A  The program prints “0”.B  The program prints “4”.C  The program prints “8”.D  The program prints “12”.E  The code does not compile.

单选题What is the result()?A  The program runs and prints “ I = 1 , j = 0”B  The program runs and prints “ I = 1 , j = 4”C  The program runs and prints “ I = 3 , j = 4”D  The program runs and prints “ I = 3 , j = 0”E  An error at line 4 cause compilation to fail.F  An error at line 7 cause compilation to fail.