Browse J
Alphabetical listing with fast deep pagination.
10965 items • Page 23 / 220
JAVA RetailItem Exceptions Programming Challenge 4 of Chapter 6 required you to
JAVA RetailItem Exceptions Programming Challenge 4 of Chapter 6 required you to write a RetailItem class that holds data pertaining to a retail item. Write an exception class that…
JAVA RetailItem Exceptions Programming Challenge 4 of Chapter 6 required you to
JAVA RetailItem Exceptions Programming Challenge 4 of Chapter 6 required you to write a RetailItem class that holds data pertaining to a retail item. Write an exception class that…
JAVA Rewrite the sequence class using a new class name, DoubleArraySortedSeq . I
JAVA Rewrite the sequence class using a new class name, DoubleArraySortedSeq. In the new class, the add method always puts the new element so t…
JAVA SIMPLE CODE NO USE OF NULL . Did You Ever Have To Make Up Your Mind? Write
JAVA SIMPLE CODE NO USE OF NULL . Did You Ever Have To Make Up Your Mind? Write a program using Scanner to help you decide what to do this weekend. Decision Trees Imagine you only…
JAVA SQL QUERY HELP I AM HAVING TROUBLE GETTING THE PREPARED STATEMENT TO RETURN
JAVA SQL QUERY HELP I AM HAVING TROUBLE GETTING THE PREPARED STATEMENT TO RETURN THE RESULTS. IT IS RETURNING THE ACTUAL SQL SELECT STATEMENTS. import java.sql.Connection; public …
JAVA Ship , CruiseShip , and CargoShip Classes Design a Ship class that the foll
JAVA Ship , CruiseShip , and CargoShip Classes Design a Ship class that the following members: A field for the name of the ship (a string) A field for the year that the ship was b…
JAVA Since the way the program is currently written requires one player to enter
JAVA Since the way the program is currently written requires one player to enter a word and another to play, change the program so that one player may play (without cheating!). In…
JAVA Some coffee shop wants to implement a system to allow its registered Custom
JAVA Some coffee shop wants to implement a system to allow its registered Customers to view their purchases. Initially, the system is required to allow its Salesperson to view and…
JAVA Stacks Data Structures | Stack Implementation Create a class called ArrayBa
JAVA Stacks Data Structures | Stack Implementation Create a class called ArrayBasedStack. Declare the following variables: • data: references an array storing elements in the list…
JAVA Study Questions on the Introduction to Algorithm Complexity 7) What is the
JAVA Study Questions on the Introduction to Algorithm Complexity 7) What is the order of complexity for the algorthm to push an item on a stack? 8) What is the order of complexity…
JAVA Sum 1/i^2 from 1 to n, where n=1000. Write code to sum the formula (1/i2) o
JAVA Sum 1/i^2 from 1 to n, where n=1000. Write code to sum the formula (1/i2) over all values of i in the range [1...n]. We'll test it for n=1000 and other values. You should not…
JAVA Suppose you work for a major airline and are given the job of writing the a
JAVA Suppose you work for a major airline and are given the job of writing the algorithm for processing upgrades into first class on various flights. Any frequent flyer can reques…
JAVA THIS IS A FOLLOWUP QUESTION TO PREVIOUS QUESTION. I got an answer to this q
JAVA THIS IS A FOLLOWUP QUESTION TO PREVIOUS QUESTION. I got an answer to this question and it will not properly compile. I am updating with the code I was given. I need this to b…
JAVA TRUE/FALSE. Write \'T\' if the statement is true and \'F\' if the statement
JAVA TRUE/FALSE. Write 'T' if the statement is true and 'F' if the statement is false With a reason. 1) An object can store data. 2) A class in not an object, but a description of…
JAVA TRUE/FALSE. Write \'T\' if the statement is true and \'F\' if the statement
JAVA TRUE/FALSE. Write 'T' if the statement is true and 'F' if the statement is false With a reason. 1) An object can store data. 2) A class in not an object, but a description of…
JAVA Take the code (it is from the Savitch student data files) listed here and 1
JAVA Take the code (it is from the Savitch student data files) listed here and 1. make it doubly linked. 2. Add a copy constructor 3. Add a clone method 4. Replace outputList with…
JAVA Task #4 – Fun with Strings Write a program that works with String methods.
JAVA Task #4 – Fun with Strings Write a program that works with String methods. As input, prompt the user to enter their first and last name. Concatenate your first and last name …
JAVA Task 1: Implement the main method for the class UsernameGen. The main metho
JAVA Task 1: Implement the main method for the class UsernameGen. The main method will prompt the user running the program through the command line, at which point the user will g…
JAVA Task 1: Implement the main method for the class UsernameGen. The main metho
JAVA Task 1: Implement the main method for the class UsernameGen. The main method will prompt the user running the program through the command line, at which point the user will g…
JAVA The Bag ADT is an unordered collection that allows for multiple occurrences
JAVA The Bag ADT is an unordered collection that allows for multiple occurrences of any item. This interface is closely modeled on Frank Carrano's Bag interface in "Data Structure…
JAVA The Comparable interface is defined as follows: public interface Comparable
JAVA The Comparable interface is defined as follows: public interface Comparable<T> { int compareTo(T other); } A Film class is defined as public class Film { p…
JAVA The Student Class: A Student has a Name-first and last name seperated by a
JAVA The Student Class: A Student has a Name-first and last name seperated by a space Student ID-id starts at 100, assigned using a static variable All instance variable and gette…
JAVA The assignment is to create a text-based, turn-based Space Invaders style g
JAVA The assignment is to create a text-based, turn-based Space Invaders style game. The game board is 6 wide by 10 high, though really it could be wider but that would make the g…
JAVA The binary Search algorithm can be used with any indexed linear structure s
JAVA The binary Search algorithm can be used with any indexed linear structure such as an array. ArrayList, or LinkedList. The algorithm can be started as: While the value being s…
JAVA The binary Search algorithm can be used with any indexed linear structure s
JAVA The binary Search algorithm can be used with any indexed linear structure such as an array. ArrayList, or LinkedList. The algorithm can be started as: While the value being s…
JAVA The data file provided above has a list of names, hourly salary and hours w
JAVA The data file provided above has a list of names, hourly salary and hours worked per day. Your assignment is for each person on the list, find their total salary for the week…
JAVA The data file provided above has a list of names, hourly salary and hours w
JAVA The data file provided above has a list of names, hourly salary and hours worked per day. Your assignment is for each person on the list, find their total salary for the week…
JAVA The extra credit assignment is to create a text-based, turn-based Space Inv
JAVA The extra credit assignment is to create a text-based, turn-based Space Invaders style game. The game board is 6 wide by 10 high, though really it could be wider but that wou…
JAVA The following program contains exactly three (3) errors. Please identify th
JAVA The following program contains exactly three (3) errors. Please identify them. import java.awt.Color; import java.awt.GridLayout; import java.awt.event.*; import javax.swing.…
JAVA The formula for concerting a temperature from Fahrenheit to Celsius is C =
JAVA The formula for concerting a temperature from Fahrenheit to Celsius is C = 5/9(F - 32) Where F is the Fahrenheit temperature and C is the Celsius temperature. Write a method …
JAVA The goal for this programming project is to create a simple 2D predator–pre
JAVA The goal for this programming project is to create a simple 2D predator–prey simulation. In this simulation, the prey is ants, and the predators are doodlebugs. These critter…
JAVA The largest key in a heap-ordered binary tree is found at the leftmost leaf
JAVA The largest key in a heap-ordered binary tree is found at the leftmost leaf. Question 1 options: Question 2 (1 point) "restoring heap order" is known as Question 2 options: R…
JAVA The local Driver\'s License Office has asked you to write a program that gr
JAVA The local Driver's License Office has asked you to write a program that grades the written portion of the license exam. The exam has 20 multiple choice questions. Here are th…
JAVA The local Driver\'s License Office has asked you to write a program that gr
JAVA The local Driver's License Office has asked you to write a program that grades the written portion of the license exam. The exam has 20 multiple choice questions. Here are th…
JAVA The source code below defines a Customer class. Examines the code and answe
JAVA The source code below defines a Customer class. Examines the code and answer the questions below; public class Customer extends Person implements Comparable<Customer>{ …
JAVA The source code below defines a Device class. Examine the code and answer t
JAVA The source code below defines a Device class. Examine the code and answer the following questions; public class Device { private String MAC; private String make; private Stri…
JAVA The two-dimensional arrays ml and m2 are identical if they have the same co
JAVA The two-dimensional arrays ml and m2 are identical if they have the same contents. Write a method that returns true if ml and m2 are identical, using the following header: pu…
JAVA The word ladder game was invented by Lewis Carroll in 1877. The idea is to
JAVA The word ladder game was invented by Lewis Carroll in 1877. The idea is to being with a start word and then change one letter at a time until you arrive at the end word. Each…
JAVA There are two types of Students: Sleepy, Grumpy. Students are mostly simila
JAVA There are two types of Students: Sleepy, Grumpy. Students are mostly similar, but a little bit different. All students have a current happiness factor which is between in 10 …
JAVA This is my code..... and it is a word count generator but I havent finished
JAVA This is my code..... and it is a word count generator but I havent finished yet... Can you add Measure RunTime by using java.time.Duration; java.time.Instant for both SimPleL…
JAVA Tic Tac Nole This project can be done utilizing intellJ 1. You need to writ
JAVA Tic Tac Nole This project can be done utilizing intellJ 1. You need to write a while loop followed by if/else statements. 2. You need to write 1 while loop followed by 3 if/e…
JAVA To understand the concept of encap sulation/decap sulation, you will create
JAVA To understand the concept of encap sulation/decap sulation, you will create a simulation project of an envelope letter that will have three encapsulation headers, plus the me…
JAVA UML. NO CODE PICTURES PLS 15.5 (Create an investment-value calculator) Writ
JAVA UML. NO CODE PICTURES PLS 15.5 (Create an investment-value calculator) Write a program that calculates the future value of an investment at a given interest rate for a specif…
JAVA Use Scanner instead of Buffered read in this code: import java.io.*; class
JAVA Use Scanner instead of Buffered read in this code: import java.io.*; class Stack { private int array[]; private int top; Stack() { array=new int[100]; …
JAVA Using Scanner and the for loop statement, define a method that reads in the
JAVA Using Scanner and the for loop statement, define a method that reads in the ISBN of a book and deletes the corresponding Book from the ArrayList. The method should return tru…
JAVA Using the algorithm provided in the \"Converting Infix Expressions to Postf
JAVA Using the algorithm provided in the "Converting Infix Expressions to Postfix" lecture, write a program that converts an infix expression into an equivalent postfix expression…
JAVA Using the for loop statement, define a method that reads and displays the d
JAVA Using the for loop statement, define a method that reads and displays the details of the Book objects added in the ArrayList. Using Scanner and the for loop statement, define…
JAVA Using the for loop statement, define a method that reads the amount spent b
JAVA Using the for loop statement, define a method that reads the amount spent by each customer objects added in the ArrayList and deducts 20% of the amount spent if a customer sp…
JAVA Using the provided template, complete the program below, which will read in
JAVA Using the provided template, complete the program below, which will read in a number of minutes from the user, and convert those minutes to hours and minutes. (1) Write a met…
JAVA Using the static keyword, define an abstract class called Calculator that h
JAVA Using the static keyword, define an abstract class called Calculator that has four methods; add, subtract, divide and multiply. Each method should be defined to take two numb…