Gaddis: Starting Out with Java: From Control Structures through Objects, 6/e

Similar documents
Starting Out with Java: From Control Structures through Data Structures 3e (Gaddis and Muganda) Chapter 2 Java Fundamentals

4. If the following Java statements are executed, what will be displayed?

Full file at

Computational Expression

Entry Point of Execution: the main Method. Elementary Programming. Learning Outcomes. Development Process

Datatypes, Variables, and Operations

Lecture 2. COMP1406/1006 (the Java course) Fall M. Jason Hinek Carleton University

Tester vs. Controller. Elementary Programming. Learning Outcomes. Compile Time vs. Run Time

Lecture Notes. System.out.println( Circle radius: + radius + area: + area); radius radius area area value

Getting started with Java

Elementary Programming

Interpreted vs Compiled. Java Compile. Classes, Objects, and Methods. Hello World 10/6/2016. Python Interpreted. Java Compiled

CHAPTER 2 Java Fundamentals

Peer Instruction 1. Elementary Programming

Full file at

Chapter 2: Java Fundamentals

8/23/2014. Chapter Topics. Chapter Topics (2) Parts of a Java Program. Parts of a Java Program. Analyzing The Example. Chapter 2: Java Fundamentals

Data and Variables. Data Types Expressions. String Concatenation Variables Declaration Assignment Shorthand operators. Operators Precedence

Lec 3. Compilers, Debugging, Hello World, and Variables

Programming with Java

Entry Point of Execution: the main Method. Elementary Programming. Compile Time vs. Run Time. Learning Outcomes

Java Basic Programming Constructs

Oct Decision Structures cont d

Section 2.2 Your First Program in Java: Printing a Line of Text

CMSC131. Introduction to your Introduction to Java. Why Java?

CSCI 2010 Principles of Computer Science. Data and Expressions 08/09/2013 CSCI

Chapter 2: Introduction to C++

Chapter 2: Special Characters. Parts of a C++ Program. Introduction to C++ Displays output on the computer screen

Key Differences Between Python and Java

Java Foundations: Introduction to Program Design & Data Structures, 4e John Lewis, Peter DePasquale, Joseph Chase Test Bank: Chapter 2

Lecture Set 2: Starting Java

BIT Java Programming. Sem 1 Session 2011/12. Chapter 2 JAVA. basic

Expressions and Data Types CSC 121 Spring 2017 Howard Rosenthal

CS 302: Introduction to Programming

Lecture Set 2: Starting Java

CSE 1223: Introduction to Computer Programming in Java Chapter 2 Java Fundamentals

Object-Oriented Programming

Decisions in Java IF Statements

Java Bytecode (binary file)

Lecture 6. Assignments. Summary - Variables. Summary Program Parts 1/29/18. Reading: 3.1, 3.2, 3.3, 3.4

Fundamentals of Programming Data Types & Methods

Section 2.2 Your First Program in Java: Printing a Line of Text

Wentworth Institute of Technology. Engineering & Technology WIT COMP1000. Java Basics

2.1. Chapter 2: Parts of a C++ Program. Parts of a C++ Program. Introduction to C++ Parts of a C++ Program

Please answer the following questions. Do not re-code the enclosed codes if you have already completed them.

Data and Expressions. Outline. Data and Expressions 12/18/2010. Let's explore some other fundamental programming concepts. Chapter 2 focuses on:

Chapter 2 Elementary Programming

Assoc. Prof. Dr. Marenglen Biba. (C) 2010 Pearson Education, Inc. All rights reserved.

The C++ Language. Arizona State University 1

Introduction to Java & Fundamental Data Types

Java Identifiers, Data Types & Variables

MODULE 02: BASIC COMPUTATION IN JAVA

12/22/11. Java How to Program, 9/e. Help you get started with Eclipse and NetBeans integrated development environments.

Lecture 6. Assignments. Java Scanner. User Input 1/29/18. Reading: 2.12, 2.13, 3.1, 3.2, 3.3, 3.4

Basics of Java Programming

Chapter 2 Using Data. Instructor s Manual Table of Contents. At a Glance. Overview. Objectives. Teaching Tips. Quick Quizzes. Class Discussion Topics

Basic Computation. Chapter 2

CHAPTER 3 BASIC INSTRUCTION OF C++

PROGRAMMING FUNDAMENTALS

LECTURE 02 INTRODUCTION TO C++

DATA TYPES AND EXPRESSIONS

Full file at

Expressions and Data Types CSC 121 Spring 2015 Howard Rosenthal

