Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

Browse J

Alphabetical listing with fast deep pagination.
10965 items • Page 72 / 220

All 0-9 A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
Java A frog object is defined wtih two values name and value. These two peices o
Java A frog object is defined wtih two values name and value. These two peices of information are used as the search criteria for finding a frog. The frog object also has an id th…
Java A frog object is defined wtih two values name and value. These two peices o
Java A frog object is defined wtih two values name and value. These two peices of information are used as the search criteria for finding a frog. The frog object also has an id th…
Java A frog object is defined wtih two values name and value. These two peices o
Java A frog object is defined wtih two values name and value. These two peices of information are used as the search criteria for finding a frog. The frog object also has an id th…
Java A frog object is defined wtih two values name and value. These two peices o
Java A frog object is defined wtih two values name and value. These two peices of information are used as the search criteria for finding a frog. The frog object also has an id th…
Java A jumble of a word w is obtained by rearranging the letters of the word in
Java A jumble of a word w is obtained by rearranging the letters of the word in some random order. For example, if w = “tpra”, then “rapt”, “part”, “trap”, “ptra” are some of the …
Java A palindrome is a word or phrase that reads the same forward and backward,
Java A palindrome is a word or phrase that reads the same forward and backward, ignoring blanks and considering uppercase and lowercase versions of the same letter to be equal.for…
Java A palindrome is a word or phrase that reads the same forward and backward,
Java A palindrome is a word or phrase that reads the same forward and backward, ignoring blanks and considering uppercase and lowercase versions of the same letter to be equal.for…
Java A palindrome is a word or phrase that reads the same forward and backward,
Java A palindrome is a word or phrase that reads the same forward and backward, ignoring blanks and considering uppercase and lowercase versions of the same letter to be equal.for…
Java A phone company bills customers as follows: $20/month base fee per account
Java A phone company bills customers as follows: $20/month base fee per account $0. 12 per minute for calls that started between 8:00 AM and 10:00 PM, inclusive $0. 05 per minute …
Java A point is inside the triangle. (b) A triangle is inside another triangle.
Java A point is inside the triangle. (b) A triangle is inside another triangle. (c) A triangle overlaps another triangle. Draw the UML diagram for the class and then implement the…
Java A: Write an Exception class called TemperatureTooLow.java that will be used
Java A: Write an Exception class called TemperatureTooLow.java that will be used in the following program. B: Write a class called Fridge.java, which has an instance variable call…
Java A: Write an Exception class called TemperatureTooLow.java that will be used
Java A: Write an Exception class called TemperatureTooLow.java that will be used in the following program. B: Write a class called Fridge.java, which has an instance variable call…
Java API /JavaCS2/src/comparables/Person.java /JavaCS2/src/comparables/Student.j
Java API /JavaCS2/src/comparables/Person.java /JavaCS2/src/comparables/Student.java /JavaCS2/src/comparables/Employee.java Suppose we want to alter the Person class so that it imp…
Java Abstract Classes and Methods Outcome: Show that you are able to: demonstrat
Java Abstract Classes and Methods Outcome: Show that you are able to: demonstrate the ability to create abstract classes demonstrate the ability to create abstract methods demonst…
Java Abstract Classes and Methods Outcome: Show that you are able to: demonstrat
Java Abstract Classes and Methods Outcome: Show that you are able to: demonstrate the ability to create abstract classes demonstrate the ability to create abstract methods demonst…
Java Add a method to the Data class that returns the object with the largest mea
Java Add a method to the Data class that returns the object with the largest measure, as measured by the supplied measurer. public static Object max(Object[] objects, Measurer m) …
Java Advanced Inheritance Review Questions 1. Parent classes are a. less specifi
Java Advanced Inheritance Review Questions 1. Parent classes are a. less specific , less specifethan their child classes b. more specific c. casier to understand d. more cryptic 2…
Java Algorithm: Merge() and MergeSort() ----------------------------------- NOTE
Java Algorithm: Merge() and MergeSort() ----------------------------------- NOTE: ONLY fill in the TODO part, then provide explanation. Do NOT change codes outside of the Merge() …
Java Algorithms The skeleton code below is the start of a program to solve the 0
Java Algorithms The skeleton code below is the start of a program to solve the 0-1 knapsack problem (p425 in CLRS, and lecture notes): Given n objects, each with integer weight wi…
Java An experiment was conducted and resulted in a series of pH measurements. Th
Java An experiment was conducted and resulted in a series of pH measurements. The number of samples is known ahead of time. Have your program prompt the user to enter that number …
Java Applet Program Write a java applet to calculate a monthly loan payment and
Java Applet Program Write a java applet to calculate a monthly loan payment and the total amount to be paid over the life of a loan. Ask the user for the amount of the loan, the i…
Java Applet: Write an applet that displays four concentric circles. Each circle
Java Applet: Write an applet that displays four concentric circles. Each circle should have a lighter shade of the same color.(HINT: Look uo the brighter method in the Color class…
Java Applets For the following excercises, print screen in addition to the code.
Java Applets For the following excercises, print screen in addition to the code. 1. Use the Java API at http://docs.oracle.com to read about Java’s Graphics class. Learn how to us…
Java Application According to Wikipedia, a Caesar cipher, also known as Caesar\'
Java Application According to Wikipedia, a Caesar cipher, also known as Caesar's cipher, the shift cipher, Caesar's code or Caesar shift, is one of the simplest and most widely kn…
Java Application Implement a restaurant waiting list application with the follow
Java Application Implement a restaurant waiting list application with the following features/functionality: Inputs for guest name, and number of people in the party. Additionally,…
Java Application Implement a restaurant waiting list application with the follow
Java Application Implement a restaurant waiting list application with the following features/functionality: Inputs for guest name, and number of people in the party. Additionally,…
Java Array Application Write a class named ArraySort that has no instance variab
Java Array Application Write a class named ArraySort that has no instance variables, and the following public static methods public static void main(String[] args) - this main met…
Java Array Excercise Write a RainFall class that stores the total rainfall for e
Java Array Excercise Write a RainFall class that stores the total rainfall for each of 12 months into an array of floats. The program should have methods that return the following…
Java Array The method rotateLeft() takes in a reference a to an integer array an
Java Array The method rotateLeft() takes in a reference a to an integer array and a positive integer n and it returns a new array whose contents is the contents of the input array…
Java Array question, currently fixing up the loop for odd-indexed elements. gett
Java Array question, currently fixing up the loop for odd-indexed elements. getting this error Error: array required, but ArrayMethodsL8a found, this takes place from the section …
Java ArrayList In-class Exercise It is often the case that new data structures a
Java ArrayList In-class Exercise It is often the case that new data structures are written using other existing data structures as an underlying model. In this practice exercise w…
Java Arrays , I need help finishing the last bit of my code with the following,
Java Arrays, I need help finishing the last bit of my code with the following, mostly my issue is with the boolean array for part 1, and sending the length of the array im calcula…
Java Arrays Lab Objectives Be able to declare and instantiate arrays Be able to
Java Arrays Lab Objectives Be able to declare and instantiate arrays Be able to fill an array using a for loop Be able to access and process data in an array Be able to write a so…
Java Assignment (Baby name popularity ranking) The popularity ranking of baby na
Java Assignment (Baby name popularity ranking) The popularity ranking of baby names from year 2006 to 2015 can be downloaded from www.ssa.gov/oact/babynames and stored in files na…
Java Assignment (Lab 11)-Dungeons and Dragons and Objects Instructions: You will
Java Assignment (Lab 11)-Dungeons and Dragons and Objects Instructions: You will need to create several classes: Player, Monster, Hoard, Goblin, Troll, and Dragon. Goblins, Trolls…
Java Assignment (covers Graphics, Classes, Arrays and Files) Assignment: \"The p
Java Assignment (covers Graphics, Classes, Arrays and Files) Assignment: "The people who cast the votes decide nothing. The people who count the votes decide everything."    -Jose…
Java Assignment (covers Graphics, Classes, Arrays and Files) Assignment: \"The p
Java Assignment (covers Graphics, Classes, Arrays and Files) Assignment: "The people who cast the votes decide nothing. The people who count the votes decide everything."    -Jose…
Java Assignment - GradeBookEntry Make GradeBookEntry an abstract class. Remove n
Java Assignment - GradeBookEntry Make GradeBookEntry an abstract class. Remove numericGrade member variable. Make getNumericGrade an abstract method. Add getData as an abstract me…
Java Assignment - Program 8 (two classes) Follow the directions below to submit
Java Assignment - Program 8 (two classes) Follow the directions below to submit Assignment 8: 1. You will create a Java program that will consist of two classes. One class will be…
Java Assignment / Multiple Tickers TOPICS Multithreading Animation Configuring P
Java Assignment / Multiple Tickers TOPICS Multithreading Animation Configuring Properties Customizing Objects DESCRIPTION General Create an application that displays three moving …
Java Assignment 2 This assignment requires take the floor of the number, not rou
Java Assignment 2 This assignment requires take the floor of the number, not round it. I need some help. Thank you. I have included my code below. This assignment will focus on th…
Java Assignment Chapter *12.1 (NumberFormatException) Listing 7.9, Calculator.ja
Java Assignment Chapter *12.1 (NumberFormatException) Listing 7.9, Calculator.java, is a simple commandline calculator. Note that the program terminates if any operand is nonnumer…
Java Assignment Design a java class to represent a credit card. Try to design th
Java Assignment Design a java class to represent a credit card. Try to design the class such that it only fields and methods relevant to a credit card itself without branching int…
Java Assignment First, launch NetBeans and close any previous projects that may
Java Assignment First, launch NetBeans and close any previous projects that may be open (at the top menu go to File ==> Close All Projects). Then create a new Java application …
Java Assignment First, launch NetBeans and close any previous projects that may
Java Assignment First, launch NetBeans and close any previous projects that may be open (at the top menu go to File ==> Close All Projects). Then, create a new Java application…
Java Assignment First, launch NetBeans and close any previous projects that may
Java Assignment First, launch NetBeans and close any previous projects that may be open (at the top menu go to File ==> Close All Projects). Then, create a new Java application…
Java Assignment I need help with design a java class. This material is somewhat
Java Assignment I need help with design a java class. This material is somewhat more theoretical than that of previous topics, so instead of writing a program for this assignment,…
Java Assignment I need help with design. This material is somewhat more theoreti
Java Assignment I need help with design. This material is somewhat more theoretical than that of previous topics, so instead of writing a program for this assignment, you are goin…
Java Assignment If the user attempts to divide by 0, my divide method is suppose
Java Assignment If the user attempts to divide by 0, my divide method is supposed to prevent the division by 0 which is undefined and then assign Double.NaN to the relevan array e…
Java Assignment Improved JavaFX GUI Personal Lending Library Description: In thi
Java Assignment Improved JavaFX GUI Personal Lending Library Description: In this project improve your personal lending library tool by (1) adding the ability to delete items from…