网友您好, 请在下方输入框内输入要搜索的题目:

题目内容 (请给出正确答案)

The part of the computer that runs the program is known as(71)

A.sofiware

B.memory

C.CPU

D.storage


参考答案

更多 “ The part of the computer that runs the program is known as(71)A.sofiwareB.memoryC.CPUD.storage ” 相关考题
考题 ● (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

考题 Had I known about this computer program, a huge amount of time and energy .A.would have been savedB.had been savedC.will be savedD.was saved

考题 The Web Browser is a simple program that enables a computer to(71)and view pages on the Web.A.downfallB.downgradeC.downwardD.download

考题 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

考题 试题(71)Which of the following would require real-time processing?(71)(71)A.Playing a computer gameB.Executing a program that predicts the state of economyC.Printing labelsD.Listening the music

考题 Digital computer is controlled by internally stored programs and(66) of using common storage for all or part of a program and also for all or part of the data necessary for the execution of the programs; executing user-written or user-designated programs; performing user-designated manipulation of digitally represented discrete data, including.(67) operations and logic operations; and executing programs that(68) themselves during their execution.Analog computer's operations are analogous to the(69) of another system and that accepts, processes, and produces analog data.(70) computer integrates analog computer components and digital computer components by interconnection of digital-to-analog converters and analog-to-digital converters.A.qualifiedB.competentC.capableD.able

考题 The most accurate and most boring way to(105)Java is that it is a new computer programming language developed by Sun Microsystems that creates(106)independent programs that can be distributed and nm remotely. To run Java programs, a computer must have a Java interpreter. Currently(107)Java programs are small "applets" that are(107)as part of web pages.When you use a Java(108)browser to view a Web page that includes a Java applet, the browser loads the applet onto your computer through your modem or network. Then the Java interpreter runs the applet, which could include animation or sound, on your computer rather than transmitting the code bit by bit over Internet. A few thousand bytes of Java code can tam into a powerful program on your computer.So an applet could include(109)with Java interpreter.A.commandB.commentC.describeD.discover

考题 Password is a secret series of(69)that enables a user to access a file, computer, or program. On multi-user systems, each user must enter his or her password before the computer will respond to(70). The password helps ensure that(71)users do not access the computer. In addition, data files and programs may require a password.A.symbolB.signC.charactersD.characteristic

考题 Inside the computer, the operation system(of another software module called a data communication(71))must decide which program will get control next. Each program remember, is associated(72). a particular front -end port. If a program's data have not yet reached its front - end buffer, there is no point giving that program control. Thus the data communication monitor sends its own(73)signal to the front -end devices next port is polled. Note that the(74)computer speed. The computer never has to wait for a terminal or a communication line. Instead, it is the expressive front - end processor that waits for the slower system(75)to respond.A.memoryB.controlC.monitorD.charge

考题 Your computer runs Microsoft Windows XP Professional. You share your computer with two other co-workers. You purchase a new computer. You install Microsoft Windows Vista on the new computer. You need to migrate the following content from the old computer to the new computer:All system and program settingsAll users settingsOnly the content in the C:\Appdata folderWhich tool should you use?()A.AB.BC.CD.D

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

考题 A computer virus is a computer program that is created to make and spread(71)of itself.A.programsB.virusC.copiesD.files

考题 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

考题 A ( ) translates a computer program written in a human-readable computer language into a form that a computer can execute.A.compiler B.linker C.assembler D.application

考题 A computer ( )is a program that maliciously causes unwanted behavior on a computer.A.software B.application C.virus D.process

考题 A______translates a computer program written in a human-readable computer language into a form that a computer can execute.A.compiler B.linker C.assembler D.application

考题 public class ForBar {   public static void main(String args) {   int i = 0, j = 5;   tp: for (;;) {   i ++;   for(;;)   if(i  --j) break tp;   }   system.out.printIn(“i = ” + i + “, j = “+ j);   }   }   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 causes compilation to fail.F、 An error at line 7 causes compilation to fail.

考题 public class X {   public static void main (Stringargs) {   string s = new string (“Hello”);   modify(s);   System.out.printIn(s);   }   public static void modify (String s) {   s += “world!”;   }   }   What is the result?() A、The program runs and prints “Hello”B、An error causes compilation to fail.C、The program runs and prints “Hello world!”D、The program runs but aborts with an exception.

考题 You have a computer that runs Windows XP Professional. The computer is part of a workgroup. You need to configure advanced NTFS permissions on a folder stored on the computer. What should you do first? ()A、Run cipher.exe.B、Disable simple file sharing.C、Enable folder encryption for the folder.D、Request that an administrator adds your user account to the local Power Users group.

考题 Your computer runs Microsoft Windows XP Professional. You share your computer with two other co-workers.  You purchase a new computer. You install Microsoft Windows Vista on the new computer.  You need to migrate the following content from the old computer to the new computer: All system and program settings  All users settings  Only the content in the C:///Appdata folder  Which tool should you use? ()A、File and Settings Transfer wizardB、Application Compatibility toolkitC、Windows Automated Installation toolkitD、Microsoft Windows Easy Transfer wizard

考题 单选题public class ForBar {   public static void main(String args) {   int i = 0, j = 5;   tp: for (;;) {   i ++;   for(;;)   if(i  --j) break tp;   }   system.out.printIn(“i = ” + i + “, j = “+ j);   }   }   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 causes compilation to fail.F  An error at line 7 causes compilation to fail.

考题 单选题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.

考题 单选题What is the result?()A  The program runs and prints nothing.B  The program runs and prints “Equal”.C  An error at line 5 cause compilation to fail.D  The program runs but aborts with an exception.

考题 单选题You run a Windows Defender scan on your computer.  You notice a valid program listed in Quarantined Items.  You need to use this program on your computer.  What should you do?()A Reinstall the application to another location.B Restore the program from the Quarantined Items list.C Remove the program from the Quarantined Items list.D Repair the program from the Programs option in Control Panel.

考题 单选题public class X {   public static void main (Stringargs) {   String s1 = new String (“true”);   Boolean b1 = new Boolean (true);   if (s2.equals(b1)) {   System.out.printIn(“Equal”);   }   }   }   What is the result? ()A  The program runs and prints nothing.B  The program runs and prints “Equal”C  An error at line 5 causes compilation to fail.D  The program runs but aborts with an exception.

考题 单选题public class X {   public static void main (String[]args)   {   string s = new string (“Hello”);   modify(s);   System.out.printIn(s);   }   public static void modify (String s)  {   s += “world!”;      }   }      What is the result?()A  The program runs and prints “Hello”B  An error causes compilation to fail.C  The program runs and prints “Hello world!”D  The program runs but aborts with an exception.