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 1143 / 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 Write a python program Write a python program Write a pyt
Write a python program Write a python program Write a python program Write a python program Create a class Vehicle. It should have noofwheels It's constructor must take in three p…
Write a python program able to. A : Display a string that consists of the first
Write a python program able to. A: Display a string that consists of the first letter and last letter from each of the names in the list a   As an example the display should look …
Write a python program called anagram.py that does the following: Reads in words
Write a python program called anagram.py that does the following: Reads in words and their meanings from a text file called “words.txt” (this is on Blackboard). The easiest way to…
Write a python program in PyCharm that will play a game called Nim. One particul
Write a python program in PyCharm that will play a game called Nim. One particularly interesting version plays like this: "Assume you have a large pile of marbles. Two players alt…
Write a python program only using loops for the following question: When data is
Write a python program only using loops for the following question: When data is transmitted between two computers, it is possible that the signal can encounter interference that …
Write a python program that allows the user to enter the total rainfall for each
Write a python program that allows the user to enter the total rainfall for each of 12 months into a list. The program should calculate and display the total rainfall for the year…
Write a python program that asks the user for a string, then create the followin
Write a python program that asks the user for a string, then create the following dictionary: The values are the letters in the string, with the corresponding key being the place …
Write a python program that asks the user to enter the first name of the person
Write a python program that asks the user to enter the first name of the person they want to look up(fix it if they enter lower case) if they don't put anything and just press ent…
Write a python program that calculates the volume of a cylinder. Your program sh
Write a python program that calculates the volume of a cylinder. Your program should ask the user to enter the radius and the height of the cylinder. Your program will use the for…
Write a python program that creates a dictionary containing course numbers and t
Write a python program that creates a dictionary containing course numbers and the room numbers of the rooms where the courses meet. The dictionary should have the following key-v…
Write a python program that displays a welcome message and general instructions
Write a python program that displays a welcome message and general instructions to the user for the bulls and cows game. (Hint: call a function that outputs the welcome and instru…
Write a python program that does the following: Store the following into a strin
Write a python program that does the following: Store the following into a string variable:  The quick brown fox jumps over the lazy dog! But then the lazy dog BITES the fox and t…
Write a python program that finds the cubic volume of a rectangle. Ask the user
Write a python program that finds the cubic volume of a rectangle. Ask the user to enter the length, width and height, in feet, of a rectangle. Your program should use the formula…
Write a python program that generates all multiples of a specified integer withi
Write a python program that generates all multiples of a specified integer within a specified consecutive range of integers. The main function in the program should prompt the use…
Write a python program that lets the user enter the loan amount and loan period
Write a python program that lets the user enter the loan amount and loan period in number of years. The program will then display the monthly and total payments for each interest …
Write a python program that modifies the words in a string variable. Create stri
Write a python program that modifies the words in a string variable. Create string variable and assign a sentence. Example: aString = "Michelle ma belle these are words that go to…
Write a python program that opens a csv data file (sampledata.csv) and reads int
Write a python program that opens a csv data file (sampledata.csv) and reads into a list. Then it writes to an HTML page. The program should read data from the input file and merg…
Write a python program that reads a word and prints the number of syllables in t
Write a python program that reads a word and prints the number of syllables in the word. For this program, assume the following rules are the only ones you need to determine the n…
Write a python program that reads the contents of a text file. The program shoul
Write a python program that reads the contents of a text file. The program should create a dictionary in which the keys are the individual words found in the file and the values a…
Write a python program that reads the contents of the charge_accounts.txt file i
Write a python program that reads the contents of the charge_accounts.txt file into a list. The program should then ask the user to enter a charge account number, each account num…
Write a python program that uses loops to take in 10 colors/flavors of pez candy
Write a python program that uses loops to take in 10 colors/flavors of pez candy from a user and add them to a virtual pez dispenser (array). The script should print out the conte…
Write a python program that will calculate and output roots of a quadratic equat
Write a python program that will calculate and output roots of a quadratic equation. The formula will be written on the board in class. Values for a, b and c should be input into …
Write a python program that will let the user play Hangman as shown in the examp
Write a python program that will let the user play Hangman as shown in the examples below. The user will guess letters until either: They have correctly guessed all the letters in…
Write a python program that will play the game of Nim. The Game of Nim is a well
Write a python program that will play the game of Nim. The Game of Nim is a well-known game with a number of variants. One particularly interesting version plays like this: "Assum…
Write a python program that will play the game of Nim. The Game of Nim is a well
Write a python program that will play the game of Nim. The Game of Nim is a well-known game with a number of variants. One particularly interesting version plays like this: "Assum…
Write a python program that will scan a web page and harvest as many email addre
Write a python program that will scan a web page and harvest as many email addresses as possible. Many of these email address will be obfuscated in some way. It’s up to you to get…
Write a python program that will simulate the NJ Cash 5 lottery. The program mus
Write a python program that will simulate the NJ Cash 5 lottery. The program must pick 5 numbers from 1 to 38 - No duplicates allowed It must print these numbers side by side on o…
Write a python program that will • Work as a point of sale system at a rodeo sna
Write a python program that will • Work as a point of sale system at a rodeo snack bar. • The snack bar sells only three items: sandwiches for $3.00, chips for $1.50 and drinks fo…
Write a python program that: Creates a dictionary of country codes. For example,
Write a python program that: Creates a dictionary of country codes. For example, USA code is US, and Japan code is JP. We should be able to get the country code for any given coun…
Write a python program to (a) Generate a pair of public and private keys for the
Write a python program to (a) Generate a pair of public and private keys for the RSA scheme, where p and q each has n bits. (b) Given x = 2015, compute the encoded message y. (c) …
Write a python program to animate a circle bouncing around a window. use the var
Write a python program to animate a circle bouncing around a window. use the variables dx and dy (both initialized to 1) to control the movement of the circle.Use a large counted …
Write a python program to decode text that was encoding using the Caesar cipher.
Write a python program to decode text that was encoding using the Caesar cipher. Caesar’s cihper works by shifting every letter in a piece of text three characters over, so “A” be…
Write a python program to determine the real roots of the quadratic equation ax^
Write a python program to determine the real roots of the quadratic equation ax^2 + bx + c = 0 (where a =/= 0) after requesting the values of a, b, c. Before finding the roots, en…
Write a python program to do the following. The program will essentially complet
Write a python program to do the following. The program will essentially complete a process of removing IP addresses from a set of files and replacing them with the corresponding …
Write a python program to do the following: Ask the user for a number X Store X
Write a python program to do the following: Ask the user for a number X Store X numbers of the fibonacci sequence in a list If the user inputs a number less than 3 tell them it mu…
Write a python program. This program will involve arithmetic expressions in both
Write a python program. This program will involve arithmetic expressions in both inx format and postx format. Inx expressions are the ordinary arithmetic expressions we are famili…
Write a python program: Part1 : Pattern to Word a. for a given string of charact
Write a python program: Part1 : Pattern to Word a. for a given string of characters representing a word pattern, return possible candidate words (take advantage of words_aplha.txt…
Write a python script called groups that makes a report about all of the groups
Write a python script called groups that makes a report about all of the groups that each user on the system belongs to, as specified by passwd and group files. The location of th…
Write a python script called groups that makes a report about all of the groups
Write a python script called groups that makes a report about all of the groups that each user on the system belongs to, as specified by passwd and group files. The location of th…
Write a python script called import_marta.py that reads in the given csv file an
Write a python script called import_marta.py that reads in the given csv file and stores the information from the appropriate columns of the csv file into the appropriate table(s)…
Write a python script for each one of (2) and (3): (2) Multi-Threaded Server Cur
Write a python script for each one of (2) and (3): (2) Multi-Threaded Server Currently, the web server handles only one HTTP request at a time. Implement a multithreaded server th…
Write a python script that inputs a line of plaintext and a distance value and o
Write a python script that inputs a line of plaintext and a distance value and outputs an encrypted text using a Caesar cipher. The script should work for any printable characters…
Write a python script that is going to read the queries that you have created (S
Write a python script that is going to read the queries that you have created (See below) from a SQL file, execute each SQL query against SQLite database and print the output of t…
Write a python script that lets the user guess whether a randomly flipped coin d
Write a python script that lets the user guess whether a randomly flipped coin displays head or tail. The program randomly generates an integer 0 or 1, which represents head or ta…
Write a python script that prompts for a DNA sequence (assume all caps, no space
Write a python script that prompts for a DNA sequence (assume all caps, no spaces, and only 'A, 'T, 'C, 'G'). Your script should find all palindromic sequences within the DNA sequ…
Write a python script that will compute and display information for a company th
Write a python script that will compute and display information for a company that rents vehicles to its customers. For a specified customer, the program will compute and display …
Write a python script that will compute and display information for a company th
Write a python script that will compute and display information for a company that rents vehicles to its customers. For a specified customer, the program will compute and display …
Write a python script that will compute and display information for a company wh
Write a python script that will compute and display information for a company which rents vehicles to its customers. For a specified customer, the program will compute and display…
Write a python script that will compute and display information for a hotel rese
Write a python script that will compute and display information for a hotel reservation. The customer will enter(via input statements )(in the specified order) 1.)The room type co…
Write a qualitative research question using the PICO(T) model using the P (popul
Write a qualitative research question using the PICO(T) model using the P (population), I (abstract concept), O (outcome), and T (time) from the PICO(T) model about an issue from …