Archives
Programming Languages Appendix I Introduction Java Applications Inputoutput And Operators Sin This Youll Write Simple
2 Introduction to Java Applications; Input/Output and Operators Objectives In this chapter you’ll: ■Write simple Java applications. ■Use input and output statements. ■Learn about Java’s primitive types. ■Understand basic memory concepts. ■Use arithmetic operators. ■Learn the precedence of arithmetic operators. […]
Programming Languages Appendix I Java Server Faces Web Applications Introduction Questions Hypertext Transfer Protocol Http Transactions
30 Java Server Faces Web Applications 30.1 Introduction No questions. 30.2 HyperText Transfer Protocol (HTTP) Transactions 30.2 Q1: For security reasons, the path in a URL normally represents a(n) ________ on the server. a. Actual directory. b. Virtual directory. c. […]
Programming Languages Appendix I Javaserver Faces Web Apps Part Introduction Questions Accessing Databases Web Applications Questions
31 JavaServer™ Faces Web Apps: Part 2 31.1 Introduction No questions. 31.2 Accessing Databases in Web Applications No questions. 31.2.1 Setting Up the Database 31.2.1 Q1: Which of the following is true? a. You should maintain a separate database connection […]
Programming Languages Appendix I Which of the following is not a valid Java identifier
Java How to Program, 11/e Multiple Choice Test Bank Page 1 of 7 Chapter 2 Introduction to Java Applications Section 2.2 Your First Program in Java: Printing a Line of Text 2.2 Q1: End–of-line comments that should be ignored by […]
Programming Languages Chapter 1 Which edition of Java is geared toward developing large-scale
Java How to Program, 11/e Multiple Choice Test Bank 1 of 8 Chapter 1 Introduction to Computers and Java Section 1.1 Introduction 1.1 Q1: Which of the following statements is false? a. Object-oriented programming is today’s key programming methodology. b. […]
Programming Languages Chapter 1 Introduction Computers The Internet And Java Sin This Youll Learn About
1 Introduction to Computers, the Internet and Java Objectives In this chapter you’ll: ■Learn about exciting recent developments in the computer field. ■Learn computer hardware, software and networking basics. ■Understand the data hierarchy. ■Understand the different types of programming languages. […]
Programming Languages Chapter 10 For which of the following would polymorphism not provide a clean solution
Java How to Program, 11/e Multiple Choice Test Bank 1 of 11 Chapter 10: Object-Oriented Programming: Polymorphism Section 10.1 Introduction 10.1 Q1: Polymorphism enables you to: a. program in the general. b. program in the specific. c. absorb attributes and […]
Programming Languages Chapter 11 Which of the following is not included in an exception’s stack trace
Java How to Program, 11/e Multiple Choice Test Bank 1 of 7 Chapter 11: Exception Handling Section 11.1 Introduction 11.1 Q1: Which of the following statements is false? a. Exception handling enables programmers to write robust and fault-tolerant programs. b. […]
Programming Languages Chapter 11 Exception Handling Deeper Look Sin This Youll Learn Why Exception Handling
11 Exception Handling: A Deeper Look Objectives In this chapter you’ll: ■Learn why exception handling ■Learn when to use exception handling. ■Understand the exception class hierarchy. ■Use the finally block to release resources. ■Chain exceptions by catching one exception and […]
Programming Languages Chapter 12 Javafx Section Introduction Which The Following Statements False Graphical User Interface
Chapter 25: JavaFX Section 12.1 Introduction 12.1 Q1: Which of the following statements is false? a. A graphical user interface (GUI) presents a user-friendly mechanism for interacting with an app. A GUI (pronounced “GOO–ee”) gives an app a distinctive “look-and-feel.” […]
Programming Languages Chapter 13 Java How Program Multiple Choice Test Bank Page Javafx Gui Part Laying
Java How to Program, 11/e Multiple Choice Test Bank Page 1 of 9 JavaFX GUI: Part 2 13.2 Laying Out Nodes in a Scene Graph 13.2 Q1: ________ refers to the size and positioning of nodes in the sce- ne […]
Programming Languages Chapter 13 Javafx Gui Part Sin This Youll Learn More Details Laying Out
13JavaFX GUI: Part 2 Objectives In this chapter you’ll: ■Learn more details of laying out nodes in a scene graph ■Use property binding and property listeners to perform tasks when a control’s property value changes. ■Programmatically create layouts and controls. […]
Programming Languages Chapter 14 Java How Program Multiple Choice Test Bank Section Fundamentals Characters And
Java How to Program, 11/e Multiple Choice Test Bank 1 of 7 Chapter 14 Section 14.2 Fundamentals of Characters and Strings 14.2 Q1: Consider the examples below: A. a string. B. ‘a string’. C. “a string”. D. “1234”. E. integer. […]
Programming Languages Chapter 15 Java How Program Multiple Choice Test Bank Files Inputoutput Streams Nio
Java How to Program, 11/e Multiple Choice Test Bank 1 of 7 Chapter 15: Files, Input/Output Streams, NIO and XML Serialization 15.1 Introduction 15.1 Q1: Which of the following statements is false? a. Storage of data variables and arrays is […]
Programming Languages Chapter 15 Files Inputoutput Streams Nio And Xml Serializationo Sin This Youll Create
15 Files, Input/Output Streams, NIO and XML Serialization Objectives In this chapter you’ll: ■Create, read, write and update ■Use sequential file processing to develop a real-world credit- inquiry program. ■Write objects to and read objects from a file using XML […]
Programming Languages Chapter 16 Which of these is not an example of a “real-life” collection?
Java How to Program, 11/e Multiple Choice Test Bank 1 of 7 Chapter 16 Generic Collections Section 16.1 Introduction 16.1 Q1: Which of these is not an example of a “real-life” collection? a. The cards you hold in a card […]
Programming Languages Chapter 17 Java How Program Multiple Choice Test Bank Collectors Static Method Groupingby With
Java How to Program, 11/e Multiple Choice Test Bank 17.12 Q5: Collectors static method groupingBy with one argument receives a Function that classifies objects in the stream— the values returned by this function are used as the keys in a […]
Programming Languages Chapter 17 Java How Program Multiple Choice Test Bank Lambdas Introduction Prior Java
Java How to Program, 11/e Multiple Choice Test Bank Chapter 17: Lambdas 17.1 Introduction 17.1 Q1: Prior to Java SE 8, Java supported three programming paradigms. Java SE 8 added ________. a. procedural programming b. object-oriented programming c. generic programming […]
Programming Languages Chapter 17 Lambdas And Streams Sin This Youll Learn Various Functional Programming Techniques
17 Lambdas and Streams Objectives In this chapter you’ll: ■Learn various functional- programming techniques and ■Create streams representing ranges of int values and random int values. ■Implement functional interfaces with lambdas. ■Perform on IntStreams intermediate operations filter, map, mapToObj and […]
Programming Languages Chapter 18 Java How Program Multiple Choice Test Bank Recursion Introduction Recursive Method
Java How to Program, 11/e Multiple Choice Test Bank 1 of 4 Chapter 18: Recursion 18.1 Introduction 18.1 Q1: A recursive method . a. is a method that calls itself. b. can be called directly. c. can be called indirectly […]
Programming Languages Chapter 19 Java How Program Multiple Choice Test Bank Searching Sorting And Big
Java How to Program, 11/e Multiple Choice Test Bank 1 of 4 Chapter 19: Searching, Sorting and Big O Section 19.1 Introduction 19.1 Q1: Which of the following is a way to sort data? a. Alphabetically. b. In increasing numerical […]
Programming Languages Chapter 19 Searching Sorting And Big Sin This Youll Search For Given Value
19Searching, Sorting and Big O Objectives In this chapter you’ll: ■Search for a given value in an array using linear search and binary search. ■Sort arrays using the iterative selection and insertion sort algorithms. ■Sort arrays using the recursive merge […]
Programming Languages Chapter 20 Java How Program Multiple Choice Test Bank Generic Classes And Methods
Java How to Program, 11/e Multiple Choice Test Bank 1 of 3 Chapter 20 Generic Classes and Methods Section 20.1 Introduction 20.1 Q1: __________ enable programmers to specify, with a single method declaration, a set of related methods. a. Overloaded […]
Programming Languages Chapter 21 Java How Program Multiple Choice Test Bank Custom Generic Data Structures
Java How to Program, 11/e Multiple Choice Test Bank 1 of 4 Chapter 21: Custom Generic Data Structures Section 21.1 Introduction 21.1 Q1: Which statement is false? a. Linked lists are collections of data items “lined up in a row“— […]
Programming Languages Chapter 21 Custom Generic Data Structures Sin This Youll Form Linked Data Structures
21 Custom Generic Data Structures Objectives In this chapter you’ll: ■Form linked data structures using references, self- referential classes, recursion and generics. ■Create and manipulate dynamic data structures, such as linked lists, queues, stacks and binary trees. ■Learn various important […]
Programming Languages Chapter 23 Java How Program Multiple Choice Test Bank Concurrency Introduction Two Tasks
Java How to Program, 11/e Multiple Choice Test Bank 1 of 11 Chapter 23, Concurrency 23.1 Introduction 23.1 Q1: Two tasks that are operating ________ are both making progress at once. a. sequentially b. concurrently c. iteratively d. recursively ANS: […]
Programming Languages Chapter 23 Concurrency Sin This Youll Understand Concurrency Parallelism And Multithreading Learn The
23Concurrency Objectives In this chapter you’ll: ■Understand concurrency, parallelism and ■Use JavaFX’s concurrency APIs to update GUIs in a thread- safe manner. ■Compare the performance of Arrays methods sort and parallelSort on a multi- core system. ■Use parallel streams for […]
Programming Languages Chapter 24 Java How Program Multiple Choice Test Bank Accessing Databases With Jdbc
Java How to Program, 11/e Multiple Choice Test Bank 1 of 6 Chapter 24 Accessing Databases with JDBC Section 24.1 Introduction 24.1 Q1: Java programs communicate with databases using what API? a. DBMS. b. JDBC. c. RDBMS. d. Database. ANS: […]
Programming Languages Chapter 26 Java How Program Multiple Choice Test Bank Gui Components Part Introduction
Java How to Program, 11/e Multiple Choice Test Bank 1 of 16 Chapter 26: GUI Components: Part 1 26.1 Introduction 26.1 Q1: Which of the following is not a GUI component (control or widget)? a. String. b. Button. c. Menu. […]
Programming Languages Chapter 27 Java How Program Multiple Choice Test Bank Graphics And Java Section
Java How to Program, 11/e Multiple Choice Test Bank 1 of 5 Chapter 27: Graphics and Java 2D Section 27.1 Introduction 27.1 Q1: In the Java coordinate system, the point (0, 0) is ________. a. The lower-right corner of the […]
Programming Languages Chapter 28 Java How Program Multiple Choice Test Bank Networking Section Introduction Sockets
Java How to Program, 11/e Multiple Choice Test Bank 1 of 2 Chapter 28: Networking Section 28.1 Introduction 28.1 Q1: __________ sockets and the __________ protocol are more desirable for the vast majority of Java programmers. a. Stream, UDP. b. […]
Programming Languages Chapter 29 Java How Program Multiple Choice Test Bank Page Java Persistence Api Jpa
Java How to Program, 10/e Multiple Choice Test Bank Page 1 of 5 Java Persistence API (JPA) 29.1 Introduction 29.1 Q1: Which of the following statements related to JPA is false? a. The Java Persistence API (JPA) maps Java classes […]
Programming Languages Chapter 3 ToClasses Introduction Classes Objects Methods And Stringso Sin This Youll Declare Class
3Introduction to Classes, Objects, Methods and Strings Objectives In this chapter you’ll: ■Declare a class and use it to create an object. ■Implement a class’s behaviors as methods. ■Implement a class’s attributes as instance variables. ■Call an object’s methods to […]
Programming Languages Chapter 3 You can declare new classes as needed this is one reason Java is known as
Java How to Program, 11/e Multiple Choice Test Bank 1 of 6 Chapter 3 Introduction to Classes and Objects Section 3.1 Introduction 3.2 Q1: Each class you create becomes a new ________ that can be used to declare variables and […]
Programming Languages Chapter 35 Java How Program Multiple Choice Test Bank Gui Part Section Jslider
Java How to Program, 11/e Multiple Choice Test Bank 1 of 4 Chapter 35: GUI, Part 2 Section 35.2 JSlider 35.2 Q1: A JSlider cannot display which of the following: a. Major tick marks. b. Minor tick marks labels. c. […]
Programming Languages Chapter 4 Control Statements Part Assignment And Operators Sin This Youll Learn Basic
4Control Statements: Part 1; Assignment, ++ and — Operators Objectives In this chapter you’ll: ■Learn basic problem-solving techniques. ■Develop algorithms through the process of top-down, stepwise refinement. ■Use the if and if…else selection statements to choose between alternative actions. ■Use […]
Programming Languages Chapter 4 Which of the following is not a benefit of goto-less programming
Java How to Program, 11/e Multiple Choice Test Bank 1 of 9 Chapter 4 Control Statements: Part 1 Section 4.2 Algorithms 4.2 Q1: Which of the following is not an algorithm? a. A recipe. b. Operating instructions. c. Textbook index. […]
Programming Languages Chapter 5 Control Statements Part Logical Operatorso Sin This Youll Learn The Essentials
5Control Statements: Part 2; Logical Operators Objectives In this chapter you’ll: ■Learn the essentials of counter-controlled iteration. ■Use the for and do…while iteration statements to execute statements in a program repeatedly. ■Understand multiple selection using the switch selection statement. ■Implement […]
Programming Languages Chapter 5 Which formatting flag indicates that the floating-point values should be output
Java How to Program, 11/e Multiple Choice Test Bank 1 of 8 Chapter 5 Control Statements: Part 2 Section 5.2 Essentials of Counter-Controlled Iteration 5.2 Q1: Counter-controlled iteration requires a. A control variable and initial value. b. A control variable […]
Programming Languages Chapter 6 Method log takes the logarithm of its argument with respect to what base
Java How to Program, 11/e Multiple Choice Test Bank 1 of 7 Chapter 6 Methods: A Deeper Look Section 6.2 Program Units in Java 6.2 Q1: Information is passed to a method in ________. a. the method name b. that […]
Programming Languages Chapter 6 Methods Deeper Look Sin This Youll Learn How Static Methods And
6Methods: A Deeper Look Objectives In this chapter you’ll learn: ■How static methods and fields are associated with classes rather than objects. ■How the method-call/return mechanism is supported by the method-call stack. ■About argument promotion and casting. ■How packages group […]
Programming Languages Chapter 7 Which flag in a format specifier indicates that values with fewer digits
Java How to Program, 11/e Multiple Choice Test Bank 1 of 16 Chapter 7 Arrays and ArrayLists Section 7.1 Introduction 7.1 Q1: Arrays are ________. a. variable-length entities b. fixed-length entities c. data structures that contain up to 10 related […]
Programming Languages Chapter 8 What happens when this is used in a constructor’s body to call another constructor
Java How to Program, 11/e Multiple Choice Test Bank 1 of 5 Chapter 8 Classes and Objects: A Deeper Look Section 8.2 Time Class Case Sudy 8.2 Q1: The _________ of a class are also called the public services or […]
Programming Languages Chapter 8 Classes And Objects Deeper Look Sin This Youll See Additional Details
8 Classes and Objects: ADeeperLook Objectives In this chapter you’ll: ■See additional details of creating class declarations. ■Use the throw statement to indicate that a problem has occurred. ■Use keyword this in a constructor to call another constructor in the […]
Programming Languages Chapter 9 Which of the following keywords allows a subclass to access
Java How to Program, 11/e Multiple Choice Test Bank 1 of 4 Chapter 9 Object Oriented Programming: Inheritance Section 9.1 Introduction 9.1 Q1: Which of the following statements is false? a. A subclass is often larger than its superclass. b. […]
Programming Languages Chapter 12 Graphical User Interfaces Part Sin This Youll Build Javafx Guis
12 JavaFX Graphical User Interfaces: Part 1 Objectives In this chapter you’ll: ■Build JavaFX GUIs and handle events generated by user interactions with them. ■Understand the structure of a JavaFX app window. ■Use JavaFX Scene Builder to create FXML files […]
Programming Languages Chapter 14 Strings Characters And Regular Expressionso Sin This Youll Create And Manipulate
14 Strings, Characters and Regular Expressions Objectives In this chapter you’ll: ■Create and manipulate immutable character-string objects of class String. ■Create and manipulate mutable character-string objects of class StringBuilder. ■Create and manipulate objects of class Character. ■Break a String object […]
Programming Languages Chapter 16 Generic Collectionso Sin This Youll Learn What Collections Are Use Class
16 Generic Collections Objectives In this chapter you’ll: ■Learn what collections are. ■Use class Arrays for array primitive types. ■Use prebuilt generic data structures from the collections framework. ■Use various algorithms of the Collections class to process collections. ■Use iterators […]
Programming Languages Chapter 18 Recursiono Sin This Youll Learn The Concept Recursion Write And Use
18 Recursion Objectives In this chapter you’ll: ■Learn the concept of recursion. ■Write and use recursive methods. ■Determine the base case and recursion step in a recursive algorithm. ■Learn how recursive method calls are handled by the system. ■Learn the […]
Programming Languages Chapter 20 Generic Classes And Methods Deeper Look Sin This Youll Create Generic
20 Generic Classes and Methods: A Deeper Look Objectives In this chapter you’ll: ■Create generic methods that perform identical tasks on arguments of different types. ■Create a generic Stack class that can be used to store objects of any class […]
Programming Languages Chapter 22 Graphics And Multimediao Sin This Youll Use Javafx Graphics And
22 JavaFX Graphics and Multimedia Objectives In this chapter you’ll: ■Use JavaFX graphics and multimedia capabilities to ■Display two-dimensional shape nodes of types Line, Rectangle, Circle, Ellipse, Arc, Path, Polyline and Polygon. ■Customize the stroke and fill of shapes with […]
Programming Languages Chapter 7 Arrays And Arraylists Sin This Youll Learn What Arrays Are Use
7Arrays and ArrayLists Objectives In this chapter you’ll: ■Learn what arrays are. ■Use arrays to store data in and ■Use variable-length argument lists. ■Read command-line arguments into a program. ■Build an object-oriented instructor gradebook class. ■Perform common array manipulations with […]
Programming Languages Chapter 9 Objectoriented Programming Inheritance Sin This Youll Understand Inheritance And How Use
9 Object-Oriented Programming: Inheritance Objectives In this chapter you’ll: ■Understand inheritance and another class. ■Use access modifier protected in a superclass to give subclass methods access to these superclass members. ■Access superclass members with super from a subclass. ■Learn how […]
Programming Languages Homework Objectoriented Programming Polymorphism And Interfaces Sin This Youll Learn The Concept
10 Object-Oriented Programming: Polymorphism and Interfaces Objectives In this chapter you’ll: ■Learn the concept of polymorphism and how it enables “programming in the general.” ■Use overridden methods to effect polymorphism. ■Distinguish between abstract and concrete classes. ■Declare abstract methods to […]
Programming Languages Jhtp_24_JDBC Accessing Databases With Jdbco Sin This Youll Learn Relational Database Concepts
24 Accessing Databases with JDBC Objectives In this chapter you’ll: ■Learn relational database concepts. into a JavaFX scene graph via a SwingNode. ■Use Swing’s JTable and a TableModel to populate a JTable with a ResultSet’s data. ■Sort and filter a […]