Full file at

Expressions and Data Types CSC 121 Fall 2015 Howard Rosenthal

CEN 414 Java Programming

Chapter 2 ELEMENTARY PROGRAMMING

Software and Programming 1

Basic computer skills such as using Windows, Internet Explorer, and Microsoft Word. Chapter 1 Introduction to Computers, Programs, and Java

CS11 Java. Fall Lecture 1

Lecture 2 Tao Wang 1

Chapter 2 Primitive Data Types and Operations. Objectives

CS5000: Foundations of Programming. Mingon Kang, PhD Computer Science, Kennesaw State University

Introduction To Java. Chapter 1. Origins of the Java Language. Origins of the Java Language. Objects and Methods. Origins of the Java Language

Ex: If you use a program to record sales, you will want to remember data:

Date: Dr. Essam Halim

4 Programming Fundamentals. Introduction to Programming 1 1

Chapter 2 Primitive Data Types and Operations

Input. Scanner keyboard = new Scanner(System.in); String name;

Object oriented programming. Instructor: Masoud Asghari Web page: Ch: 3

CP122 Computer Science I. Chapter 2: Data Types, Variables, and I/O

Selected Questions from by Nageshwara Rao

Basic Operations jgrasp debugger Writing Programs & Checkstyle

Full file at

Chapter 02: Using Data

Array. Prepared By - Rifat Shahriyar

CS1150 Principles of Computer Science Math Functions, Characters and Strings (Part II)

Conditional Execution

Values and Variables 1 / 30

Outline. Parts 1 to 3 introduce and sketch out the ideas of OOP. Part 5 deals with these ideas in closer detail.

Introduction to Programming Using Java (98-388)

Chapter 2: Programming Concepts

Chapter 4: Control Structures I

Chapter 2 Using Data. Instructor s Manual Table of Contents. At a Glance. A Guide to this Instructor s Manual:

5/3/2006. Today! HelloWorld in BlueJ. HelloWorld in BlueJ, Cont. HelloWorld in BlueJ, Cont. HelloWorld in BlueJ, Cont. HelloWorld in BlueJ, Cont.

Lesson 2A Data. Data Types, Variables, Constants, Naming Rules, Limits. A Lesson in Java Programming

First Java Program - Output to the Screen

Zheng-Liang Lu Java Programming 45 / 79

Basic Computation. Chapter 2

Using Java Classes Fall 2018 Margaret Reid-Miller

Transcription:

Chapter 2 MULTIPLE CHOICE 1. Which one of the following would contain the translated Java byte code for a program named Demo? a. Demo.java b. Demo.code c. Demo.class d. Demo.byte 2. To compile a program named First, use the following command: a. java First.java b. javac First c. javac First.java d. compile First.javac 3. A Java program must have at least one of these: a. Class definition b. Variable c. Comment d. System.out.println(); statement 4. In Java, the beginning of a comment is marked with: a. // b. "" c. ; d. # 5. The term typically refers to the device that displays console output. a. Standard output device b. Central processing unit c. Secondary storage device d. Liquid crystal display 6. In Java, must be declared before they can be used. a. Variables b. Literals c. Key words d. Comments

7. If the following Java statements are executed, what will be displayed? System.out.println("The top three winners are\n"); System.out.print("Jody, the Giant\n"); System.out.print("Buffy, the Barbarian"); System.out.println("Adelle, the Alligator"); a. The top three winners are Jody, the Giant Buffy, the Barbarian Adelle, the Alligator b. The top three winners are Jody, the Giant\nBuffy, the BarbarianAdelle, the Alligator c. The top three winners are Jody, the Giant\nBuffy, the BarbarianAdelle, and the Albino d. The top three winners are Jody, the Giant Buffy, the BarbarianAdelle, the Alligator 8. This is a value that is written into the code of a program. a. literal b. assignment statement c. variable d. operator 9. When the + operator is used with strings, it is known as the: a. Assignment operator b. String concatenation operator c. Addition operator d. Combined assignment operator 10. What would be printed out as a result of the following code? System.out.println("The quick brown fox" + "jumped over the \n" "slow moving hen."); a. The quick brown fox jumped over the \nslow moving hen. b. The quick brown fox jumped over the slow moving hen. c. The quick brown fox jumped over the slow moving hen. d. Nothing. This is an error. 11. Which of the following is not a rule that must be followed when naming identifiers?

