Murach Java Ch. 1
Which of the following is not true of using a IDE to develop Java programs? A. It's harder to detect syntax errors B. It's harder to make mistakes when entering code C. It's easier to debug your programs D. It's easier to compile and run your programs
A. It's harder to detect syntax errors
Which of the following are two types of desktop applications that you can develop in java? A. console and GUI B. console and servlet C. console and web D. GUI and servlet
A. console and GUI
Compared to console applications, GUI applications
require more java skills, are more user friendly, are more intuitive
A syntax error occurs when
there's a syntax error in a Java statement
Which of the following is not a benefit of a typical IDE for Java? A. The IDE helps you complete code as you type B. The syntax of your code is checked as you enter it. C. The debugging feature makes it easier for you to find bugs in your application D. Your code compiles and runs faster
D. Your code compiles and runs faster
Which of the following is true? A. In contrast to java, C# requires programmers to manage almost all memory operations B. C++ programs have always run more slowly than Java programs C. Only two of the three answers given are correct D. All three of the answers given are correct E. Java programs can run on different platforms like windows and Unix without being recompiled
E. Java programs can run on different platforms like windows and Unix without being recompiled
In an IDE what tool do you use to enter and edit source code?
code editor
When you run a project most IDE's automatically
compile the project
In most modern implementations of the JVM, bytecode is
input to the JIT (just in time) compiler
To achieve platform independence, the Java virtual machine
interprets the bytecode
