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

Web development and programming

191828 questions • Page 52 / 3837

(For the following assignment, please answer in the most SIMPLEST FORM possible.
(For the following assignment, please answer in the most SIMPLEST FORM possible. Nothing too intricate as I am only a beginner. THANK YOU) C++ LANGUAGE PLEASE!! Exercise 11 Write …
(For those who already know C or C++) What is the binding time for each of the f
(For those who already know C or C++) What is the binding time for each of the following in a C or C++ program? State the binding time as precisely as possible (language-definitio…
(For those who already know C or C++) What is the binding time for each of the f
(For those who already know C or C++) What is the binding time for each of the following in a C or C++ program? State the binding time as precisely as possible (language-definitio…
(Fragmentation) Suppose that host A is connected to a router R1, R1 is connected
(Fragmentation) Suppose that host A is connected to a router R1, R1 is connected to another router R2, and R2 is connected to host B. Suppose that a TCP message that contains 900 …
(Fragmentation) Suppose that host A is connected to a router R1, R1 is connected
(Fragmentation) Suppose that host A is connected to a router R1, R1 is connected to another router R2, and R2 is connected to host B. Suppose that a TCP message that contains 900 …
(From Weiss \"Data Structures and Algorithm Analysis in Java, 3rd Edition\", Sho
(From Weiss "Data Structures and Algorithm Analysis in Java, 3rd Edition", Shortened Problem #2.7) For each of the program fragments, give an analysis of the running time (Big-Oh,…
(Functions and Pointers) Write a program that will use a function to calculate a
(Functions and Pointers) Write a program that will use a function to calculate and print the value of Y given by the following formula: Y(x) = x^2/2-x lnx Use the function prototy…
(G6 - 7 points) Output the following lines of text exactly as they appear below:
(G6 - 7 points) Output the following lines of text exactly as they appear below: Fall Semester, 2016 ITEC 2140: Java Programming Fundamentals! My major is [fill in your program ma…
(Gaddis Chapter 11- Programming Challenges 1. Movie Data) Write a program called
(Gaddis Chapter 11- Programming Challenges 1. Movie Data) Write a program called movie.cpp that uses a structure named MovieData to store the following information about a movie T…
(Game: Tic-tac-toe) Write a program that plays the tic-tac-toe game. Two players
(Game: Tic-tac-toe) Write a program that plays the tic-tac-toe game. Two players take turns clicking an available cell in a grid with their respective tokens (either X or O). When…
(Game: connect four) Connect four is a two-player board game in which the player
(Game: connect four) Connect four is a two-player board game in which the players alternately drop colored disks into a seven-column, six-row vertically suspended grid, as shown b…
(Game: display four cards) Use the same cards from Exercise 12.9 to display a fr
(Game: display four cards) Use the same cards from Exercise 12.9 to display a frame that contains four buttons. All buttons have the same icon from backCard.png, as shown in Figur…
(Game: displaying a TicTacToe board) Display a frame that contains nine labels.
(Game: displaying a TicTacToe board) Display a frame that contains nine labels. A label may display an image icon for X, an image icon for O, or nothing, as shown in Figure 12.15(…
(Game: hangman) Write a hangman game that randomly generates a word and prompts
(Game: hangman) Write a hangman game that randomly generates a word and prompts the user to guess one letter at a time, as shown in the sample run. Each letter in the word is disp…
(Game: scissor, rock, paper) Write a program that plays the popular scissor-rock
(Game: scissor, rock, paper) Write a program that plays the popular scissor-rock- paper game. (A scissor can cut a paper, a rock can knock a scissor, and a paper can wrap a rock.)…
(Game: scissor, rock, paper) Write a program that plays the popular scissor-rock
(Game: scissor, rock, paper) Write a program that plays the popular scissor-rock-paper game. (A scissor can cut a paper, a rock can knock a scissor, and a paper can wrap a rock.) …
(Gas Mileage) Drivers are concerned with the mileage their automobiles get. One
(Gas Mileage) Drivers are concerned with the mileage their automobiles get. One driver has kept track of serveral trips by recording the miles driven and gallons used for each tan…
(GasMileage) Drivers are concerned with the mileage their automobiles get. One d
(GasMileage) Drivers are concerned with the mileage their automobiles get. One driver has kept track of several trips by recording the miles driven and gallons used for each tankf…
(General math) a. Construct a class named Fractions containing two integer data
(General math) a. Construct a class named Fractions containing two integer data members named num and denom, used to store the numerator and denominator of a fraction having the f…
(Geometry: The Circle2D class) Define the Circle2D class that contains: Two doub
(Geometry: The Circle2D class) Define the Circle2D class that contains: Two double data fields named x and y that specify the center of the circle with get methods. A data field r…
(Geometry: area of a pentagon) Write a program that prompts the user to enter th
(Geometry: area of a pentagon) Write a program that prompts the user to enter the length from the center of a pentagon to a vertex and computes the area of the pentagon, as shown …
(Geometry: intersecting point) Suppose two line segments intersect. The two endp
(Geometry: intersecting point) Suppose two line segments intersect. The two endpoints for the first line segment are (x1, y1) and (x2, y2) and for the second line segment are (x3,…
(Geometry: n-sided regular polygon) In an n-sided regular polygon, all sides hav
(Geometry: n-sided regular polygon) In an n-sided regular polygon, all sides have the same length and all angles have the same degree (i.e., the polygon is both equilateral and eq…
(Geometry: the MyRectangle2D class) Define the MyRectangle2D class that contains
(Geometry: the MyRectangle2D class) Define the MyRectangle2D class that contains: ? Two double data fields named x and y that specify the center of the rectangle with get and set …
(Geometry: the MyRectangle2D class) Define the MyRectangle2D class that contains
(Geometry: the MyRectangle2D class) Define the MyRectangle2D class that contains: ? Two double data fields named x and y that specify the center of the rectangle with getter and s…
(Geometry: two rectangles) Write a program that prompts the user to enter the ce
(Geometry: two rectangles) Write a program that prompts the user to enter the center coordinates, width, and height of two rectangles from the command line. The program displays t…
(Given the situation described ) You are in charge of developing a 30-KDSI embed
(Given the situation described ) You are in charge of developing a 30-KDSI embedded product that is nominal in most areas except that run time constraints are high, memory constra…
(Global Warming Facts Quiz) The controversial issue of global warming has been w
(Global Warming Facts Quiz) The controversial issue of global warming has been widely publicized by the film “An Inconvenient Truth,” featuring former Vice President Al Gore.Mr. G…
(Graph Representations) For each application below, state whether an adjacency l
(Graph Representations) For each application below, state whether an adjacency list or an adjacency matrix is the better representation for the graph. Then use 1-2 sentences to ex…
(Greedy Coloring Algorithm): The following psuedo-code that (allegedly) colors t
(Greedy Coloring Algorithm): The following psuedo-code that (allegedly) colors the vertices of a graph so that no two adjacent vertices receive the same color. Such a coloring is …
(Greedy Coloring Algorithm): The following psuedo-code that (allegedly) colors t
(Greedy Coloring Algorithm): The following psuedo-code that (allegedly) colors the vertices of a graph so that no two adjacent vertices receive the same color. Such a coloring is …
(Guess-the-Number Game Write a program that plays the game of\"guess the number\
(Guess-the-Number Game Write a program that plays the game of"guess the number" as follows: Your program chooses the number to be guessed by selecting an integer at random in the …
(Guess-the-Number Game) Write a program that plays the game of \"guess the numbe
(Guess-the-Number Game) Write a program that plays the game of "guess the number" as follows: Your program chooses the number to be guessed by selecting an integer at random in th…
(Guru please do not post the same solution. I\'m would like to see a different s
(Guru please do not post the same solution. I'm would like to see a different solution in order to get a better understanding of it. Thanks) I'm in an intro to c++ class and we ar…
(HELLO, NEED HELP CODING THIS IN C++, I AM HAVING A HARD TIME. THANK YOU.) Purpo
(HELLO, NEED HELP CODING THIS IN C++, I AM HAVING A HARD TIME. THANK YOU.) Purpose The purpose of this lab is to practice overloading operators, using header files and creating a …
(Hamacher, pg.255, question 5.20) 1024x1024 array of 32-bit numbers is to be nor
(Hamacher, pg.255, question 5.20) 1024x1024 array of 32-bit numbers is to be normalized as follows. For each column the largest element is found and all elements of the column are…
(Hash Tables) Insert the keys E A S Y Q U T I O N in that order into an initiall
(Hash Tables) Insert the keys E A S Y Q U T I O N in that order into an initially empty table of size m = 16 using linear probing. Use the hash function 11 * k % m to transform th…
(Haskell Language). How to separate and label clusters ( 4 direction connected c
(Haskell Language). How to separate and label clusters ( 4 direction connected components) in a 2D array? ( Haskell code will be a must :( For example, I have a list of list numbe…
(Haskell Programing) Part 1- A Complete Binary Management Tree: In the first par
(Haskell Programing) Part 1- A Complete Binary Management Tree: In the first part of this assignment, your program will use two lists of unique position names and two lists of flo…
(Haskell based problem) Computational translations of Cartesian functions to pol
(Haskell based problem) Computational translations of Cartesian functions to polar coordinates. [32] Write a function r :: (Float -> Float) -> (Float -> Float) which acce…
(Health application: compute BMI) Body mass index (BMI) is a measure of health b
(Health application: compute BMI) Body mass index (BMI) is a measure of health based on weight. It can be calculated by taking your weight in kilograms and dividing it by the squa…
(Help me with the quetions below) 1. Which instruction would you use to load reg
(Help me with the quetions below) 1. Which instruction would you use to load register R4 with 20000008 hexadecimal? LDR R4, #20000008 LDR R4, =0x20000008 None of the above. 2. Ass…
(Heres the sample flow chart) import java.util.Scanner; public class SlotMachine
(Heres the sample flow chart) import java.util.Scanner; public class SlotMachine {       // Declare keyboard and a constant starting balance of $10    public static final int INIT…
(Huge Integer Class) Create a class HugeInteger which uses a 40-element array of
(Huge Integer Class) Create a class HugeInteger which uses a 40-element array of digits to store integers as large as 40 digits each. Provide methods parse, toString, add and subt…
(Huge Integer Class) Create a class HugeInteger which uses a 40-element array of
(Huge Integer Class) Create a class HugeInteger which uses a 40-element array of digits to store integers as large as 40 digits each. Provide methods parse, toString, add and subt…
(Huge Integer Class) Create a class HugeInteger which uses a 40-element array of
(Huge Integer Class) Create a class HugeInteger which uses a 40-element array of digits to store integers as large as 40 digits each. Provide methods parse, toString, add and subt…
(I AM IN A INTRO TO PROGRAMMING, PLEASE USE SIMPLE PSEUDOCODE IF POSSIBLE) Creat
(I AM IN A INTRO TO PROGRAMMING, PLEASE USE SIMPLE PSEUDOCODE IF POSSIBLE) Create pseudocode for a program for Hansel's Housecleaning Service. The program prompts the user for a c…
(I DID MAJORITY OF THE CODE BUT GET STUCK ON UNION, INTERSECT AND SYMMETRIC DIFF
(I DID MAJORITY OF THE CODE BUT GET STUCK ON UNION, INTERSECT AND SYMMETRIC DIFFERENT. COULD I PLEASE GET SOME HELP!!!! ALL CODE ARE WRITTEN IN C LANGUAGE) In this program you wil…
(I DID MAJORITY OF THE CODE BUT GET STUCK ON UNION, INTERSECT AND SYMMETRIC DIFF
(I DID MAJORITY OF THE CODE BUT GET STUCK ON UNION, INTERSECT AND SYMMETRIC DIFFERENT. COULD I PLEASE GET SOME HELP!!!! ALL CODE ARE WRITTEN IN C LANGUAGE) In this program you wil…
(I NEED ALL THE NECESSARY CODE) The program below represents decimal integers as
(I NEED ALL THE NECESSARY CODE) The program below represents decimal integers as a linked list of digits. It asks for 2 positive integers, stores them as linked lists, computes th…