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 96 / 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 VP of Sales at Nvidia Inc wants to system so she can a. Track sales of 3 pr
Java VP of Sales at Nvidia Inc wants to system so she can a. Track sales of 3 products (GTX, Titan and 1080ati), for 3 quarters in 2017(q1, q2, q3) and three georgraphies in US(We…
Java Vector To determine if the number is happy: 1. Start with the number itself
Java Vector To determine if the number is happy: 1. Start with the number itself 2. Calculate the sum of the square of its digits. 3. If this sum is equal to 1, the number is happ…
Java Vending Machine Program To begin, create an abstract \"Snack\" class. Then,
Java Vending Machine Program To begin, create an abstract "Snack" class. Then, create two classes "Salty" and "Sweet" that inherit from the "Snack" class. These 2 classes of Snack…
Java We have an assignment with the tasks of “creating” a deck of cards, placing
Java We have an assignment with the tasks of “creating” a deck of cards, placing the contents in a single-dimensional array, and then displaying the contents of the array. Make su…
Java We will look at the behavior of three different sorts on randomly generated
Java We will look at the behavior of three different sorts on randomly generated lists of different sizes The three sorts are bubblesort, insertion sort, and quicksort. Randomly g…
Java What do you need to know in order to do this lab? Input, Output, Validation
Java What do you need to know in order to do this lab? Input, Output, Validation, Compound Conditions, Functions, Loops and Decisions What you will do: For your third lab, you wil…
Java What is the difference between a class and an interface 1.Classes have fiel
Java What is the difference between a class and an interface 1.Classes have fields and methods and interfaces have only methods 2.Classes have only concrete methods and interfaces…
Java What is the order of growth (Big-Oh) of the following algorithm(s): 1. disp
Java What is the order of growth (Big-Oh) of the following algorithm(s): 1. display all integers in an array of integers 2. display all integers in a chain of linked nodes 3. disp…
Java What type of EventListener is used to respond to the user moving or draggin
Java What type of EventListener is used to respond to the user moving or dragging the mouse? Question 19 options: MouseListener MouseMotionListener ActionListener ExceptionHandler…
Java What, if anything, is wrong with the following Java method that uses except
Java What, if anything, is wrong with the following Java method that uses exceptions? If there is something wrong with it. what is the most natural way of fixing it? public void g…
Java What, if anything, is wrong with the following Java method that uses except
Java What, if anything, is wrong with the following Java method that uses exceptions? If there is something wrong with it, what is the most natural way of fixing it? public void g…
Java When a variable ceases to exist at the end of a method, programmers say the
Java When a variable ceases to exist at the end of a method, programmers say the variable ____. Flag this Question Question 21 pts A method is declared as public static void showR…
Java When a variable ceases to exist at the end of a method, programmers say the
Java When a variable ceases to exist at the end of a method, programmers say the variable ____. Flag this Question Question 21 pts A method is declared as public static void showR…
Java When responding to a user request, the servlet should extract the search st
Java When responding to a user request, the servlet should extract the search string from the Request object and use the DataSource object to find all films that have the search s…
Java When your app starts, it should provide the main menu GUI with four options
Java When your app starts, it should provide the main menu GUI with four options of “Create Account”, “Reserve Seat”, “Cancel Reservation”, and “Manage System”. Create a correct a…
Java Which if the following is true about overriding and overloading? 1.Overridi
Java Which if the following is true about overriding and overloading? 1.Overriding always apply to methods in a parent and child class and overloading always applies to methods in…
Java Word Processing Program Create a word processing program that can: Spellche
Java Word Processing Program Create a word processing program that can: Spellcheck *** This is the one that I am having the most trouble working on. Find and Replace words Select …
Java Word Processing Program Create a word processing program that can: Spellche
Java Word Processing Program Create a word processing program that can: Spellcheck *** This is the one that I am having the most trouble working on. Find and Replace words Select …
Java Write a Circle class that has the following member variables; · radius: a d
Java Write a Circle class that has the following member variables; · radius: a double · pi: a double with value 3.142 · The class should have the following member functions: · Def…
Java Write a JSP program that generates 5 math questions randomly, as shown in t
Java Write a JSP program that generates 5 math questions randomly, as shown in the figure below. The numbers must be two-digit numbers generated randomly. And the arithmetic opera…
Java Write a class encapsulating the concept of student grades on a test, assumi
Java Write a class encapsulating the concept of student grades on a test, assuming student grades are composed of a list of integers between 0 and 100. Write the following methods…
Java Write a class for Student grade data and write a program to create an objec
Java Write a class for Student grade data and write a program to create an object from this class and use it to produce a report Write a class for Student grade data: 1.   The cla…
Java Write a class named Employee that has the following fields: name. the name
Java Write a class named Employee that has the following fields: name. the name field references a String object that holds the employee's name. idNumber. The idNumber is an int v…
Java Write a command line calculator. Implement the (), +, -, /, *, and % functi
Java Write a command line calculator. Implement the (), +, -, /, *, and % functions. Make sure your calculator works with both integers and doubles.  Here's an example run: javac …
Java Write a complete display() method for the LList class. LList implements Lis
Java Write a complete display() method for the LList class. LList implements ListInterface using linked nodes. The method prints to the console the list index of each element alon…
Java Write a complete display() method for the LList class. LList implements Lis
Java Write a complete display() method for the LList class. LList implements ListInterface using linked nodes. The method prints to the console the list index of each element alon…
Java Write a complete getSomeEntry() method to add to the ArrayBag class. ArrayB
Java Write a complete getSomeEntry() method to add to the ArrayBag class. ArrayBag implements BagInterface using an array. The method returns an unspecified entry of the ArrayBag.…
Java Write a complete method at the client level called countMultipleOf. The met
Java Write a complete method at the client level called countMultipleOf. The method counts how many items in a bag are multiples of some number. For example, if a bag contains (8,…
Java Write a complete method to find the range of numbers contained in a list. T
Java Write a complete method to find the range of numbers contained in a list. The range is defined as number of numbers between the minimum and maximum, including both the minimu…
Java Write a console-based Java application to help an airline customer find goo
Java Write a console-based Java application to help an airline customer find good ways of redeeming his/her accumulated mileage into airline tickets. Assume all trips depart from …
Java Write a contains method for a linked implementation of a sorted list. This
Java Write a contains method for a linked implementation of a sorted list. This method is written from the implementation perspective, meaning it goes inside of the SortedLinkedLi…
Java Write a game of 5 card stud, where you play against the computer. The compu
Java Write a game of 5 card stud, where you play against the computer. The computer will be the dealer. Guide 5 Card Stud Final Project Description of the Game The computer will a…
Java Write a graphical application that produces a restaurant bill. YOU WILL NOT
Java Write a graphical application that produces a restaurant bill. YOU WILL NOT BE GRADED ON LAYOUT/AESTHETICS. SOLEY ON FUNCTIONALITY AND ADHERANCE TO REQUIREMENTS. Provide butt…
Java Write a little poker game which lets the player play a round of Poker again
Java Write a little poker game which lets the player play a round of Poker against the computer The ranking of the 5 cards are as follows POKER HAND RANKING CHART Consists ofthe f…
Java Write a method called makeStars. The method receives an int parameter that
Java Write a method called makeStars. The method receives an int parameter that is guaranteed not to be negative. The method returns a String whose length equals the parameter and…
Java Write a method insertionSort that sorts the values from smallest value to t
Java Write a method insertionSort that sorts the values from smallest value to the largest. The method should compare the two closest values, and shift them according to the value…
Java Write a method that receives a reference to the root of a B-tree T and an i
Java Write a method that receives a reference to the root of a B-tree T and an integer d and prints, in descending order, all the keys that are stored in nodes at depth d in the t…
Java Write a method to add two matrices and a method to multiply two matrices. T
Java Write a method to add two matrices and a method to multiply two matrices. The headers of the two methods are: public static double [] [] multiplyMatrix(double[][] a, double[]…
Java Write a method to determine if a chain of linked nodes is sorted in ascendi
Java Write a method to determine if a chain of linked nodes is sorted in ascending order. The method header is: public boolean isSortedAscending(Node<Comparable> firstInChai…
Java Write a modified Selection sort algorithm, called maxSelectionSort, whose i
Java Write a modified Selection sort algorithm, called maxSelectionSort, whose invariants for the outer loop is: After the first iteration, the last number is the maximum of the n…
Java Write a program that allows the user to add or display a memo. Memos should
Java Write a program that allows the user to add or display a memo. Memos should be added to the end of the file. If the user wants to display a memo, a list of the existing topic…
Java Write a program that allows users to input an integer for the size of an ar
Java Write a program that allows users to input an integer for the size of an array. Randomly generate an integer for each element of the array. Next, create the function to rotat…
Java Write a program that asks the user to enter any number of test scores and c
Java Write a program that asks the user to enter any number of test scores and calculate their averages. After each test score is entered, validate that the score is between 0 to …
Java Write a program that asks the user to enter the name, opening price, closin
Java Write a program that asks the user to enter the name, opening price, closing price, and number of shares owned for a stock. Have the program compute the current value of the …
Java Write a program that calculates stock value and dividend yield: Input the f
Java Write a program that calculates stock value and dividend yield: Input the following five variables – use an input prompt and align the input: stock name; stock ticker; stock …
Java Write a program that calculates stock value and dividend yield: Input the f
Java Write a program that calculates stock value and dividend yield: Input the following five variables – use an input prompt and align the input: stock name; stock ticker; stock …
Java Write a program that has two parallel arrays of String objects. One of the
Java Write a program that has two parallel arrays of String objects. One of the arrays should hold people's names and the other should hold their phone numbers. Here are your samp…
Java Write a program that has two parallel arrays of String objects. One of the
Java Write a program that has two parallel arrays of String objects. One of the arrays should hold people's names and the other should hold their phone numbers. Here are your samp…
Java Write a program that models a list of possibly overlapping rectangular twod
Java Write a program that models a list of possibly overlapping rectangular twodimensional windows, like the windows for the programs open on your computer. Use an ArrayList to st…
Java Write a program that prompts the user to enter an integer literal from 0 to
Java Write a program that prompts the user to enter an integer literal from 0 to 15 (inclusive) as either a decimal, hexadecimal, or binary literal. When entering values as hexade…