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 254 / 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 Python 3.6.1 Most books now published are assigned a code which uniquely i
Using Python 3.6.1 Most books now published are assigned a code which uniquely identifies the book. The International Standard Book Number or ISBN, is normally a sequence of 10 de…
Using Python 3.6.1 One must use this function in the program: In 1742, a German
Using Python 3.6.1 One must use this function in the program: In 1742, a German amateur mathematician named Christian Goldbach wrote to Leonhard Euler with the following conjectur…
Using Python 3.6.1 and recursion Given an array of ints, is it possible to choos
Using Python 3.6.1 and recursion Given an array of ints, is it possible to choose group of some of the ints, such that the group sums to the given target, with this additional con…
Using Python 3: 1. Given variables first and last, each of which is associated w
Using Python 3: 1. Given variables first and last, each of which is associated with a str, representing a first and a last name, respectively. Write an expression whose value is a…
Using Python 3: I am having trouble creating a binary tree and actually using br
Using Python 3: I am having trouble creating a binary tree and actually using breadth first search to solve this. Any help would be greatly appreciated. I know that this can be ea…
Using Python 3: I have 2 lists. One has many lists(each list has a letter and a
Using Python 3: I have 2 lists. One has many lists(each list has a letter and a number) [ assume 1000 +]. One has letters [assume 100 + letters]. Listofcombo = [[‘a’, 2], [‘a’, 4]…
Using Python 3: On the NASA space shuttle, three computers were in use simultane
Using Python 3: On the NASA space shuttle, three computers were in use simultaneously. Computations were performed by all three computers, and the result of each computation was p…
Using Python : I would like some assistance with this Funtion from the describe
Using Python : I would like some assistance with this Funtion from the describe information: Q: Function Design Recipe Following the Function Design Recipe, write a function that …
Using Python : In this project you will do a simple analysis of three datasets c
Using Python: In this project you will do a simple analysis of three datasets containing height data that you will find in the datasets folder on the Canvas site. The first datase…
Using Python Classic numerology ascribes meaning to the following numbers: 0 = e
Using Python Classic numerology ascribes meaning to the following numbers: 0 = emptiness, nothingness, blank 1 = independence, loneliness, creativity, originality, dominance, lead…
Using Python Create a dictionary named states that uses two-letter state abbrevi
Using Python Create a dictionary named states that uses two-letter state abbreviations as keys. Each value in the states dictionary should be a list holding both the state name an…
Using Python Displaying the current time Develop proper algorithm for solving a
Using Python Displaying the current time Develop proper algorithm for solving a given program. The instructions in the algorithm will serve as comments in your program Turn the al…
Using Python Heard recently on CarTalk: “I was driving on the highway the other
Using Python Heard recently on CarTalk: “I was driving on the highway the other day and I happened to notice my odometer. Like most odometers, it shows six digits, in whole miles …
Using Python Implement a radix sorting machine. A radix sort for base 10 integer
Using Python Implement a radix sorting machine. A radix sort for base 10 integers is a mechanical sorting technique that utilizes a collection of bins, one main bin and 10 digit b…
Using Python Implement function search() that takes as input the name of a file
Using Python Implement function search() that takes as input the name of a file and the pathname of a folder and searches for the file in the folder and any folder contained in it…
Using Python Insert each letter of this string as a key from left to right into
Using Python Insert each letter of this string as a key from left to right into a binary search tree: FADCEB and then do a in order traversal of the resulting tree and print each …
Using Python Language Here is 8.19: import math class Rectangle2D: def __init__(
Using Python Language Here is 8.19: import math class Rectangle2D: def __init__(self, x = 0, y = 0, width = 0, height = 0): self.x = x self.y = y self.width = width self.height = …
Using Python Language Here is 8.19: import math class Rectangle2D: def __init__(
Using Python Language Here is 8.19: import math class Rectangle2D: def __init__(self, x = 0, y = 0, width = 0, height = 0): self.x = x self.y = y self.width = width self.height = …
Using Python Programming Programming Essentials Write a Loop Program Write a loo
Using Python Programming Programming Essentials Write a Loop Program Write a loop that prints your name 75 times, Each instance should be followed by a newline. At the end, print …
Using Python Start by assigning to variables monthsL and monthsT a list and a tu
Using Python Start by assigning to variables monthsL and monthsT a list and a tuple, respectively, both containing strings 'Jan', 'Feb', 'Mar', and 'May', in that order. Then atte…
Using Python Thanks!! Assignment Background This exercise is (again) about data
Using Python Thanks!! Assignment Background This exercise is (again) about data manipulation. In this project we will process agricultural data, namely the adoption of different G…
Using Python The following program was proposed by one of my students in another
Using Python The following program was proposed by one of my students in another class. He said that their company uses this question in interviews for junior QA. They don't neces…
Using Python Write a program called CountConsecutiveChars it reads strings from
Using Python Write a program called CountConsecutiveChars it reads strings from the user until the user presses enter without entering anything. it reports the number of character…
Using Python Write your own function that implements the Cholesky solver to solv
Using Python Write your own function that implements the Cholesky solver to solve Ax = b. write a script file that calls your Cholesky function for solving Ax - b. This script fil…
Using Python You have been hired by a small software company to create a \"thesa
Using Python You have been hired by a small software company to create a "thesaurus" program that replaces words with their synonyms. The company has set you up with a sample thes…
Using Python You just finished administering the final exam for all of the stude
Using Python You just finished administering the final exam for all of the students in the "Introduction to Computer Programming" classes this semester. The exam was a 25 question…
Using Python You want to model a population N that grows according to \"logistic
Using Python You want to model a population N that grows according to "logistic growth", defined mathematically as dN/dt = rN(1-N/Nmax). Write a python program that solves (integr…
Using Python and Stacks: For this part of the assignment, you will write a funct
Using Python and Stacks: For this part of the assignment, you will write a function (isPalindrome) that uses a stack to check if a string is a palindrome. The function takes just …
Using Python answer 8.18 A-F Exercise Re. 9 im adsconar have two keys with the s
Using Python answer 8.18 A-F Exercise Re. 9 im adsconar have two keys with the same vall a11 Cana dictionary have w 12 Define a dictionary that ionary that maps month name abbrevi…
Using Python answer the following; Write a function clampsample(value, typecode)
Using Python answer the following; Write a function clampsample(value, typecode) that uses the previous exercise to return value clamped into the appropriate range for type codes …
Using Python code convert the following infix expressions to postfix using the d
Using Python code convert the following infix expressions to postfix using the direct conversion algorithm. Show the stack as the conversion takes place.
Using Python create an implementation of Deque with a double linked list: Each n
Using Python create an implementation of Deque with a double linked list: Each node has two links. One to the next node, and another one linked to the previous node. Start with th…
Using Python create an implementation of deque with a double linked list: Each n
Using Python create an implementation of deque with a double linked list: Each node has two links. One to the next node, and another one linked to the previous node. Picture of no…
Using Python develop a program in modular format (def Main, call Main, etc.) for
Using Python develop a program in modular format (def Main, call Main, etc.) for the following question: The child's card game, War, consists of two players each having a deck of …
Using Python implement the binary search below without using recursion, without
Using Python implement the binary search below without using recursion, without the slice operator or any other lists other than the original list. You will need to pass the list …
Using Python please answer question 6.4 (A,B,C,D,E) Write a program that adds al
Using Python please answer question 6.4 (A,B,C,D,E) Write a program that adds all numbers from 2 to 10,000 to a list. The remove the multiples of 2(but not 2), multiples of 3(but …
Using Python please answer questions P6.3 & P6.4 (HW15 & 16) Programming Exercis
Using Python please answer questions P6.3 & P6.4 (HW15 & 16) Programming Exercises 331 .P6.3 multiples of 2 (but not 2), multiples of 3 (but not 3), and so on, up to the m…
Using Python please create a deck of cards. A card is a tuple containing a numbe
Using Python please create a deck of cards. A card is a tuple containing a number between 1 and 13 representing the cards value and a string contianing "clubs", "diamonds", "heart…
Using Python please show how to time a bubble sort such as presented below: def
Using Python please show how to time a bubble sort such as presented below: def bubbleSort(list): needNextPass = True    k = 1 while k < len(list) and needNextPass: # List may …
Using Python preferablly Python 3 (you can use any Python package you like) Crea
Using Python preferablly Python 3 (you can use any Python package you like) Create a program that imports an excel file and outputs a graph (for example you can use MatplotLib to …
Using Python programming Objectives : Practice string indexing. A palindrome is
Using Python programming Objectives: Practice string indexing. A palindrome is a sequence of characters which reads the same backward or forward. For example, “racecar” is a palin…
Using Python programming language only. Write a function forms_triangle(a, b, c)
Using Python programming language only. Write a function forms_triangle(a, b, c) that returns True if three segments of length a ,  b and  c can form a triangle, otherwise it retu…
Using Python programming language, Implement function links() that takes as inpu
Using Python programming language, Implement function links() that takes as input the name of an HTML file (as a string) and returns the number of hyperlinks in that file. To do t…
Using Python programming, create a function that takes a string representation o
Using Python programming, create a function that takes a string representation of one digit of the zip code, and returns the string of bars representing that digit. Then create a …
Using Python this is what I got for part 1 - Implement a class Polygon that abst
Using Python this is what I got for part 1 - Implement a class Polygon that abstracts regular polygons and supports class methdos: class Polygon: def __init__(self, n=0, s=0):    …
Using Python to compile 1 General presentation A sudoku grid consists of 9 lines
Using Python to compile 1 General presentation A sudoku grid consists of 9 lines and 9 columns, making up 81 cells, that are grouped in nine 3x3 boxes. In a sudoku puzzle, some bu…
Using Python version 2.7, design a program that prompts the user to enter a stri
Using Python version 2.7, design a program that prompts the user to enter a string.The program should then display the number of vowels and the number of consonants in the string.…
Using Python without print At the beginning of a game of snooker, the red balls
Using Python without print At the beginning of a game of snooker, the red balls are placed in a triangular pattern, with 1 ball in the first row and 1 more ball in each subsequent…
Using Python without print Write the function lengthSegment(x1, y1, z1, x2, y2,
Using Python without print Write the function lengthSegment(x1, y1, z1, x2, y2, z2) that takes 6 float values, repre- senting the Cartesian coordinates of the endpoints of a line …
Using Python write a class named Car that has the following data attributes: • _
Using Python write a class named Car that has the following data attributes: • _ _yearModel (for the car’s year model) • _ _make (for the make of the car) _ _speed (for the car’s …