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 114 / 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: create a SortArray class and a test class to bubbleSort, InsertionSort, an
Java: create a SortArray class and a test class to bubbleSort, InsertionSort, and selectionSort based on user input: Tasks: Implement the sorting techniques Insertion, Bubble, and…
Java: do commented \"to do\" projects commented in the class: import java.util.R
Java: do commented "to do" projects commented in the class: import java.util.Random; /** * Player class for the game of Odd or Even * * @author: YOUR NAME * @version: 10/14/2017 *…
Java: fill in code. import java.util.*; public class Chapter6_FillInTheCode { pu
Java: fill in code. import java.util.*; public class Chapter6_FillInTheCode { public static void main(String[] args) { Scanner keyboard = new Scanner(System.in); // exercise 21 //…
Java: fill in the comments in the ArrayMethodsL8b. Client and sample run include
Java: fill in the comments in the ArrayMethodsL8b. Client and sample run included. /** Supporting methods for an integer array * @author YOUR NAME * @version 10/27/2013 */ public …
Java: finish code so it compiles; already commented as to what to do. Client alr
Java: finish code so it compiles; already commented as to what to do. Client already complete and posted as well. when finished, compile both and make sure it produces the correct…
Java: implement a program that calculates and displays the grade average for a t
Java: implement a program that calculates and displays the grade average for a test. service class Test should have one instance variable: courseName, secondary constructor, and t…
Java: please make sure code compiles and runs before posting. Write a program th
Java: please make sure code compiles and runs before posting. Write a program that reads from the attached text file called Logic.txt one word at a time. The program counts how ma…
Java: please make sure it compiles. Write a program that takes a String as input
Java: please make sure it compiles. Write a program that takes a String as input from the keyboard, representing a year. Your program should do the following: utilize matches meth…
Java: please make sure it compiles. Write a program that takes a String as input
Java: please make sure it compiles. Write a program that takes a String as input from the keyboard, representing a year. Your program should do the following: utilize matches meth…
Java: public class SecondProgram{ /*Print a message to the console, instructing
Java: public class SecondProgram{ /*Print a message to the console, instructing the user to type a wise message for an owl to say. • Collect that message into an appropriately nam…
Java: public static long fibby(long n){ if (n==0){ return 1; } return fibby(n/4)
Java: public static long fibby(long n){        if (n==0){            return 1;        }          return fibby(n/4)+fibby(3*n/4);   public static void tablegen(int start,int end){ …
Java: this is all one question Question #1 Geometry: n-sided regular polygon) An
Java: this is all one question Question #1 Geometry: n-sided regular polygon) An n-sided regular polygon has n sides of the same length and all angles have the same degree (i.e.. …
Java: tracing activity: explain how this code produced the following output (bas
Java: tracing activity: explain how this code produced the following output (basically just talk about what is happening during each part of the code): when the code is run in Ecl…
Java: write a service class called Course that implements a concept of a course
Java: write a service class called Course that implements a concept of a course and has the following defined: three fields: a code (which must be one of "CS1", "CS2", "CS3" or "C…
Java:Write a program that computes the monthly loan payment, given the loan amou
Java:Write a program that computes the monthly loan payment, given the loan amount (a double value), the interest, as a percent % (a double value), and the number of years to repa…
Java; need help with the below //push into the stack when push thing on stack, t
Java; need help with the below //push into the stack when push thing on stack, the stack has to reorder //lower values have higher priority //pop higher priority first //create Or…
Java; please dont use @Override, and comment as much as you can, thanks. write a
Java; please dont use @Override, and comment as much as you can, thanks. write a service class called Course that implements a concept of a course and has the following defined: t…
JavaFX (Java) MVC (Model portion) Currently making an application that will proj
JavaFX (Java) MVC (Model portion) Currently making an application that will project a Hogwarts (harry potter) type theme. In order to process this, I will need the applicaiton, co…
JavaFX - ( Raise flags ) - Rewrite Listing 15.13 using a thread to animate a fla
JavaFX - (Raise flags) - Rewrite Listing 15.13 using a thread to animate a flag being raised. Compare the program with Listing 15.13 by setting the delay time to 10 in both progra…
JavaFX DataSetBookGUI Can you please help me the JAVA program below? The program
JavaFX DataSetBookGUI Can you please help me the JAVA program below? The programs I provide below only have Add Book function. Can you please Add Video function as the requirement…
JavaFX Events Introduction The purpose of this assignment is to get you familiar
JavaFX Events Introduction The purpose of this assignment is to get you familiar with the basics of the JavaFX Events. In particular you will need to be familiar with ActionEvents…
JavaFX Events Introduction The purpose of this assignment is to get you familiar
JavaFX Events Introduction The purpose of this assignment is to get you familiar with the basics of the JavaFX Events. In particular you will need to be familiar with ActionEvents…
JavaFX FlowPane setup. Trying to set up a window that has two pictures. I am jus
JavaFX FlowPane setup. Trying to set up a window that has two pictures. I am just looking for tips on how to setup my stage and scene in the first section. Over all I want (two pi…
JavaFX GUI Can you please help me the JAVA program? here is the requirement: Bui
JavaFX GUI Can you please help me the JAVA program? here is the requirement: Build JavaFX GUI The first image shows the initial image produced by the program. It has labels for Au…
JavaFX GUI Can you please help me the JAVA program? here is the requirement: Bui
JavaFX GUI Can you please help me the JAVA program? here is the requirement: Build JavaFX GUI program as the images below. The first image shows the initial image produced by the …
JavaFX User Interface for Calculator In this assignment, you will write a user i
JavaFX User Interface for Calculator In this assignment, you will write a user interface for your calculator using JavaFX. Your graphical user interface (GUI) should look like the…
JavaFX You are building a software for a pizza shop that has gone high-tech with
JavaFX You are building a software for a pizza shop that has gone high-tech with touch displays allowing customers to order themselves and pick up their order when it is ready! Th…
JavaFX button needs doulbe click. I understand where it is happening but unsure
JavaFX button needs doulbe click. I understand where it is happening but unsure how to fix this. This is a temperature converter but it does not do anything until the second click…
JavaFX program: (Revising Listing 19.1) Revise the GenericStack class in Listing
JavaFX program: (Revising Listing 19.1) Revise the GenericStack class in Listing 19.1 to implement it using an array rather than an ArrayList. You should check the array size befo…
JavaFX programming (Not Javascript) Using the code from BallPane.java and Bounce
JavaFX programming (Not Javascript) Using the code from BallPane.java and BounceBallControl.java create a "Pong for One" game - a rectangular paddle moves back and forth via mouse…
JavaFX programming Using the code from BallPane.java and BounceBallControl.java
JavaFX programming Using the code from BallPane.java and BounceBallControl.java create a "Pong for One" game - a rectangular paddle moves back and forth via mouse drag along the b…
JavaFX programming Using the code from BallPane.java and BounceBallControl.java
JavaFX programming Using the code from BallPane.java and BounceBallControl.java create a "Pong for One" game - a rectangular paddle moves back and forth via mouse drag along the b…
JavaFx Part 1 – Build a simple GUI program. 1. DisplayStudent – Create the Displ
JavaFx Part 1 – Build a simple GUI program. 1. DisplayStudent – Create the DisplayStudent class. It will extend Application and contain a start() method, and a main() method too i…
JavaHelp From Person Class, derive Doctor. The Doctor should have a string for a
JavaHelp From Person Class, derive Doctor. The Doctor should have a string for a specialty, string for gender, string for hospital, int for years of experience and an array list o…
JavaJam WEBSITE CASE STUDY Styling for the Mobile Web cotqures the webaite for d
JavaJam WEBSITE CASE STUDY Styling for the Mobile Web cotqures the webaite for display on moble devices. g case studies continues throughout most of the text. This chapter Each of…
JavaJam: Home page; Menu page; Music page f. How does the US WEBSITE CASE STUDY
JavaJam: Home page; Menu page; Music page f. How does the US WEBSITE CASE STUDY Using Graphics & Visual Elements Each of the case studies in this section continues throughout …
JavaProgramming Instructions Write a Java program according to the problem speci
JavaProgramming Instructions Write a Java program according to the problem specifications and constraints specified below. Use [part of] your name in the class(es) developed. Prob…
JavaQuestion 5 3 pts Edit this Question Delete this Question 0 multiple_choice_q
JavaQuestion 5 3 pts Edit this Question Delete this Question 0 multiple_choice_question 790682 <font style="font-family: 'Arial'; font-size: 10pt;">(TCOs 1, 2, and 6) Which …
JavaScrip Problems #12. Refactor the previous code: create a function \'test\' w
JavaScrip Problems #12. Refactor the previous code: create a function 'test' which has 1 argument called 'guess'. This function will return the string values you previously used c…
JavaScrip Problems #7) Declare a function named square which has a variable \'x\
JavaScrip Problems #7) Declare a function named square which has a variable 'x' which is 5 then returns x multiplied by itself (squares the number). Then execute that function at …
JavaScript (No PHP) Metro Bank Mortgage Calculator You\'ve been hired to do some
JavaScript (No PHP) Metro Bank Mortgage Calculator You've been hired to do some programming for Metro Bank. They want you to create a program to calculate loan payments. The user …
JavaScript + PHP + HTML help, simple question Hi everyone! I have a simple probl
JavaScript + PHP + HTML help, simple question Hi everyone! I have a simple problem I need to fix. It's for a form I'm doing, where I have check boxes that once clicked, it throws …
JavaScript - Build with Node.js Follow the instructions bellow for a good rate C
JavaScript - Build with Node.js Follow the instructions bellow for a good rate Create a program that will display the result of three functions: a) sum every second element from t…
JavaScript 1. FizzBuzz Submit js file with functioning code Write a program that
JavaScript 1. FizzBuzz Submit js file with functioning code Write a program that uses console.log to print all the numbers from 1 to 120, with two exceptions. For numbers divisibl…
JavaScript 1. If you create a variable outside of all functions, it has ________
JavaScript 1. If you create a variable outside of all functions, it has ___________________ scope. 2. When you’re working in ECMAScript5 _____________________mode, an error is thr…
JavaScript 1.To ensure that loops execute correctly, you must include code that
JavaScript 1.To ensure that loops execute correctly, you must include code that changes the value of the conditional expression.   True or False 2. ____ is a combination of JavaSc…
JavaScript 13. One way to resolve the debugging problems that can result from th
JavaScript 13. One way to resolve the debugging problems that can result from the imprecision of floating-point arithmetic is to _____________________ the results of your calculat…
JavaScript 18. The ______________________ operator returns a true value if the e
JavaScript 18. The ______________________ operator returns a true value if the expression on its left is greater than or equal to the expression on its right. 19. The ____________…
JavaScript Assignment Overview In this assignment, you\'ll create one of two pos
JavaScript Assignment Overview In this assignment, you'll create one of two possible computer games: Word Guess or Psychic. These apps will run in the browser, and feature dynamic…
JavaScript C13 Question 1 (1 point) Which property of the Number object returns
JavaScript C13 Question 1 (1 point) Which property of the Number object returns the largest positive value that JavaScript can represent? Question 1 options: MIN_VALUE MAX_VALUE P…