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

Browse W

Alphabetical listing with fast deep pagination.
66619 items • Page 964 / 1333

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
Write a Python program that reads in two integers and displays the following: a.
Write a Python program that reads in two integers and displays the following: a. the sum of the two numbers b. the product of the numbers c. the average of the two numbers d. the …
Write a Python program that reads keyboard input from the user, whom is asked to
Write a Python program that reads keyboard input from the user, whom is asked to enter an x and y coordinate. The program should define a function, Location(x, y), that takes the …
Write a Python program that reads option-value pairs from the command-line. The
Write a Python program that reads option-value pairs from the command-line. The program should find the squareroots of a quadratic function using the quadratic formula: X = -b plu…
Write a Python program that simulates playing Bingo. In Bingo, each player has a
Write a Python program that simulates playing Bingo. In Bingo, each player has a card of numbers arranged in a 5×5 grid with five randomly-chosen numbers from 1 to 15 in the B col…
Write a Python program that takes 7 inputs and appends them to a list (aGrades).
Write a Python program that takes 7 inputs and appends them to a list (aGrades). Use the input function to enter grades. The final exam will be the last item in the list. Calculat…
Write a Python program that tries to find a collision by using SHA-256 as in the
Write a Python program that tries to find a collision by using SHA-256 as in the Python sample code below. Let your program generate ten hash values of random fraudulent messages …
Write a Python program that uses a while loop to compute and print the cosine of
Write a Python program that uses a while loop to compute and print the cosine of an angle using the first 20 terms of the following series cosx = 1 - ((x^2/2!)) + ((x^4/4!)) - ((x…
Write a Python program that uses regular expressions to check user-defined passw
Write a Python program that uses regular expressions to check user-defined passwords. The password must 1. be at least 8 characters and not more than 40 characters long, 2. not co…
Write a Python program that will do the following: 1) Ask the user for how many
Write a Python program that will do the following: 1) Ask the user for how many values they would like to enter. This value must be between 1 and 15, inclusive (enforce the range.…
Write a Python program that will read in the countries and their capitals from t
Write a Python program that will read in the countries and their capitals from the countryCap.txt file. Look at the file. It is a comma-delimited file (comma between country and c…
Write a Python program that will read the names contained in “names.txt” and ins
Write a Python program that will read the names contained in “names.txt” and insert them into a dictionary. They key values will be integers such that the first name will have key…
Write a Python program that will read the names contained in “names.txt” and ins
Write a Python program that will read the names contained in “names.txt” and insert them into a dictionary. They key values will be integers such that the first name will have key…
Write a Python program that will take 3 lists: and use this logic: An employee g
Write a Python program that will take 3 lists: and use this logic: An employee gets overtime when they have worked more than 40 hours Overtime pay is calculated using this formula…
Write a Python program that writes a series of random numbers to a file. Each ra
Write a Python program that writes a series of random numbers to a file. Each random number should be in the range of 1 through 100. The application should let the user to specify…
Write a Python program that • Uses a while loop to produce a table that shows th
Write a Python program that • Uses a while loop to produce a table that shows the conversion of degrees Celsius to degrees Fahrenheit between 0 degrees Celsius and 100 degrees Cel…
Write a Python program that • Uses a while loop to produce a table that shows th
Write a Python program that • Uses a while loop to produce a table that shows the conversion of degrees Celsius to degrees Fahrenheit between 0 degrees Celsius and 100 degrees Cel…
Write a Python program that, given an integer value, outputs a string with the e
Write a Python program that, given an integer value, outputs a string with the equivalent English text of each digit. For example, 4 is four, 12 is one two, and 8382 is eight thre…
Write a Python program to implement the Runge-Kutta Method of order 4 to approxi
Write a Python program to implement the Runge-Kutta Method of order 4 to approximate the value of the solution of the differential equation x'(t) = f(t, x) x(a) = xa at t = b usin…
Write a Python program to input a series of number from user and find Prime fact
Write a Python program to input a series of number from user and find Prime factors of each given number using a loop. Program will ask the user to continue or not each time and i…
Write a Python program to prompt the user to enter the temperature in Fahrenheit
Write a Python program to prompt the user to enter the temperature in Fahrenheit. Convert the entered value in Celsius and print the result. Write a Python program to prompt the u…
Write a Python program to prompt the user to enter the temperature in Fahrenheit
Write a Python program to prompt the user to enter the temperature in Fahrenheit. Convert the entered value in Celsius and print the result. Write a Python program to prompt the u…
Write a Python program to query a MySQL database and print the query results. De
Write a Python program to query a MySQL database and print the query results. Details: Make a connection to the MySQL database with this connection information: Write and execute …
Write a Python program to re-implement the secant method using recursion. Use yo
Write a Python program to re-implement the secant method using recursion. Use your program to find a root of the function with tolerance 0.0001 Requirement: define a function with…
Write a Python program to represent you in the 7th Annual Prisoner’s Dilemma Tou
Write a Python program to represent you in the 7th Annual Prisoner’s Dilemma Tournament. Each player (each program) will compete in an iterated PD against each other player. Assum…
Write a Python program to simulate the following variant of the Monty Hall probl
Write a Python program to simulate the following variant of the Monty Hall problem Suppose that, in the beginning, the host does not know where the prize is located After contesta…
Write a Python program to solve the following optimization problem Use scipy.opt
Write a Python program to solve the following optimization problem Use scipy.optimize.minimize ,minimize() allows you to set inequality and equality conditions. For this problem, …
Write a Python program to solve the following optimization problem Use scipy.opt
Write a Python program to solve the following optimization problem Use scipy.optimize.minimize ,minimize() allows you to set inequality and equality conditions. For this problem, …
Write a Python program to solve the following problem: Information is available
Write a Python program to solve the following problem: Information is available about the latest municipal election. For each voter, the following data is given: . voter id number…
Write a Python program, initially with the following code in it: import random #
Write a Python program, initially with the following code in it: import random # A sequence of assignments to generate a random problem: a = 0 b = 0 c = 0 d = 0 e = 0 u = 0 v = 0 …
Write a Python program: * Program will use a text file data_xxxxxxx.txt to write
Write a Python program: * Program will use a text file data_xxxxxxx.txt to write 15 numbers in the range of 0 to 100 (one number in each line), where xxxxxxx represents your ID nu…
Write a Python program: * Program will use a text file data_xxxxxxx.txt to write
Write a Python program: * Program will use a text file data_xxxxxxx.txt to write 15 numbers in the range of 0 to 100 (one number in each line), where xxxxxxx represents your ID nu…
Write a Python program: Assignment: A professor at Hardtack University has an un
Write a Python program: Assignment: A professor at Hardtack University has an unusual method of grading. The students may or may not all take the same number of tests. The individ…
Write a Python program: Create a login and menu to a company intranet system tha
Write a Python program: Create a login and menu to a company intranet system that requires users (employees) to enter a username and password in order to view a menu of options (s…
Write a Python program: a.Prompt the user to enter starting number, increment, a
Write a Python program: a.Prompt the user to enter starting number, increment, and the ending number (all integers). b.Sum up the number from starting number through the ending nu…
Write a Python programs to solve the following. Submit the code and screenshots
Write a Python programs to solve the following. Submit the code and screenshots of your results. (6 pts each) 1) Write a program that uses standard input to displays the followi…
Write a Python programs to solve the following: 1---Write a program that uses st
Write a Python programs to solve the following: 1---Write a program that uses standard input to displays the following pieces of information about you, each on a separate line: Na…
Write a Python script (that is the user interface) which takes the user guesses
Write a Python script (that is the user interface) which takes the user guesses and displays a hint according to the secret number and the guess, until user correctly guesses the …
Write a Python script named cluster_counter.py that takes command line arguments
Write a Python script named cluster_counter.py that takes command line arguments. The first argument will be a filename. The file loaded will contain an n by m matrix of different…
Write a Python script named lab2.1.py. This script will decompose a text file na
Write a Python script named lab2.1.py. This script will decompose a text file named example.txt, available on your server at /users/name/example.txt, into an list of words, then p…
Write a Python script named “isValidPhoneNumber.py” that: a. Take 1 string as an
Write a Python script named “isValidPhoneNumber.py” that: a. Take 1 string as an argument and determine if it is a valid phone number b. Phone number can be any of the following f…
Write a Python script to display the header of any of your programs as below: #
Write a Python script to display the header of any of your programs as below: # Semester: fall <2019> # Topic: <Introduction to Python programming> # Module: <main&…
Write a Python script with Linux using the Scapy packet crafting package. The sc
Write a Python script with Linux using the Scapy packet crafting package. The script will do the following: a. Create an ESP payload using crypt-algo=AES-CBC, and auth-algo=HMAC-M…
Write a QBasic program called RAINFALL that computes the average daily rainfall
Write a QBasic program called RAINFALL that computes the average daily rainfall (in inches) for any number of days. The user should first input the number of days, then use that n…
Write a Quote of Today PHP program o Make 10 quotes in a MySQL database – name t
Write a Quote of Today PHP program o Make 10 quotes in a MySQL database – name the database “quote_db” and name the table “quote_table”. Provide the SQL that creates your database…
Write a RECURSIVE function that prints the values of an array to the console in
Write a RECURSIVE function that prints the values of an array to the console in reverse order, that is, prints the last value of the array, then the second last, etc. Your main() …
Write a RECURSIVE method writeChars that accepts an integer parameter n and that
Write a RECURSIVE method writeChars that accepts an integer parameter n and that prints out n characters as follows. The middle character of the output should always be an asteris…
Write a RUBY program that prompts the user for the weight of the article, the zo
Write a RUBY program that prompts the user for the weight of the article, the zone to which it is going and whether it should go by air or it is local, and then print out the corr…
Write a Racket program that implements the following game. You ask your friend t
Write a Racket program that implements the following game. You ask your friend to write down an integer between 1 and 100 but keep it hidden from you. You then execute your progra…
Write a RainFall class that has the following field: • an array of doubles that
Write a RainFall class that has the following field: • an array of doubles that stores the rainfall for each of the 12 months of the year (where the first index corresponds with J…
Write a RainFall class that has the following field: • an array of doubles that
Write a RainFall class that has the following field: • an array of doubles that stores the rainfall for each of the 12 months of the year (where the first index corresponds with J…