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

Browse U

Alphabetical listing with fast deep pagination.
19149 items • Page 26 / 383

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
USING JAVA, change these files so that it keeps the DVDs sorted by title. Use th
USING JAVA, change these files so that it keeps the DVDs sorted by title. Use the attached Sorting class to help you out. Make sure you include a driver to test it out. THANK YOU!…
USING JAVA, thank you! 1. Using the file Deck.java, found below, complete the De
USING JAVA, thank you! 1. Using the file Deck.java, found below, complete the Deck class by implementing the shuffle method (found in shuffler.java). Use the “efficient selection …
USING JAVA, thank you! 1. Using the file Deck.java, found below, complete the De
USING JAVA, thank you! 1. Using the file Deck.java, found below, complete the Deck class by implementing the shuffle method (found in shuffler.java). Use the “efficient selection …
USING JAVA: Create a Debit card account class that extends AbstractCardAccount a
USING JAVA: Create a Debit card account class that extends AbstractCardAccount and adds an "issuer" field that references a String. Add setter and getter methods for "issuer". thi…
USING JAVA: Create a Plane class. This class will represent a plane in our syste
USING JAVA: Create a Plane class. This class will represent a plane in our system. It should contain a constructor, two instance variables (an Airline enumeration, and a String) a…
USING JAVA: Implement a method called reverse (\"public static void reverse(Link
USING JAVA: Implement a method called reverse ("public static void reverse(LinkedList strings)") that takes in a LinkedList of strings and reverses each entry in the linked list. …
USING JAVA: Implement the quicksort optimization median-of-three , i.e., first,
USING JAVA: Implement the quicksort optimization median-of-three, i.e., first, middle, and last, as pivot for partition. Into this working quicksort algorithm: ( the spacing is ba…
USING JAVA: In this assignment you are to write a Postfix evaluator program. Not
USING JAVA: In this assignment you are to write a Postfix evaluator program. Note that one problem with the example given at this site is that the operands are restricted to singl…
USING JAVA: There are at least two types of \"nearly sorted\" arrays: k-exchange
USING JAVA: There are at least two types of "nearly sorted" arrays: k-exchanges and k-distance, where k is an integer. An array is called a k-exchanges array if the array becomes …
USING JAVA: You are to create a red-black tree which supports only the operation
USING JAVA: You are to create a red-black tree which supports only the operations listed below. All operations should have time complexity O(log n) when there are n items in the t…
USING JAVA: You are to create a red-black tree which supports only the operation
USING JAVA: You are to create a red-black tree which supports only the operations listed below. All operations should have time complexity O(log n) when there are n items in the t…
USING JAVA:: An operating system assigns jobs to print queues based on the numbe
USING JAVA:: An operating system assigns jobs to print queues based on the number of pages to be printed: Queue A: less than ten pages. Queue B: at least ten pages but less than t…
USING JAVASCRIPT/JQUERY PLEASE COMPLETE THE QUESTION BELOW: Add one button to th
USING JAVASCRIPT/JQUERY PLEASE COMPLETE THE QUESTION BELOW: Add one button to the page that will allow the user to check on future events in the area. The button label should read…
USING JGRASP and g iven driver Assignment3Driver.java (no modifications to drive
USING JGRASP and given driver Assignment3Driver.java (no modifications to driver) : --- Write a new class named Assignment3. Requirements: 1. Add two private member variables, one…
USING LASERS SAFELY To date no eye damage has been reported in the Physics Depar
USING LASERS SAFELY To date no eye damage has been reported in the Physics Department. Hopefully your careful use and respect of the lasers used in LAB Y2 will allow this situatio…
USING MAT LAB CODE: A vector w_L of length L in the direction of a vector u = xi
USING MAT LAB CODE: A vector w_L of length L in the direction of a vector u = xi + yj + zk can determined by w_L = L u_n (multiplying a unit vector in the direction of u by L). Th…
USING MAT LAB CODE: The value of pi can be estimated by: Squareroot 6 (sigma^inf
USING MAT LAB CODE: The value of pi can be estimated by: Squareroot 6 (sigma^infinity_n = 1/n^2) Write a program(using a loop) that determines the expression. Run the program with…
USING MAT LAB CODE: The value of pi can be estimated by: Squareroot 6 (sigma^inf
USING MAT LAB CODE: The value of pi can be estimated by: Squareroot 6 (sigma^infinity_n = 1/n^2) Write a program(using a loop) that determines the expression. Run the program with…
USING MATLAB (or you can write just the code) Write a Matlab function [x, t] = f
USING MATLAB (or you can write just the code) Write a Matlab function [x, t] = fs_approx (a, omega _0, tmin, tmax,  n). It is assumed that vector a = [a_- N a_- N + 1 ellipsis a_-…
USING MATLAB - PLEASE READ ALL INSTRUCTIONS - USE FOR LOOPS AND IF STATEMENTS AS
USING MATLAB - PLEASE READ ALL INSTRUCTIONS - USE FOR LOOPS AND IF STATEMENTS AS MAIN COMMANDS For the game 2048, develop code (MATLAB) to move the tiles in either the up, down, l…
USING MATLAB - PLEASE READ ALL INSTRUCTIONS For the game 2048, develop code (MAT
USING MATLAB - PLEASE READ ALL INSTRUCTIONS For the game 2048, develop code (MATLAB) to move the tiles in either the up, down, left, or right direction. Given the location of the …
USING MATLAB 1 Type in the following program. % find all powers of two less than
USING MATLAB 1 Type in the following program. % find all powers of two less than N clear all N=1250; v=1; num=1; i=1; while num < N num = 2^i; v = [v; num]; % build vector i = …
USING MATLAB 1. Fibonacci sequence A Fibonacci sequence is composed of elements
USING MATLAB 1. Fibonacci sequence A Fibonacci sequence is composed of elements created by adding the two previous elements. The simplest Fibonacci sequence starts with 1,1 and pr…
USING MATLAB 1. The distance between two points (x 1 , y 1 ) and (x 2 , y 2 ) on
USING MATLAB 1. The distance between two points (x1, y1) and (x2, y2) on a Cartesian coordinate plane is given by the equation d =sqrt((x1 ? x2)2 + (y1 ? y2)2) Write a function to…
USING MATLAB For the game 2048, develop code (MATLAB) to move the tiles in eithe
USING MATLAB For the game 2048, develop code (MATLAB) to move the tiles in either the up, down, left, or right direction. Given the location of the tiles, calculate how the tiles …
USING MATLAB For this problem you will be creating a \"tip table\" that could be
USING MATLAB For this problem you will be creating a "tip table" that could be used to look up an amount to leave as a tip given the restaurant bill. In addition to the column for…
USING MATLAB Given various screenshots of people playing 2048, identify which ti
USING MATLAB Given various screenshots of people playing 2048, identify which tiles are currently on the board! Represent the game board as a 2D matrix of numeric values; each ent…
USING MATLAB HINT Submit your m-file and a diary that shows how you tested the c
USING MATLAB HINT Submit your m-file and a diary that shows how you tested the code. Create a function csolve.m with input a matrix A and no output. The function should display th…
USING MATLAB I will like to see the commands and outputs acc numbers are the num
USING MATLAB I will like to see the commands and outputs acc numbers are the numbers in a sequence in which the first three elements are 0,1, 1, and the value of each subsequent e…
USING MATLAB LANGUAGE Create a file called plantes.txt with the contents shown b
USING MATLAB LANGUAGE Create a file called plantes.txt with the contents shown below and place it in your working directory: Mercury: R = 1, 516 mi, D = 35.98 * 10^6 mi, M = 3.285…
USING MATLAB ONLY - PLEASE COMMENT CODE IN DETAIL & SHOW OUTPUT Write an M-file
USING MATLAB ONLY - PLEASE COMMENT CODE IN DETAIL & SHOW OUTPUT Write an M-file.- Write a Function. Write a function that will accept two single ASCII characters and return a …
USING MATLAB ONLY - PLEASE COMMENT CODE IN DETAIL & SHOW OUTPUT Write an M-file.
USING MATLAB ONLY - PLEASE COMMENT CODE IN DETAIL & SHOW OUTPUT Write an M-file. Using the for loop structure write a program to transpose a matrix. In your script define an a…
USING MATLAB ONLY - PLEASE COMMENT CODE IN DETAIL & SHOW OUTPUT Write an M-file.
USING MATLAB ONLY - PLEASE COMMENT CODE IN DETAIL & SHOW OUTPUT Write an M-file.- Write a Function. Write a function that will accept two single ASCII characters and return a …
USING MATLAB ONLY - PLEASE COMMENT CODE IN DETAIL & SHOW OUTPUT Write an M-file.
USING MATLAB ONLY - PLEASE COMMENT CODE IN DETAIL & SHOW OUTPUT Write an M-file. Write Script M-file Generate two arrays, A and B with the following values: A(i) = 1/3 + i B(i…
USING MATLAB ONLY - PLEASE COMMENT CODE IN DETAIL Function regressConst : In thi
USING MATLAB ONLY - PLEASE COMMENT CODE IN DETAIL Function regressConst: In this function you will calculate a0 and a1 as defined above. The input to the function will be the two …
USING MATLAB ONLY - PLEASE COMMENT CODE Write an M-file . Using the for loop str
USING MATLAB ONLY - PLEASE COMMENT CODE Write an M-file. Using the for loop structure write a program to calculate terms of the geometric series with a = 1 and r = 0.5. Set format…
USING MATLAB PLEASE WRITE A CODE TO SOLVE THE FOLLOWING QUESTION be a second ord
USING MATLAB PLEASE WRITE A CODE TO SOLVE THE FOLLOWING QUESTION be a second order dynamical system. in which-fW is the input with unit (m/s2), x = x(t) is the output in (m), 2.5 …
USING MATLAB PROGRAM The variation of gravitational acceleration g with altitude
USING MATLAB PROGRAM The variation of gravitational acceleration g with altitude y is given by: g = R^2/(R + y)^3 g_0 where R = 6371km is the radius of the Earth, and g_0 = 9.81 m…
USING MATLAB Problem 2. Create a USER DEFINED FUNCTION that finds the roots of a
USING MATLAB Problem 2. Create a USER DEFINED FUNCTION that finds the roots of a quadratic equation. Required Conditions 1) 2) 3) We need to consider three cases (Repeating Real R…
USING MATLAB Series solutions are often a convenient way to approximate an answe
USING MATLAB Series solutions are often a convenient way to approximate an answer for complex equations, especially with partial differential equations. A simple example of this a…
USING MATLAB The following system of equations is designed to determine concentr
USING MATLAB The following system of equations is designed to determine concentrations (x) in a series of coupled reactors as a function of the amount of mass input to each reacto…
USING MATLAB USING MATLAB The volume V and paper surface area A of a conical pap
USING MATLAB USING MATLAB The volume V and paper surface area A of a conical paper cup are given by V = 1/3 pi r^2 h A = pi r squareroot r^2 + h^2 where r is the radius of the bas…
USING MATLAB USING MATLAB numbers. The probability, P, of guessing m numbers out
USING MATLAB USING MATLAB numbers. The probability, P, of guessing m numbers out of the r numbers can be calculated by the expression: mr-m n! Where-In this problem, we want to wr…
USING MATLAB to SOLVE 1. Gcnerate a random matrix A of size 3×3, with random int
USING MATLAB to SOLVE 1. Gcnerate a random matrix A of size 3×3, with random integers between 0 and 2, Compute det A, det (2A), and det (10A) (you will need to use randi for this)…
USING MATLAB write the following: Write a program, guessing.m, that does the fol
USING MATLAB write the following: Write a program, guessing.m, that does the following: The computer generates a random integer between 1 and 20 (inclusive). The computer displays…
USING MATLAB( math modeling class)I NEED THE CODES FOR EACH PARTS AND IF IT IS P
USING MATLAB( math modeling class)I NEED THE CODES FOR EACH PARTS AND IF IT IS POSSIBLE THE FIGURES ) Create arrays in MATLAB containing the data on growth of paramecium given in …
USING MATLAB, please do #2 and #3 2. Assume we have a solar panel on a platform
USING MATLAB, please do #2 and #3 2. Assume we have a solar panel on a platform attached to a motor. Our motor is a step motor that controls the angle of our solar panel. This mea…
USING MATLAB- write an MATLAB function named linear_search(). Your MATLAB functi
USING MATLAB- write an MATLAB function named linear_search(). Your MATLAB function linear_search() should have two parameters: an unsorted array of non-negative integers, and an i…
USING MATLAB: Given the initial conditions y(0) = 1 and y\'(0) = 0, solve the fo
USING MATLAB: Given the initial conditions y(0) = 1 and y'(0) = 0, solve the following initial value problem from t = 0 to 4: Obtain your solutions with Eulers method Convert the …
USING MATLAB: Please show how to do this in Matlab a) Create a script file that
USING MATLAB: Please show how to do this in Matlab a) Create a script file that uses three sets of nested loops to calculate the final temperature of a light bulb filament. The th…