Browse J
Alphabetical listing with fast deep pagination.
10965 items • Page 75 / 220
Java Create a static method named openFile that meets these requirements: Contai
Java Create a static method named openFile that meets these requirements: Contains proper header documentation that includes a professional description, @throws, and @return. Note…
Java Create an Invoice class that might serve as a receipt for items sold. An In
Java Create an Invoice class that might serve as a receipt for items sold. An Invoice should be defined by the following attributes: productName : String quantityPurchased : int p…
Java Create four classes: 1. An Animal class that acts as a superclass for Dog a
Java Create four classes: 1. An Animal class that acts as a superclass for Dog and Bird 2. A Bird class that is a descendant of Animal 3. A Dog class that is a desc…
Java Create four classes: 1. An Animal class that acts as a superclass for Dog a
Java Create four classes: 1. An Animal class that acts as a superclass for Dog and Bird 2. A Bird class that is a descendant of Animal 3. A Dog class that is a …
Java Create four classes: 1. An Animal class that acts as a superclass for Dog a
Java Create four classes: 1. An Animal class that acts as a superclass for Dog and Bird 2. A Bird class that is a descendant of Animal 3. A Dog class that is a …
Java Creating Classes I already submitted this once, but there are a lot of corr
Java Creating Classes I already submitted this once, but there are a lot of corrections needed to be made in my code Below are the instructions, my wrong code, the bold comments s…
Java Custom Book Exception Hello, I am having trouble with my custom book except
Java Custom Book Exception Hello, I am having trouble with my custom book exception to interact with my program that creates a book object and for that too finally interact with m…
Java DB Query Assume that a bicycle has the following attributes: 1. Type (mount
Java DB Query Assume that a bicycle has the following attributes: 1. Type (mountain bike, race bike or street bike) 2. Number of gears (4-10, in increments of 1) 3. Wheel base (36…
Java Data Structure and Algorithm b) The processing time of an algorithm is desc
Java Data Structure and Algorithm b) The processing time of an algorithm is described by the following recurrence equation (c is a positive constant): T(n) = 3T(n/3) + 2cn; T(1) =…
Java Data Structure questions 1. Explain why a binary search implementation of a
Java Data Structure questions 1. Explain why a binary search implementation of a sorted chain is impractical. 2. Given the following data set: 3 7 9 4 2 5, which sorting method wo…
Java Data Structures and Algorithms - Trees Please answer at least 5 of the ques
Java Data Structures and Algorithms - Trees Please answer at least 5 of the questions for points, response with most answers will get all points. Write a function that receives a …
Java Data Structures and Big-Oh Performance Estimation Create a class for testin
Java Data Structures and Big-Oh Performance Estimation Create a class for testing data structures. This class should be able to read and write text files. It should be able to sto…
Java Data Structures and Big-Oh Performance Estimation Create a class that can b
Java Data Structures and Big-Oh Performance Estimation Create a class that can be used to test data structure - similar to the StudentA.java example found shown below: StudentA.ja…
Java Database Connect Write a program that views, inserts, and updates staff inf
Java Database Connect Write a program that views, inserts, and updates staff information stored in a database, as shown below. The view button displays a record with a specified I…
Java Database Connect Write a program that views, inserts, and updates staff inf
Java Database Connect Write a program that views, inserts, and updates staff information stored in a database, as shown below. The view button displays a record with a specified I…
Java Date Class It should store a month, day, and year, report date (toString())
Java Date Class It should store a month, day, and year, report date (toString()), date setting (constructors and getters/setters), as well as some basic error detection (for examp…
Java Description You are given the task of reading a student’s name, semester le
Java Description You are given the task of reading a student’s name, semester letter grades, and semester hours attempted from one file; calculating the semester GPA; and writing …
Java Design a base class to hold the following information about a bank account:
Java Design a base class to hold the following information about a bank account: Balance Number of deposits this month Number of withdrawals Annual interest rate Monthly service c…
Java Design a program in Java that performs a topological sort on a directed gra
Java Design a program in Java that performs a topological sort on a directed graph. Read the graph using System.in. Store the graph in an adjacency matrix, and print output to Sys…
Java Design a program in Java that performs a topological sort on a directed gra
Java Design a program in Java that performs a topological sort on a directed graph. Read the graph using System.in. Store the graph in an adjacency matrix, and print output to Sys…
Java Design a user defined class called Course. Each course object will hold dat
Java Design a user defined class called Course. Each course object will hold data about a course. The data includes courseID, courseName, credits and instructorName. Define the in…
Java Design and implement a Java program (name it Patterns). Document your code,
Java Design and implement a Java program (name it Patterns). Document your code, and organize and space the outputs. Divide your code into 4 sections, one for each pattern. Notice…
Java Developing an OOP Console Application OBJECTIVES Create a class in java wit
Java Developing an OOP Console Application OBJECTIVES Create a class in java with appropriate methods. Process user input with the class using the scanner for keyboard input and c…
Java Dice Game: Defined a class named Die and provide necessary data fields (Mem
Java Dice Game: Defined a class named Die and provide necessary data fields (Members) and methods, make sure all your classes overwrites toString mathod, then write a class called…
Java Driver License Online Test The local driver\'s license office has asked you
Java Driver License Online Test The local driver's license office has asked you to write a program that grades the written portion of the driver's license Rules and Signals Test. …
Java Dynamic Data Structures and Generics: Create an application that will keep
Java Dynamic Data Structures and Generics: Create an application that will keep track of several groups of strings. Each string will be a member of exactly one group. We would lik…
Java Each node maintains a vector of distances and next hops to all destinations
Java Each node maintains a vector of distances and next hops to all destinations 1. Initialize vector with 0 cost to self, infinity to other destinations 2. Periodically send vect…
Java Eclipse - Euler 3 JUnit Test Case? I solved Euler 3 on java eclipse now I j
Java Eclipse - Euler 3 JUnit Test Case? I solved Euler 3 on java eclipse now I just need to create 2 JUnit test cases for my already existing code which should both pass. package …
Java Eclipse Lets say I want to use instance variables (birthdate,day,month,year
Java Eclipse Lets say I want to use instance variables (birthdate,day,month,year). I want the user to enter their day month and year components oftheir birthdate and save that int…
Java Eclipse Understand the Classes and Problem Every message contains some cont
Java Eclipse Understand the Classes and Problem Every message contains some content ("The British are coming! The British are coming!"). We could enhance this by adding other trai…
Java Eclipse Understand the Classes and Problem We wish to move our Card classes
Java Eclipse Understand the Classes and Problem We wish to move our Card classes from the realm of console apps to that of GUI apps. We'll do this in stages. Read and display Card…
Java Eclipse Understand the Problem You are going to parallel the development do
Java Eclipse Understand the Problem You are going to parallel the development done in a past lesson on inheritance where we constructed some base classes, StackNode and Stack, and…
Java Eclipse You are to write a program name Array List that creates Array list
Java Eclipse You are to write a program name Array List that creates Array list data structure similar to the Ana Last data Structure float exist library. The class must be writte…
Java Eclipse-Please provide code! Create a class named \"Price\", this class con
Java Eclipse-Please provide code! Create a class named "Price", this class contains -three instance variables: price, quantity, couponvalue -one constructor with three parameters,…
Java Employee class: Modification 1: In the first constructor, make a copy of th
Java Employee class: Modification 1: In the first constructor, make a copy of the paychecks parameter before using it to set the listOfPaychecks instance variable. Modification 2:…
Java Every class in Java inherits from another class, even if there is no explic
Java Every class in Java inherits from another class, even if there is no explicit extends clause. Question 7 options: True False Question 8 A subclass can call private methods fr…
Java Exam 1 Study Guide Question 1 Explain the importance of each topic in Java
Java Exam 1 Study Guide Question 1 Explain the importance of each topic in Java and provide a example/ how-to for each. 1. Strings and string formatting 2. Errors and error messag…
Java Exception Handling The class IntList as defined below stores a list of inte
Java Exception Handling The class IntList as defined below stores a list of integers using an inter- nal array. Implement the method void remove(int i) so that it removes ith elem…
Java Exception Write an application that asks the user to \"Enter two integers s
Java Exception Write an application that asks the user to "Enter two integers separated by a comma". You will need to use a String data type to get this input. The String class ha…
Java Exercise: Create an object called Circle and write a test program that uses
Java Exercise: Create an object called Circle and write a test program that uses the Circle class. Details for your Circle object: Two private instance variables: radius (of type …
Java Exercises: Command line arguments: •This lab is designed to use command lin
Java Exercises: Command line arguments: •This lab is designed to use command line arguments. The program is designed to be run with an integer command line argument. Examples: jav…
Java Explain how to use a Scanner object to read information from a page on the
Java Explain how to use a Scanner object to read information from a page on the internet. Give an example. Explain what a wrapper classes are and how they are used in Java. Give a…
Java Expression Trees **This has to be written using Binary Expression Trees!**
Java Expression Trees **This has to be written using Binary Expression Trees!** For this assignment you will write a program using and Expression Tree that reads postfix expressio…
Java Expression Trees **This has to be written using the Tree data structure!**
Java Expression Trees **This has to be written using the Tree data structure!** For this assignment you will write a program using and Expression Tree that reads postfix expressio…
Java Expression Trees For this assignment you will write a program using and Exp
Java Expression Trees For this assignment you will write a program using and Expression Tree that reads postfix expression from the user, one per line, then converts the postfix e…
Java Expression Trees For this assignment you will write a program using and Exp
Java Expression Trees For this assignment you will write a program using and Expression Tree that reads postfix expression from the user, one per line, then converts the postfix e…
Java FX Change this code to another one that does the same but do not looks the
Java FX Change this code to another one that does the same but do not looks the same Code: package Project-03 Application Viewer; import javax.swing.*; import java.awt.*; import j…
Java FX Shopping Cart system Create an application that works like a shopping ca
Java FX Shopping Cart system Create an application that works like a shopping cart system for an online book store. The text file named Bookprices.txt which you will create contai…
Java FX User Interface and Multimedia Questions 1. To set a red color for the te
Java FX User Interface and Multimedia Questions 1. To set a red color for the text in the label lbl, use ________. A. lbl.setFill(Color.red); B. lbl.setTextFill(Color.red); C. lbl…
Java Features / Requirements: Requirements you\'ll need a way to store multiple
Java Features / Requirements: Requirements you'll need a way to store multiple die rolls; we don't know Arrays yet (the sort ofequivalent of lists in Python)… so you'll probably m…