a. The first character must be one of the letters a-z, A-Z, and underscore or a dollar sign. b. Identifiers can contain spaces. c. Uppercase and lowercase characters are distinct. d. After the first character, you may use the letters a-z, A-Z, the underscore, a dollar sign, or digits 0-9. 12. Which of the following cannot be used as identifiers in Java? a. Variable names b. Class names c. Key words d. All of the above e. None of the above 13. In Java, it is standard practice to capitalize the first letter of: a. Class names b. Variable names c. Key words d. Literals 14. Which of the following is not a primitive data type? a. short b. long c. float d. String 15. Which of the following is valid? a. float y; y = 54.9; b. float y; double z; z = 934.21; y = z; c. float w; w = 1.0f; d. float v; v = 1.0; 16. The boolean data type may contain values in the following range of values a. true or false

b. -128 to + 127 c. - 2,147,483,648 to +2,147,483,647 d. - 32,768 to +32,767 17. Character literals are enclosed in ; string literals are enclosed in. a. single quotes; single quotes b. double quotes; double quotes c. single quotes; double quotes d. double quotes; single quotes 18. What is the result of the following expression? a. -5 b. 5 c. 25 d. -50 10 + 5 * 3-20 19. What is the result of the following expression? a. 19 b. 5.25 c. 3 d. 7 25 / 4 + 4 * 10 % 3 20. What will be displayed as a result of executing the following code? int x = 5, y = 20; x += 32; y /= 4; System.out.println("x = " + x + ", y = " + y); a. x = 32, y = 4 b. x = 9, y = 52 c. x = 37, y = 5 d. x = 160, y = 80 21. What will be the value of z as a result of executing the following code?

int x = 5, y = 28; float z; z = (float) (y / x); a. 5.60 b. 5.6 c. 3.0 d. 5.0 22. What will be the displayed when the following code is executed? final int x = 22, y = 4; y += x; System.out.println("x = " + x + ", y = " + y); a. x = 22, y = 4 b. x = 22, y = 26 c. x = 22, y = 88 d. Nothing, this is an error 23. In the following Java statement what value is stored in the variable name? String name = "John Doe"; a. John Doe b. The memory address where "John Doe" is located c. name d. The memory address where name is located 24. What will be displayed as a result of executing the following code? int x = 6; String msg = "I am enjoying this class."; String msg1 = msg.touppercase(); String msg2 = msg.tolowercase(); char ltr = msg.charat(x); int strsize = msg.length(); System.out.println(msg); System.out.println(msg1); System.out.println(msg2); System.out.println("Character at index x = " + ltr); System.out.println("msg has " + strsize + "characters."); a. I am enjoying this class. I AM ENJOYING THIS CLASS.

i am enjoying this class. Character at index x = e msg has 24 characters. b. I am enjoying this class. I AM ENJOYING THIS CLASS. i am enjoying this class. Character at index x = e msg has 25 characters. c. I am enjoying this class. I AM ENJOYING THIS CLASS. i am enjoying this class. Character at index x = n msg has 24 characters. d. I am enjoying this class. I AM ENJOYING THIS CLASS. i am enjoying this class. Character at index x = n msg has 25characters. 25. What will be displayed as a result of executing the following code? public class test { public static void main(string[] args) { int value1 = 9; System.out.println(value1); int value2 = 45; System.out.println(value2); System.out.println(value3); value = 16; } } a. 9 45 16 b. 94516 c. 9 45 16 d. Nothing, this is an error 26. Which of the following is not a valid comment statement? a. // comment 1 b. /* comment 2 */ c. */ comment 3 /* d. /** comment 4 */

27. When saving a Java source file, save it with an extension of a..javac b..class c..src d..java 28. Every Java application program must have a. a class named MAIN b. a method named main c. comments d. integer variables 29. To print "Hello, world" on the monitor, use the following Java statement a. SystemOutPrintln("Hello, world"); b. System.out.println{"Hello, world"} c. System.out.println("Hello, world"); d. Print "Hello, world"; 30. To display the output on the next line, you can use the println method or use this escape sequence in the print method. a. \n b. \r c. \t d. \b 31. This is a named storage location in the computer's memory. a. Literal b. Constant c. Variable d. Operator 32. What would be displayed as a result of the following code? int x = 578; System.out.print("There are " + x + 5 + "\n" + "hens in the hen house."); a. There are 583 hens in the hen house.

