rolled over
How does using a debugger in an integrated development environment benefit an individual who is writing code
A debugger walks through code in a systemic and automatic manner to find bugs, making the process less time consuming.
A Java statement can be thought of as which one of the following
An instruction
What type of statement is the following(pic missing)
Assignment
The static keyword indicates that the main method is a ___ method
Class method
Which of the following is NOT a characteristic of pseudocode
Follows the syntax of a programming language
Which of the following is NOT a typical component of an Integrated Development Environment
Grammar checking
What does IDE stand for
Integrated Development Environment
Which of the following translates and executes program code line by line rather than the whole program in one step
Interpreter
What does JDK stand for
Java Development Kit
When is the Requirements Document finished
Not until the customer agrees that it accurately describes everything he wants the program to do.
In the statement, what does the public statement mean
Other objects can use/call the method
Which of the following is an interpreted programming language
Perl
Which of the following is NOT an aspect of pseudocode
Provides detailed comments on the logic of the code
What is a flowchart symbol
Specific shapes used to create a visual representation of a program.
Which of the following describes programming
Telling a computer what to do, Describing a problem in code so that the computer can give the answer to that problem, Giving a computer instructions so it can solve a problem All of these answers are correct.
What are the two most important skills a programmer must have
The ability to analyze and understand a problem and describe it to a computer
How is output from a program characterized
The end result of the program
What does the void keyword mean in the public static void main statement
The method cannot return a value
How is a single line comment created in Java
Two forward slashes at the beginning indicate that the line is a comment.
A high score in a video game may change over time. Where is this value stored for the program to work with
Variable
How does a loop know when to stop
When a predetermined condition is met
A code editor that is used to check syntax, format, run, and test code is known as a/an
integrated development environment
What happens when you compile and run the following Java program
(pic missing) There is an error during compiling
What will the following program print on the screen
(pic missing) This code will not compile.
How would you compile the following Java program
(pic missing) javac WelcomeWorld.java
What will the following Java program print on the screen
(pic missing) nothing will be printed on the screen
Examine the following code. What is missing on the ''if statement''
(pic missing)Brackets/braces
What happens when you compile and run the following Java program
(pic) There is an error when compiling
A computer program can be best described as
A set of instructions or programs designed to complete a particular task
The programmer's toolbox contains knowledge of how to create something called an algorithm, the five basic programming instructions, math and logic
All of these answers are correct.
What are the two main parts of a programmer's job
Breaking a problem into a series of steps and describing those steps to the computer so it can solve the problem
Which of the following is a compiled programming language
C#
What does the Start/End symbol do
Can be used to show the beginning or ending of a program.
What is a loop
Cycling through a set of instructions until a condition is met
The process of finding and removing bugs from a program is
Debugging
During the meetings and surveys step, the programmer should:
Examine the customer's business as a whole and how it does things.
Which of the following is pseudocode intended for
Human reading
The compiler is giving an error on the following statement. Why. float hoursWorked
Missing semicolon / Which of the following is a correctly written Java statement? (pic missing)
Can pseudocode be executed like you can execute code in a specific programming language
No, because pseudocode is not written using the logic and syntax of a specific programming language
Is there a single standard for writing pseudocode
No, but there are general guidelines
Gwen is an IT programmer for a small, non profit company. She's been assigned to write some new code for her company's payroll department to assist with the roll-out of a new pay for performance system. The new code will affect employees' pay grades, salaries, and bonuses. Gwen has written pseudo-code and the actual code. What should be her next step in the process
Test and debug the code
What will happen if you do not include a main method (e.g., public static void main)
The program may not compile
Who is responsible for writing the Requirements Document
The programmer
How does the IDE component, known as syntax highlighting, aid developers with writing program code
The tool makes it easier to recognize the various elements of code .
Why are conditional statements important
They control a program loop by stopping it at specified predetermined event.
What is the purpose of Requirements Gathering
To find out what the customer wants the program to do.
When writing a program that will do bookkeeping for a small business, the document review step should include going through
a list of documents to be input into the system
Which code statement will compile
pic