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 97 / 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 Write a program that reads in a file called ‘input.txt’ and prints out ever
Java Write a program that reads in a file called ‘input.txt’ and prints out every other word to a file called ‘output.txt’. You will embed the input/output names for the files in …
Java Write a program that simulates a very simple HR application for a company.
Java Write a program that simulates a very simple HR application for a company. Your program should be able to: 1. List all the current employees 2. Add a new employee 3. Remove a…
Java Write a program to generate the entire calendar for one year. The program m
Java Write a program to generate the entire calendar for one year. The program must get two values from the user: (1) the year and (2) the day of the week for January 1st of that …
Java Write a program with a graphical interface that allows the user to convert
Java Write a program with a graphical interface that allows the user to convert an amount of money between U.S. dollars (USD), euros (EUR), and British pounds (GBP). The user inte…
Java Write a recursive definition for the following methods and test the methods
Java Write a recursive definition for the following methods and test the methods 1. Compute the product of n integers -productInteger(n) = 1*2*3*4*5*…*n (n >=1) • Test it with …
Java Write a recursive method to calculate the size of a population of organisms
Java Write a recursive method to calculate the size of a population of organisms that increases at a specified rate each day. The method header is: public int populationSize(int s…
Java Write a recursive method to calculate the size of a population of organisms
Java Write a recursive method to calculate the size of a population of organisms that increases at a specified rate each day. The method header is: public int populationSize(int s…
Java Write a recursive, string -valued method , reverse, that accepts a string a
Java Write a recursive, string -valued  method , reverse, that accepts a string and returns a new string consisting of the original string in reverse. For example, calling reverse…
Java Write a replace method for the ArrayBag class. This method: -replaces any o
Java Write a replace method for the ArrayBag class. This method: -replaces any object currently in the bag with an object sent in as a parameter -returns the object that is replac…
Java Write a static method that finds the minimum of 2 integers and returns the
Java Write a static method that finds the minimum of 2 integers and returns the minimum integer if the min is less than 5, else it returns 0. (skip writing a class and main, only …
Java Write a static recursive method named frequencyCount(n,d) that returns the
Java Write a static recursive method named frequencyCount(n,d) that returns the frequency of occurrence of a particular digit d in an integer n. For example, frequencyCount(134245…
Java Write an application that creates a simple Grade class and then writes Grad
Java Write an application that creates a simple Grade class and then writes Grade Object data to a RandomAccessFile object. Grade Class Instance variables: studentID:byte, grade:d…
Java Write an intersection method for the ResizableArrayBag class. The intersect
Java Write an intersection method for the ResizableArrayBag class. The intersection of two bags is the overlapping content of the bags. Intersections are explained in more detail …
Java Write code that does the following: Opens a file named numbers.txt, uses a
Java Write code that does the following: Opens a file named numbers.txt, uses a loop to write the odd numbers from 1 through 200 to the file and then close the file Write the code…
Java Write statements from the client perspective to accomplish the following ta
Java Write statements from the client perspective to accomplish the following task. Remove duplicate Strings from a BagInterface<String> called myWords You can use a second,…
Java Write statements from the client perspective to accomplish the following ta
Java Write statements from the client perspective to accomplish the following tasks. Display the last names of all students in a ListInterface<Student>object called studentL…
Java Write statements from the client perspective to accomplish the following ta
Java Write statements from the client perspective to accomplish the following task. Remove duplicate Strings from a BagInterface<String> called myWords You can use a second,…
Java Write statements from the client perspective to accomplish the following ta
Java Write statements from the client perspective to accomplish the following task. You are given two ListInterface<String> objects called letters and vowels. letters contai…
Java Write the EmployeePayroll class to read an input file of Employee payroll i
Java Write the EmployeePayroll class to read an input file of Employee payroll information, process the payroll for each Employee, and then write out information to an output file…
Java Write the class definition for a Date class that contains three integer dat
Java Write the class definition for a Date class that contains three integer data members: month, day, and year. Include a default constructor that assigns the date 1/1/2000 to an…
Java Write the definition of a class, swimmingPool, to implement the properties
Java Write the definition of a class, swimmingPool, to implement the properties of a swimming pool. Your class should have the instance variables to store the length (in feet), wi…
Java Write the function void insertAtTail (int v). Don’t add any class variables
Java Write the function void insertAtTail (int v). Don’t add any class variables to the List class. Here are the class definitions of Node and List that implement a linked list. c…
Java Write the methods with the following headers Return the reversal of an inte
Java Write the methods with the following headers Return the reversal of an integer, i.e., reverse(456) returns 654 public static mt reverse(int number) Return true if number is a…
Java You are given a stack stack and a queue queue of Integers. Write client-lev
Java You are given a stack stack and a queue queue of Integers. Write client-level statements to create a new queue newQ that merges stack and queue. The new queue contains the co…
Java You are to create a direct messenger program. In particular, the program wi
Java You are to create a direct messenger program. In particular, the program will perform as follows: It must behave as either a client or a server, depending on the command line…
Java You are to create the classic game of Wheel of Fortune. Your application sh
Java You are to create the classic game of Wheel of Fortune. Your application should consist of 3 players, underlines to represent letters in the puzzle, and the available letters…
Java You are to write a program to simulate the arrivals, placements, and depart
Java You are to write a program to simulate the arrivals, placements, and departures of segments in a segmented virtual memory. The input file will contain a sequence of commands.…
Java You goal in this project is to create a simple Java project using the NetBe
Java You goal in this project is to create a simple Java project using the NetBeans IDE. The project should create a simple information page (not complete in any away) about the d…
Java You have a class in your program called Animal that has methods for eat, sl
Java You have a class in your program called Animal that has methods for eat, sleep, and move. You need to create a Bird class, with a different implementation of the move method.…
Java You have been hired by the company Find Me A House Fast. Your job is to pro
Java You have been hired by the company Find Me A House Fast. Your job is to produce a list of real-estate listings that meet a client's criterion. You have a list of real-estate …
Java You have been hired by the company Find Me A House Fast. Your job is to pro
Java You have been hired by the company Find Me A House Fast. Your job is to produce a list of real-estate listings that meet a client's criterion. You have a list of real-estate …
Java You must put any code that might possibly throw an exception inside a try-c
Java You must put any code that might possibly throw an exception inside a try-catch block. Question 15 options: True False Question 16 What is the base type for both the Error an…
Java Your assignment is to write a dictionary program that uses a tree structure
Java Your assignment is to write a dictionary program that uses a tree structure. See project 8 on page 669 and figure 24-8 on page 689 in your text for some additional hints/idea…
Java Your program should ask the user to enter a number of sides (N) for the mag
Java Your program should ask the user to enter a number of sides (N) for the magic square. Your program should handle: 1, 3, 4, 5, 7, 8, 9, 11, 12, 13, 15, 16, 17 For 2, you shoul…
Java \'Array of references card game. In this project you will create a solution
Java 'Array of references card game. In this project you will create a solution designed to play a simplified version of the card game "WAR" . we will use simplified rules of the …
Java \'Array of references card game. In this project you will create a solution
Java 'Array of references card game. In this project you will create a solution designed to play a simplified version of the card game "WAR" . we will use simplified rules of the …
Java add code in ??? Take a non-empty string composed only of letters \'A\' to \
Java add code in ??? Take a non-empty string composed only of letters 'A' to 'H' and the EMPTY_CHAR ('.'), and return a new string that contains only the letters, with the letters…
Java algorithm : Use BFS to implement a crawler to crawl and discover the wikipe
Java algorithm: Use BFS to implement a crawler to crawl and discover the wikipedia graph. Called WikiCrawler.java 1 BFS and Web Graph We can the model web as a directed graph. Eve…
Java algorithm help: Description: After hearing about the epidemic of obesity in
Java algorithm help: Description: After hearing about the epidemic of obesity in the USA, Farmer John wants his cows to get more exercise, so he has committed to creating a bovine…
Java algorithms to be included in your analysis are: Selection Sort, Insertion S
Java algorithms to be included in your analysis are: Selection Sort, Insertion Sort, Merge Sort, Quick Sort. You will run and time the algorithms under the following inputs: List …
Java algorithms to be included in your analysis are: Selection Sort, Insertion S
Java algorithms to be included in your analysis are: Selection Sort, Insertion Sort, Merge Sort, Quick Sort. You will run and time the algorithms under the following inputs: List …
Java allows marking variables (fields / locals / parameters) as final, to preven
Java allows marking variables (fields / locals / parameters) as final, to prevent re-assigning into them. I find it very useful with fields, as it helps me quickly see whether som…
Java allows you to declare methods with the same name in a class. This is called
Java allows you to declare methods with the same name in a class. This is called ________. method duplication method overriding method overloading method redeclaration All the upd…
Java allows you to have a List of List objects or Set of Set objects, but not a
Java allows you to have a List of List objects or Set of Set objects, but not a List or Set of Map objects. a) True b) False Being able to declare a List or a List is made possibl…
Java an introduction to problem solving and programming Write a Temperature clas
Java an introduction to problem solving and programming Write a Temperature class that represents temperatures in degrees in both Celsius and Fahrenheit. Use a floating-point numb…
Java and Algorithm problem. Please, show the stepss The balance index of an arra
Java and Algorithm problem. Please, show the stepss The balance index of an array of integers is an index such that the sum of elements at lower indexes is equal to the sum of ele…
Java and Data structure It is almost Halloween time. Three kids: Larry, Curly an
Java and Data structure It is almost Halloween time. Three kids: Larry, Curly and Moe decide to go trick or treating together dressed as an array, Array List and Linked List respe…
Java and Twitter API project: Write a java class (or several) and connect to Twi
Java and Twitter API project: Write a java class (or several) and connect to Twitter API 1.1 and search against the key word “Harvard”. The result should return the tweets in JSON…
Java application that uses a loop control structure. Use the Scanner class to ac
Java application that uses a loop control structure. Use the Scanner class to accept a number between 1 and 10 from the user. While the number entered is not between 1 and 10 (inc…
Java applications using the JCF, Java Collections Framework Design a java applic
Java applications using the JCF, Java Collections Framework Design a java application that maintains the data fo a simple social network. Each person in the network should have a …