Browse W
Alphabetical listing with fast deep pagination.
66619 items • Page 1142 / 1333
Write a proposal for a research reports to the director of your college in 2000
Write a proposal for a research reports to the director of your college in 2000 words about students need to know the importance of learning international languages as a curriculu…
Write a propositional knowledge base describing the 4-Queen problem. a. Solve th
Write a propositional knowledge base describing the 4-Queen problem. a. Solve the puzzle by deriving a model using DPLL using NO heuristics. (Trace the steps, indicate what decisi…
Write a prototype for a function sum_n_avg that has three type double input para
Write a prototype for a function sum_n_avg that has three type double input parameters and two output parameters. The function computes the sum and the average of its three input …
Write a pseudo code for the following #include #include #incl
Write a pseudo code for the following #include <iostream> #include <cmath> #include <fstream> using namespace std; float deviation(float sum, float mean, float P…
Write a pseudo code function in terms of the ADT appointment book, described in
Write a pseudo code function in terms of the ADT appointment book, described in Section1.4.1, for each of the following tasks. Do you need to add operations to the ADT to perform …
Write a pseudo code that will calculate a XXX% tip and a 6% tax on a meal price.
Write a pseudo code that will calculate a XXX% tip and a 6% tax on a meal price. The user will enter the meal price and the program will calculate tip, tax, and the total. The tot…
Write a pseudocode (pen and paper) algorithm that solves the ODE y0 = f(t; y) us
Write a pseudocode (pen and paper) algorithm that solves the ODE y0 =f(t; y) using Euler’s method. Convert this algorithm into MATLAB syntax, as the function euler method . Your i…
Write a pseudocode algorithm (not actual C++ code) whose purpose is to find the
Write a pseudocode algorithm (not actual C++ code) whose purpose is to find the maximum, minimum and sum for a collection of numbers. To practice the concepts of local scope, refe…
Write a pseudocode algorithm for a calculator app that uses postfir notation. No
Write a pseudocode algorithm for a calculator app that uses postfir notation. Normally, we write arithmetic expessions like this: ((34 12) × (8 +2)) × 7 This is called infir notat…
Write a pseudocode algorithm for a calculator app that uses postfix notation. No
Write a pseudocode algorithm for a calculator app that uses postfix notation. Normally ,we write arithmetic expressons like this: ((3 + 12) x ( 8 + 2)) x 7.
Write a pseudocode algorithm for polynomial division. polynomials are represente
Write a pseudocode algorithm for polynomial division. polynomials are represented with an array. e.g. 1 + 2x^2 - x^3 is represented by the array [1, 0, 2, -1] Use the following de…
Write a pseudocode algorithm that calculates and prints the overall MPG (miles p
Write a pseudocode algorithm that calculates and prints the overall MPG (miles per gallon) for a series of miles and gallons user inputs. Use a loop to repeatedly ask the user to …
Write a pseudocode algorithm that uses two stacks to simulate one queue. Only co
Write a pseudocode algorithm that uses two stacks to simulate one queue. Only consider insertions and deletions from the queue. Since this is pseudocode, you do not have to descri…
Write a pseudocode algorithm whose purpose is to find the maximum, minimum and s
Write a pseudocode algorithm whose purpose is to find the maximum, minimum and sum for a collection of numbers. To practice the concepts of local scope, references, and functions,…
Write a pseudocode algorithm whose purpose is to find the maximum, minimum and s
Write a pseudocode algorithm whose purpose is to find the maximum, minimum and sum for a collection of numbers. To practice the concepts of local scope, references, and functions,…
Write a pseudocode description of the printLCS () algorithm, which prints the lo
Write a pseudocode description of the printLCS () algorithm, which prints the longest common subsequence of two strings x and y. Your algorithm takes as input the completed 11cs […
Write a pseudocode description of the printLCS () algorithm, which prints the lo
Write a pseudocode description of the printLCS () algorithm, which prints the longest common subsequence of two strings x and y. Your algorithm takes as input the completed llcs […
Write a pseudocode description of the printLCS () algorithm, which prints the lo
Write a pseudocode description of the printLCS () algorithm, which prints the longest common subsequence of two strings x and y. Your algorithm should take as input the completed …
Write a pseudocode description of the printLCS() algorithm, which prints the lon
Write a pseudocode description of the printLCS() algorithm, which prints the longest common subsequence of two strings x and y. Your algorithm takes as input the completed 11cs []…
Write a pseudocode instructions to carry out the following computational operati
Write a pseudocode instructions to carry out the following computational operations: Compute the interest earned in 1 year given the starting account balance B and the annual inte…
Write a pseudocode repetition statement that inputs an Integer value named print
Write a pseudocode repetition statement that inputs an Integer value named printTimes from the user and prints "Hello, World!" that many times. Notice that count is initialized to…
Write a pseudocode repetition statement that inputs an Integer value named print
Write a pseudocode repetition statement that inputs an Integer value named printTimes from the user and prints "Hello, World!" that many times. Notice that count is initialized to…
Write a pseudocode structure that assigns the value of \"low\" to the variable n
Write a pseudocode structure that assigns the value of "low" to the variable named outcome if the variable named userGuess is less than 42; it assigns "high" to outcome if it is a…
Write a psuedocode for the following java code: import java.util.Scanner; public
Write a psuedocode for the following java code: import java.util.Scanner; public class InventoryManagement { public static void main(String[] args) { String itemName double quanti…
Write a public Java class called Student that represents one student. The class
Write a public Java class called Student that represents one student. The class should include: ? Instance variables ID (int), firstName (String), and GPA (double). ? A constructo…
Write a public String toString() method to do an in-order traversal of the tree
Write a public String toString() method to do an in-order traversal of the tree to set up a string with the Items in increasing order; each Item should appear on a separate line. …
Write a public class called Square that has 1 private data-field called side. Th
Write a public class called Square that has 1 private data-field called side. The type fo the data-field is double. The class will only have one constructor that initializes a squ…
Write a public member function incrementNodes for a BinaryTree class that will a
Write a public member function incrementNodes for a BinaryTree class that will add 1 to each item in the binary tree. If this function calls any other function, you must write the…
Write a public method that takes two arguments: a double representing the number
Write a public method that takes two arguments: a double representing the number of hours worked and a double representing the hourly pay, and returns a double representing the we…
Write a public static method called averageOfTwo that takes an ArrayList as a pa
Write a public static method called averageOfTwo that takes an ArrayList as a parameter, and returns another ArrayList. The returned ArrayList should have a size that is 1/2 the s…
Write a public static method called smaller Of Two that takes two Array List as
Write a public static method called smaller Of Two that takes two Array List as parameters, and returns another Array List. The returned Array List should have the same size as th…
Write a public static method called smallerOfTwo that takes two ArrayList as par
Write a public static method called smallerOfTwo that takes two ArrayList as parameters, and returns another ArrayList. The returned ArrayList should have the same size as the two…
Write a public static method called writeTokensToLines that will read an input f
Write a public static method called writeTokensToLines that will read an input file one token at a time using Scanner, and write the tokens to a file using a PrintWriter, one toke…
Write a public, static, recursive method called reverse that takes a single long
Write a public, static, recursive method called reverse that takes a single long integer argument and prints the digits of the number in reverse. For example: reverse (-12); // pr…
Write a puppet module to accomplish the following: Automatically install and run
Write a puppet module to accomplish the following: Automatically install and run apache with a default HTML page that gives information about the system. That information should b…
Write a pure functional program to add up numbers in a list. Start with the temp
Write a pure functional program to add up numbers in a list. Start with the template given, and do not change anything except where noted. Do not attempt to use loops -- this will…
Write a python 2.7 program that reads the following information and prints a pay
Write a python 2.7 program that reads the following information and prints a payroll statement: "Employee’s name Number of hours worked in a week Hourly pay rate State tax withhol…
Write a python 3 program-containing 2 functions and a main program that calls th
Write a python 3 program-containing 2 functions and a main program that calls those functions to test them thoroughly. Step 1: Create a FUNCTION called createMenu that creates a S…
Write a python 3.5 program that can generate the output shown for the .txt file.
Write a python 3.5 program that can generate the output shown for the .txt file. Use proper indentation. 2 Lab Questions l. Write a program called q1.py that analyzes and prints f…
Write a python code and try to explain the thought process/ procedure. Thank you
Write a python code and try to explain the thought process/ procedure. Thank you! We'll say that a "mirror" section in an array is a group of contiguous elements such that somewhe…
Write a python code for these problems 1. Write a python function which calculat
Write a python code for these problems 1. Write a python function which calculates the product of all integers in a list. Write additional statements that calls this function and …
Write a python code that do the following: Ask the user for the number of scores
Write a python code that do the following: Ask the user for the number of scores he/sbe will be entering. Create a list to hold the scores. Print all the scores to the screen. Sor…
Write a python code to perform the following tasks: 1. create a numpy matrix a o
Write a python code to perform the following tasks: 1. create a numpy matrix a of dimension 5 x 5 with diagnol entries from 0 to 4 using a single line of python 2. multiply (matri…
Write a python function cobweb(f, x0, n, xmin, xmax, ymin, y max) to draw a cobw
Write a python function cobweb(f, x0, n, xmin, xmax, ymin, y max) to draw a cobweb plot of fixed point iteration, where f is the name of function to plot; x0 is the starting point…
Write a python function definition for a function, get_tax that takes as a param
Write a python function definition for a function, get_tax that takes as a parameter an optional tax rate. If the tax rate is not specified, it defaults to 0.1 (10%). The function…
Write a python function password_check() that takes as input two strings newpass
Write a python function password_check() that takes as input two strings newpassword and oldpassword, and that accepts the new password (i.e., returns True) if newpassword is diff…
Write a python function that takes the name of a SQL table as parameter and then
Write a python function that takes the name of a SQL table as parameter and then does the following: Select all rows from that table (you can assume that the table already exists …
Write a python program Problem 1: Write a Python Function called translate() tha
Write a python program Problem 1: Write a Python Function called translate() that takes a string parameter named sentence. Your function should translate the sentence into somethi…
Write a python program Write a function called solveFile(inputfilename, outputfi
Write a python program Write a function called solveFile(inputfilename, outputfilename). It takes two strings parameters which are filenames. The input file will have multiple lin…
Write a python program Write a program to help a user figure out the lowest pric
Write a python program Write a program to help a user figure out the lowest price milk. Your program should ask the user to input prices of milk 5 times. It should then print the …