b. There are 5785 hens in the hen house. c. There are x5\nhens in the hen house. d. There are 5785 hens in the hen house. 33. Variables are classified according to their a. value b. data type c. names d. location in the program 34. The primitive data types only allow a(n) to hold a single value. a. variable b. object c. class d. literal 35. If x has been declared an int, which of the following statements is invalid? a. x = 0; b. x = -58932; c. x = 1,000; d. x = 592; 36. Given the declaration double r;, which of the following statements is invalid? a. r = 326.75; b. r = 9.4632e15; c. r = 9.4632E15; d. r = 2.9X106; 37. Variables of the boolean data type are useful for a. working with small integers b. evaluating true/false conditions c. working with very large integers d. evaluating scientific notation 38. What is the result of the following expression? 25-7 * 3 + 12 / 3

a. 6 b. 8 c. 10 d. 12 39. What is the result of the following expression? a. 7 b. 8 c. 12 d. 105 17 % 3 * 2-12 + 15 40. What will be displayed after the following statements have been executed? int x = 15, y = 20, z = 32; x += 12; y /= 6; z -= 14; System.out.println("x = " + x + ", y = " + y + ", z = " +z); a. x = 27, y = 3.333, z = 18 b. x = 27, y = 2, z = 18 c. x = 27, y = 3, z = 18 d. x = 37, y = 14, z = 4 41. What will be the value of z after the following statements have been executed? int x = 4, y = 33; double z; z = (double) (y / x); a. 8.25 b. 4 c. 8 d. 8.0 42. This is a variable whose content is read only and cannot be changed during the program's execution. a. operator b. literal c. named constant

d. reserved word 43. What will be displayed after the following statements have been executed? final double x = 99.0; x = 54.3; System.out.println("x = " + x ); a. x = 54.3 b. x = 99 c. x = 153.3 d. Nothing, this is an error. 44. Which of the following is a valid Java statement? a. String str = 'John Doe'; b. string str = "John Doe"; c. string str = 'John Doe'; d. String str = "John Doe"; 45. What will be displayed as a result of executing the following code? int x = 8; String msg = "I am enjoying java."; String msg1 = msg.touppercase(); String msg2 = msg.tolowercase(); char ltr = msg.charat(x); int strsize = msg.length(); System.out.println(msg); System.out.println(msg1); System.out.println(msg2); System.out.println("Character at index x = " + ltr); System.out.println("msg has " + strsize + " characters."); a. I am enjoying java. I AM ENJOYING JAVA. i am enjoying java. Character at index x = j msg has 20 characters. b. I am enjoying java. I AM ENJOYING JAVA. i am enjoying java. Character at index x = o msg has 20 characters. c. I am enjoying java.

I AM ENJOYING JAVA. i am enjoying java. Character at index x = o msg has 19 characters. d. I am enjoying java. I AM ENJOYING JAVA. i am enjoying java. Character at index x = y msg has 19 characters. 46. Which of the following does not describe a valid comment in Java? a. Single line comments, two forward slashes - // b. Multi-line comments, start with /* and end with */ c. Multi-line comments, start with */ and end with /* d. Documentation comments, any comments starting with /** and ending with */ 47. Which of the following statements correctly creates a Scanner object for keyboard input? a. Scanner kbd = new Scanner(System.keyboard); b. Scanner keyboard(system.in); c. Scanner keyboard = new Scanner(System.in); d. Keyboard scanner = new Keyboard(System.in); 48. Which Scanner class method reads an int? a. readint() c. getint() b. nextint() d. read_int() 49. Which Scanner class method reads a String? a. readstring() c. getstring() b. nextstring() d. nextline() 50. Which one of the following methods would you use to convert a string to a double? a. Byte.ParseByte c. Integer.ParseInt b. Long.ParseLong d. Double.ParseDouble

TRUE/FALSE 1. A Java program will not compile unless it contains the correct line numbers. 2. All Java statements end with semicolons. 3. Java is a case-insensitive language. 4. Although the dollar sign is a legal identifier character, you should not use it because it is normally used for special purposes. ANS: T 5. Assuming that pay has been declared a double, the following statement is valid. pay = 2,583.44; 6. Named constants are initialized with a value, that value cannot be changed during the execution of the program. ANS: T 7. A variable's scope is the part of the program that has access to the variable. ANS: T 8. In Java the variable named total is the same as the variable named Total. 9. Class names and key words are examples of variables. 10. Both character literals and string literals can be assigned to a char variable. 11. If the compiler encounters a statement that uses a variable before the variable is declared, an error will result. ANS: T 12. Programming style includes techniques for consistently putting spaces and indentation in a program so visual cues are created. ANS: T