Web development and programming
191828 questions • Page 56 / 3837
(JAVA) write a program that store random number from 1 to 52 in a array Create a
(JAVA) write a program that store random number from 1 to 52 in a array Create another array, store first four number and find the biggest one. Run 10000 times to see the occurenc…
(JAVA)Create a program that accepts as user input 1 for heads, 2 for tails and a
(JAVA)Create a program that accepts as user input 1 for heads, 2 for tails and any other numeric value to exit. You must use “do while” loop. You must use the same single variable…
(JAVA)Plot Weather Data(from txt file) using JFreeChart For this assignment, it
(JAVA)Plot Weather Data(from txt file) using JFreeChart For this assignment, it requires to read in a data file containing weather observations for Anchorage, parse the contents o…
(JAVA)Use a variable to accept and store user input. This variable will be a num
(JAVA)Use a variable to accept and store user input. This variable will be a number representing the month. Ex. Jan = 1, Feb =2, Mar =3, … Your code will figure out and display th…
(JAVASCRIPT)
(JAVASCRIPT) <?xml version="1.0" encoding="utf-8"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> <html xmlns="h…
(Java 7 Programming Language) For this final project, you will be given a CDR (C
(Java 7 Programming Language) For this final project, you will be given a CDR (Call Data Record) which is a log file from a phone system. There is a header that you must deal with…
(Java 7 Programming Language) For this final project, you will be given a CDR (C
(Java 7 Programming Language) For this final project, you will be given a CDR (Call Data Record) which is a log file from a phone system. There is a header that you must deal with…
(Java ? 7 IDE Programming Language) Design a class named Employee. The class sho
(Java ? 7 IDE Programming Language) Design a class named Employee. The class should keep the following information in fields: Employee name Employee number in the format XXX-L, wh…
(Java Assignment) Write a program that simulates and scores a game of bowling. A
(Java Assignment) Write a program that simulates and scores a game of bowling. As background information, here is an explanation of terminology and scoring. Your game will need to…
(Java Code) . The program works well, but it makes some assumptions about the wa
(Java Code) . The program works well, but it makes some assumptions about the way movie ratings are stored. All the ratings have to be in the same scale (e.g. in this example, the…
(Java Code) Now that we have the data in an array, we can calculate the statisti
(Java Code) Now that we have the data in an array, we can calculate the statistics. Add the possibility of an optional fourth token on a line, found only in readings with precipit…
(Java Homework) Hello, having a hard time with this Java HW... Can Anyone help d
(Java Homework) Hello, having a hard time with this Java HW... Can Anyone help direct me ??? Part 1: Classes and Overloaded Methods In the provided part1 subdirectory, implement t…
(Java Language)A bag can contain more than one copy of an element. For example,
(Java Language)A bag can contain more than one copy of an element. For example, this number 4 and two copies of the number 8. This bag behavior is different from a set, which can …
(Java Problem)In this question we will step you through implementing classes and
(Java Problem)In this question we will step you through implementing classes and methods in Java for a new ride-sharing app called Rebu. Rebu connects passengers looking for a rid…
(Java Program) Create a java program that would let you remove/add contact info
(Java Program) Create a java program that would let you remove/add contact info to ur phonebook. Use "Doubly Linked List" to implement the phonebook. Contact infos includes name, …
(Java Program) write three classes: Die, PairOfDice, and Player. The Die class m
(Java Program) write three classes: Die, PairOfDice, and Player. The Die class mimics the rolling of a die. Specifically, this class will implement the following methods: A defaul…
(Java Programing Help) For this problem assume a graph consists of five nodes, A
(Java Programing Help) For this problem assume a graph consists of five nodes, A, B, C, D and E, with two edges, one connecting A and B and the other one connecting B and C. A gra…
(Java Programming) Lies, D@^# Lies, and Statistics Write a class AveragingNumber
(Java Programming) Lies, D@^# Lies, and Statistics Write a class AveragingNumbers with the following static methods // The following method takes the original array, and // uses A…
(Java Programming) Problem Statement The Monte Carlo (MC) method is a probabilis
(Java Programming) Problem Statement The Monte Carlo (MC) method is a probabilistic model or simulation with a wide range of applications. In this Project you will create a progra…
(Java Programming) public class Chapter7Stub { public static void main(String[]
(Java Programming) public class Chapter7Stub { public static void main(String[] args){ int[] deck = new int[52]; //Initialize deck to cards which range from 8 to 59 inclus…
(Java code) Download one version of the complete real estate portfolio manager p
(Java code) Download one version of the complete real estate portfolio manager program. Choose either of the two array list versions (version 2 using static methods or version 3 u…
(Java code) Part B: Order up, continued ( Please write coments ) For this questi
(Java code) Part B: Order up, continued ( Please write coments ) For this question, you will continue to refine your "Order up" program from the previous question. The first chang…
(Java is the language we must use) NO ARRAYS please help Write a program that pr
(Java is the language we must use) NO ARRAYS please help Write a program that presents the user a menu of four choices, “Circle”, “Square”, “Rectangle”, and “Exit” to calculate th…
(Java language) Do linked list by hand CS 2401 Assignment #4 Due Date: Friday, O
(Java language) Do linked list by hand CS 2401 Assignment #4 Due Date: Friday, October 06, 11:59PM (See the syllabus for late policy) Objective: The goal of this assignment is to …
(Java language) Use head.next, head.next.next cure, etc etc... From Lab Assignme
(Java language) Use head.next, head.next.next cure, etc etc... From Lab Assignment 3, you know that a sample file may look like the following one. 20 108 4.5 8.45 12.2 8.0 2.5 4.0…
(Java program) please use clear variable names and use the mark scheme below as
(Java program) please use clear variable names and use the mark scheme below as a quide please ensure that all requirements are seen such as the address Date of birth registration…
(Java programming )Use the test application shown below to guide you in creating
(Java programming )Use the test application shown below to guide you in creating your class. Complete the five tasks specified in the comments. This code should be run to produce …
(Java syntax checker) Write a program that checks whether a user-input Java for-
(Java syntax checker) Write a program that checks whether a user-input Java for-loop definition is valid. Use the simplified rules that follow. • No optional spaces are allowed. •…
(Java with UCANACCESS) Spiderman Database You will be making a comics database w
(Java with UCANACCESS) Spiderman Database You will be making a comics database with a spiderman table. You will design and create the table, add records, make changes to the field…
(Java) 1/ Bowler[ ] myTeam; How many objects did the line above create? 2/ Bowle
(Java) 1/ Bowler[ ] myTeam; How many objects did the line above create? 2/ Bowler[ ] myTeam = new Bowler[5]; How many objects did the line above create? 3/ What will happen if I t…
(Java) Bank account access simulation: The bank account should have withdraw and
(Java) Bank account access simulation: The bank account should have withdraw and deposit methods (subtract and add 1 from the balance respectively) You should have many (in the th…
(Java) Consider the following if statement, where doesSignificantWork, makesBrea
(Java) Consider the following if statement, where doesSignificantWork, makesBreakthrough, and nobelPrizeCandidate are all boolean variables: if (doesSignificantWork) { if (makesBr…
(Java) Content of text file example: GameOfLife4.txt Assignment John H. Conway,
(Java) Content of text file example: GameOfLife4.txt Assignment John H. Conway, a Cambridge mathematician, invented the Game of Life. The simulation runs on a two-dimensional arra…
(Java) Create a java program sorting stack of integers with the smallest number
(Java) Create a java program sorting stack of integers with the smallest number on top in descending order. One is allowed to use one stack to hold the data and another stack as a…
(Java) Create a movie class definition file containing the movie name and year.
(Java) Create a movie class definition file containing the movie name and year. Now create a Queue of movie objects. Let the user pick whether they want to add a movie to the Queu…
(Java) Create a program called CalcWeightedAvgWithExceptions, and use try-catch-
(Java) Create a program called CalcWeightedAvgWithExceptions, and use try-catch-finally blocks in your methods, as in the examples try-catch-finally examples from the class notes …
(Java) Design a class named Queue for storing integers. Like a stack, a queue ho
(Java) Design a class named Queue for storing integers. Like a stack, a queue holds elements. In a stack, the elements are retrieved in a last-in first-out fashion. In a queue, th…
(Java) Design a class named Triangle that extends GeometricObject. The class con
(Java) Design a class named Triangle that extends GeometricObject. The class contains: Three double data fields named side1, side2, and side3 with default values 1.0 to denote thr…
(Java) Fill in the following program at the three comment spots for combined lab
(Java) Fill in the following program at the three comment spots for combined lab exercises 17-1, 17-2, 17-3. Convert the user input into a command line argument of the full path c…
(Java) For the class \"MyClass\" below write a method that takes as input an arr
(Java) For the class "MyClass" below write a method that takes as input an array of MyClass objects and returns a LinkedList of MyClass objects. This list should contain those obj…
(Java) For this project, you will create a program that asks the user to enter a
(Java) For this project, you will create a program that asks the user to enter a positive integer value less than 20. If the user enters a number greater than 20, the user should …
(Java) Given the IntListElement class below: class IntListElement { IntListEleme
(Java) Given the IntListElement class below: class IntListElement { IntListElement(int value, IntListElement e) { data = value; next = e; } IntListElement next; in…
(Java) How can I fix this SLQ error? Is something wrong with the date perhaps? (
(Java) How can I fix this SLQ error? Is something wrong with the date perhaps? (I put line 23 in bold) UCAExc:::4.0.3 data exception: invalid character value for cast at net.ucana…
(Java) Huffman Coding: Start from Weiss, pg. 500, problem 12.1: Problem 12.1: Sh
(Java) Huffman Coding: Start from Weiss, pg. 500, problem 12.1: Problem 12.1: Show the Huffman tree that results from the following distribution of punctuation characters and digi…
(Java) In this assignment you will be managing small equities portfolio made up
(Java) In this assignment you will be managing small equities portfolio made up of single company stocks, Exchange traded funds (ETF), and a Real Estate Investment Trust (REIT). E…
(Java) I’m having issues getting my readFile method to read a CSV file correctly
(Java) I’m having issues getting my readFile method to read a CSV file correctly. PetBoardingList is the class that houses the readFile method and generates reports. The requireme…
(Java) Java selection structure. Write a Java program that reads in a temperatur
(Java) Java selection structure. Write a Java program that reads in a temperature in either degrees Fahrenheit, Celsius, or Kelvin and converts the temperature to the other two fo…
(Java) Part 1- Finding Least Expensive Routes (50 points) Consider the problem o
(Java) Part 1- Finding Least Expensive Routes (50 points) Consider the problem of finding the least expensive routes to all cities in a network from a given starting point. For ex…
(Java) Please follow the instructions at the bottom of the picture exactly Drive
(Java) Please follow the instructions at the bottom of the picture exactly Driver License Online Test The local driver's license office has asked you to write a program that grade…
(Java) Please include one data type class and one driver class in the program. P
(Java) Please include one data type class and one driver class in the program. Please also include a UML diagram and pseudocode. B. REQUIREMENT STATEMENT THIS LAB REQUIRES OBJECT …
Subject
Web development and programming
Use Browse or pick another subject.