C# Programming From Problem Analysis to Program Design, 5e Barbara Doyle
(Test Bank all Chapters)
- / 4
Name:
Class:
Date:
Chapter 01: Introduction to Computing and Application Development
Copyright Cengage Learning. Powered by Cognero. Page 1
True / False
- Software consists of programs, which are sets of instructions telling you how to use the computer.
- True
- False
ANSWER: False
- System software includes software such as the operating system.
- True
- False
ANSWER: True
- The first step in the program development process is design.
- True
- False
ANSWER: False
- Problem specifications often include the desired output of the program in terms of what is to be displayed, saved, or
- True
- False
printed.
ANSWER: True
- During the first phase of software development, you should make sure you understand the problem definition.
- True
- False
ANSWER: True
- Procedural and object-oriented are the two commonly used design methods.
- True
- False
ANSWER: True
- Classes and class diagrams are used most often with the structured procedural approach to software development.
- True
- False
ANSWER: False
- IDE stands for Integrated Development Environment.
- True
- False
ANSWER: True
- The rule that every statement should end with a semicolon is an example of a syntax rule.
- True 2 / 4
Name:
Class:
Date:
Chapter 01: Introduction to Computing and Application Development
Copyright Cengage Learning. Powered by Cognero. Page 2
- False
ANSWER: True
- The iterative approach in the software development process indicates that the application will never be fully
- True
- False
developed.
ANSWER: False
- C# is considered native code.
- True
- False
ANSWER: False
- Good programmers often build test plans while they are in the implementation stage.
- True
- False
ANSWER: False
- Procedural programming is also called structured programming.
- True
- False
ANSWER: True
- As far as the compiler is concerned, you could actually type the entire program without touching the Enter key.
- True
- False
ANSWER: True
- Comments are considered instructions to the computer.
- True
- False
ANSWER: False
- At the beginning of a program, comments are often written to identify how many pages are included in the program
- True
- False
listing.
ANSWER: False
- A forward slash followed by an asterisk /* marks the beginning of an in-line comment.
- True
- False
ANSWER: False
- / 4
Name:
Class:
Date:
Chapter 01: Introduction to Computing and Application Development
Copyright Cengage Learning. Powered by Cognero. Page 3
- The Framework Class Library (FCL) consists of more than 2,000 classes.
- True
- False
ANSWER: True
- The System namespace contains classes that define commonly used types or classes.
- True
- False
ANSWER: True
- Since C# is an object-oriented language, everything is designed around a class.
- True
- False
ANSWER: True
- In C#, it is tradition to name the file containing the class the same name as the class name, except the file name will
- True
- False
have a .c# extension affixed to the end of the name.
ANSWER: False
- A method call is the same as a method declaration.
- True
- False
ANSWER: False
- Semicolons are placed at the end of method headings.
- True
- False
ANSWER: False
- Several third-party vendors are also marketing .NET-compliant languages.
- True
- False
ANSWER: True
- The Visual Studio IDE is an interactive environment that enables you to type the source code, compile, and execute
- True
- False
without leaving the IDE program.
ANSWER: True
- IDEs include a number of useful development tools such as SensitiveWindows, pop-up windows with completion
- True
- / 4
options.