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 3513 / 3837

[C] Recall Binary Search: Input: a list of n sorted integer values and a target
[C] Recall Binary Search: Input: a list of n sorted integer values and a target value Output: True if target value exists in list and location of target value, false otherwise Met…
[C] Using recursion, make a function. This function should take two arguments (a
[C] Using recursion, make a function. This function should take two arguments (a pointer to the first node in a linked list and a name to find). It returns a zero if the name does…
[C] Write a program that prompts the user for a number of rows and a number of c
[C] Write a program that prompts the user for a number of rows and a number of columns for a two-dimensional array of integers. Your program should dynamically allocate a two dime…
[Class: Java] [*** The picture below is for reference only, do not post any code
[Class: Java] [***The picture below is for reference only, do not post any code.***] Here is the actual question... 13.10 Write 2-3 paragraphs explaining the design rationale for …
[DEV C++] Question help, it is MUST of using programmaing language of DEV C++ If
[DEV C++] Question help, it is MUST of using programmaing language of DEV C++ If you are in a city and have to walk from when you are, having planar coordinates (0, 0), to a desti…
[DEV C++] With using of programing language of DEV C++, (it is different program
[DEV C++] With using of programing language of DEV C++, (it is different programming language other than normal C++.) 2. If two arrays have the same size, we can add" them as we d…
[DEV C++] With using of programing language of DEV C++, (it is different program
[DEV C++] With using of programing language of DEV C++, (it is different programming language other than normal C++.) array1.txt is: array2.txt is: 3. Given two arrays, we can app…
[DEV C++] With using of programing language of DEV C++, (it is different program
[DEV C++] With using of programing language of DEV C++, (it is different programming language other than normal C++.) Please help this question out.. lengthin.txt is: 3. If we hav…
[DO ONLY QUESTION 17] 15 . Consider the following reference string given as WORD
[DO ONLY QUESTION 17] 15. Consider the following reference string given as WORD addresses: 1, 4, 8, 5, 20, 17, 19, 56, 9, 11, 4, 43, 5, 6, 9, 17. Assume a Direct-Mapped cache with…
[Database Design Normalization: multi-valued dependency] In the relation BOOK(Bo
[Database Design Normalization: multi-valued dependency] In the relation BOOK(Book_Name, Author, Edition, Copyright_Year), there are three multi-valued dependencies (MVDs): MVD1: …
[Database Management] Describe referential integrity and cascade options. How ca
[Database Management] Describe referential integrity and cascade options. How can they be helpful and when can they be a downright pain in the neck? Describe the security model us…
[Database] please show your work! Consider the relation Courses (C, T, H, R, S,
[Database] please show your work! Consider the relation Courses (C, T, H, R, S, G), whose attributes may be thought of informally as course, teacher, hour, room, student, and grad…
[Database|MySQL] Write SQL queries for the following use cases: 1)What is the to
[Database|MySQL] Write SQL queries for the following use cases: 1)What is the total profit of the product id 4? 2)what is the profit and name of the product id 4 in Jan 2 2013? 3)…
[Due soon] Please help! BCNF question. many thanks! Actually I\'ve posted this q
[Due soon] Please help! BCNF question. many thanks! Actually I've posted this question before at here. https://www.chegg.com/homework-help/questions-and-answers/functional-depende…
[E]. (12 points, 2 for each box) Consider the network shown below, consisting of
[E]. (12 points, 2 for each box) Consider the network shown below, consisting of a single router, R1, with three subnets A, B and C, with 16, 29, and 45 hosts respectively on thes…
[Encrypting/Decrypting Files - 12 marks] Encryption and Decryption are two crypt
[Encrypting/Decrypting Files - 12 marks] Encryption and Decryption are two cryptographic techniques. Encryption is used to transform text to meaningless characters, and decryption…
[Excel Marco/VBA] Sorting - Loop to look up varying multiple values Hi experts,
[Excel Marco/VBA] Sorting - Loop to look up varying multiple values Hi experts, I currently have a table that looks like this: I want to use VBA / if not excel function to produce…
[Graphs: BFS] Consider the breadth-first search algorithm outlined below. Explai
[Graphs: BFS] Consider the breadth-first search algorithm outlined below. Explain why the running time complexity of a breadth-first search on a graph is O(m + n), where m is the …
[Haskell] 1.) Rewrite prob1 so that it uses >>= instead of “do” notation. Please
[Haskell] 1.) Rewrite prob1 so that it uses >>= instead of “do” notation. Please use >>= , not >> 2.) Rewrite prob2 so it uses “do” notation 3.) Modify prob3 so …
[Human–computer interaction] Conclude Research Paper into following sections Res
[Human–computer interaction] Conclude Research Paper into following sections Research Paper: drive.google.com/open?id=0Bz-X3EXA0Q75LUdrdWdaV1V5NTg Introduction • State the problem…
[IN C WITH COMMENTS ]1 Question 1 A point mass consists of a 3-D location and an
[IN C WITH COMMENTS ]1 Question 1 A point mass consists of a 3-D location and an associated mass, such as Location: (6, 0, 2) Mass: 3g In a system of point masses, let p1, p2, ...…
[IN C WITH COMMENTS]The binary search algorithm that follows may be used to sear
[IN C WITH COMMENTS]The binary search algorithm that follows may be used to search an array when the elements are sorted. This algorithm is analogous to the following approach for…
[IN C WITH COMMENTS]The bubble sort is another technique for sorting an array. A
[IN C WITH COMMENTS]The bubble sort is another technique for sorting an array. A bubble sort compares adjacent array elements and exchanges their values if they are out of order. …
[In C programming]Create a menu driven application that receives input from a te
[In C programming]Create a menu driven application that receives input from a textfile called “Numbers.txt” and loads the numbers into an array. It will also calculate the sum, sa…
[In C++] How do you handle wrong input datatypes? My input was \"w\" or \"w w w
[In C++] How do you handle wrong input datatypes? My input was "w" or "w w w w" when it's supposed to be a "single digit" integer input. I want it to be able to do error checking …
[In C++] Theoretically, the disk seek time is proportional to the square root of
[In C++] Theoretically, the disk seek time is proportional to the square root of the distance the /O head travels from its current position to some destination position: TntTxo. A…
[In C] Part 1: Your program will receive the name of an ASCII text file as a com
[In C] Part 1: Your program will receive the name of an ASCII text file as a command-line argument and output the number of each kind of ASCII character in the file. In your code,…
[In C] You are given the following code and you will change it accordingly. You
[In C] You are given the following code and you will change it accordingly. You will implement a multi-threaded ASCII character count program and compare the results with and with…
[In C] You are given the following code and you will change it accordingly. You
[In C] You are given the following code and you will change it accordingly. You will implement a multi-threaded ASCII character count program and compare the results with and with…
[In C] You are given the following code and you will change it using mutex lock
[In C] You are given the following code and you will change it using mutex lock functions. You will implement a multi-threaded ASCII character count program and compare the result…
[In C] You will implement a multi-threaded ASCII character count program. Your p
[In C] You will implement a multi-threaded ASCII character count program. Your program will receive the name of an ASCII text file as a command-line argument and output the number…
[In C] You will write a program to offer a list of several functions. When your
[In C] You will write a program to offer a list of several functions. When your program is started, show a menu of three functions as follows: 1. Hello World! 2. List files 3. Exi…
[In Java] Implement a calculator with the given skeleton code: Note: Addition.ja
[In Java] Implement a calculator with the given skeleton code: Note: Addition.java , Subtraction.java, Multiply.java, Divide.java, Exponent.java, Parenthesis.java Will need to be …
[In Java] Please code according to the comments listed in each function. import
[In Java] Please code according to the comments listed in each function. import java.util.ArrayList; import java.util.Stack; public class RunTimeStack { private ArrayList runTimeS…
[In Java] Please finish the VirtualMachine.java, with comments indicating hints
[In Java] Please finish the VirtualMachine.java, with comments indicating hints what should go there Program.java also needs to be implemented, but do the VM first. //VirtualMachi…
[In Java] What am I doing wrong with my code on line 15? What I plan to do: crea
[In Java] What am I doing wrong with my code on line 15? What I plan to do: create a hash table with the String keys "+", "-", "/", "*" . And the values would be the object(of the…
[Inst. 4.2] Use the below mentioned code for following question(s). Scanner keyb
[Inst. 4.2] Use the below mentioned code for following question(s). Scanner keyboard = new Scanner(System.in); int studentID, studentCount = 0, studentGrade, numberOfStudentGrades…
[Invoice Total Product total: 225 Discount amount $22.50 Subtotal: $202.50 Tax 7
[Invoice Total Product total: 225 Discount amount $22.50 Subtotal: $202.50 Tax 7.752) $15.69 Total: $218.19 Change Percent Sales Tax Sales tax pct. 7975 OK Cancel] In this exercis…
[JAVA HELP PLEASE] Exercise 1 Part 1 Create a class SavingsAccount. Use a static
[JAVA HELP PLEASE] Exercise 1 Part 1 Create a class SavingsAccount. Use a static class variable to store the annualInterestRate for each of the savers. Each object of the class co…
[JAVA HELP] ---Create a class SavingsAccount . Use a static class variable to st
[JAVA HELP] ---Create a class SavingsAccount . Use a static class variable to store the annualInterestRate for each of the savers. Each object of the class contains a private inst…
[JAVA Question] A particular ball bounces to 80% of its drop height. Write a pro
[JAVA Question] A particular ball bounces to 80% of its drop height. Write a program which will determine how many bounces it takes for the bounce height to be less than 30% of th…
[JAVA] ( Count the occurrences of words in a text file ) Rewrite Listing 21.9 to
[JAVA] (Count the occurrences of words in a text file) Rewrite Listing 21.9 to read the text from a text file. The text file is passed as a command-line argument. Words are delimi…
[JAVA] Create a Beverage Dispenser using the requirements shown in the following
[JAVA] Create a Beverage Dispenser using the requirements shown in the following video (https://www.youtube.com/watch?v=W1uALGByz3w&feature=youtu.be). Your design should use O…
[JAVA] Create a Beverage Dispenser using the requirements shown in the following
[JAVA] Create a Beverage Dispenser using the requirements shown in the following video (https://www.youtube.com/watch?v=W1uALGByz3w&feature=youtu.be). Your design should use O…
[JAVA] Create a Beverage Dispenser using the requirements shown in the following
[JAVA] Create a Beverage Dispenser using the requirements shown in the following video (https://www.youtube.com/watch?v=W1uALGByz3w&feature=youtu.be). Your design should use O…
[JAVA] Create a code using String removeDuplicates(String s) that creates and re
[JAVA] Create a code using String removeDuplicates(String s) that creates and returns a new string with all the consecutive occurrences of the same character turned into a single …
[JAVA] Design a Ship, CargoShip and CruiseShip class being mindful of behavior o
[JAVA] Design a Ship, CargoShip and CruiseShip class being mindful of behavior of each. Demonstrate the classes in a program that has a Ship array. Assign various Ships, CruiseShi…
[JAVA] Fix errors. Do not rewrite code unless necessary. import java.util.*; imp
[JAVA] Fix errors. Do not rewrite code unless necessary. import java.util.*; import java.util.ArrayList; public class List { public static void main(String[] args) { new List(); }…
[JAVA] Implement a Java class MaxHeap as specified below to support the operatio
[JAVA] Implement a Java class MaxHeap as specified below to support the operations of max heaps, heapsort, and priority queues. Use the exact class and method names given and use …
[JAVA] Need help trying to create an Artificial Intelligence in which the comput
[JAVA] Need help trying to create an Artificial Intelligence in which the computer can never lose to the user in a game of Tic-Tac-Toe. I'm not sure how to come up with the algori…