Browse W
Alphabetical listing with fast deep pagination.
66619 items • Page 1056 / 1333
Write a program in MATLAB that: i) Creates a two-dimensional array A whose first
Write a program in MATLAB that: i) Creates a two-dimensional array A whose first column will contain degrees of temperature from 0 to 100 per 5 degrees Celsius (0, 5, 10, 15, ...,…
Write a program in MATLAB to compute the approximate value for the derivative of
Write a program in MATLAB to compute the approximate value for the derivative of a function using the finite difference formula f(x)=f(x + h)-f(x)/h Test your program using the fu…
Write a program in MATLAB to determine how long, in units of seconds, it will ta
Write a program in MATLAB to determine how long, in units of seconds, it will take a motor to raise a load into the air. Assume the user will specify the power of the motor in uni…
Write a program in MATLAB/Octave that generates prime numbers and writes them in
Write a program in MATLAB/Octave that generates prime numbers and writes them in the following format. (A prime number is a number that is divisible only by itself and 1.) The out…
Write a program in MIPS assembly for use in the SPIM simulator. The program will
Write a program in MIPS assembly for use in the SPIM simulator. The program will implement a single player guessing game. The program will ask the player try to guess the secret n…
Write a program in MIPS assembly language that asks the users to enter a value f
Write a program in MIPS assembly language that asks the users to enter a value for array size “n” and fill up the array with n integers. Then reverse the array and print it on the…
Write a program in MIPS assembly language that implements the DESCENDING bubble
Write a program in MIPS assembly language that implements the DESCENDING bubble sort algorithm to sort a variable-sized array of signed 32-bit integers (words) that are read from …
Write a program in MIPS assembly language that implements the bubble sort algori
Write a program in MIPS assembly language that implements the bubble sort algorithm to sort a variable-sized array of signed 32-bit integers (words) that are read from the console…
Write a program in MIPS assembly language that implements the bubble sort algori
Write a program in MIPS assembly language that implements the bubble sort algorithm to sort a variable-sized array of signed 32-bit integers (words) that are read from the console…
Write a program in MIPS assembly language that implements the bubble sort algori
Write a program in MIPS assembly language that implements the bubble sort algorithm to sort a variable-sized array of signed 32-bit integers (words) that are read from the console…
Write a program in MIPS assembly language that takes a set of signed 32 bit inte
Write a program in MIPS assembly language that takes a set of signed 32 bit integers (words) as the input and classifies them into odd and even numbers. Basically just ask the use…
Write a program in MIPS assembly language that takes a set of signed 32-bit inte
Write a program in MIPS assembly language that takes a set of signed 32-bit integers (words) as the input, classifies them into odd and even numbers, and then sorts the odd number…
Write a program in MIPS assembly language that takes a set of signed 32-bit inte
Write a program in MIPS assembly language that takes a set of signed 32-bit integers (words) as the input, classifies them into odd and even numbers, and then sorts the odd number…
Write a program in MIPS assembly language to convert an ASCII number siring cont
Write a program in MIPS assembly language to convert an ASCII number siring containing positive and negative integer decimal strings, to an integer. Your program should expect reg…
Write a program in MIPS assembly language to convert an ASCII number string cont
Write a program in MIPS assembly language to convert an ASCII number string containing positive and negative integer decimal strings, to an integer. Your program should expect reg…
Write a program in MIPS assembly language to convert an ASCII number string cont
Write a program in MIPS assembly language to convert an ASCII number string containing positive and negative integer decimal strings, to an integer. Your program should expect reg…
Write a program in MIPS assembly language to find nth Fibonacci number. What is
Write a program in MIPS assembly language to find nth Fibonacci number. What is Fibonacci series? It can be defined by the following equations: Fn= Fn-1+ Fn-2 where Fn is the nth …
Write a program in ML Consider the Taylor expansion of the sin function sin (x)
Write a program in ML Consider the Taylor expansion of the sin function sin (x) = x - x^3/3! + x^5/5! - x^7/7! +... As you can see, it is also a sum of terms with a couple of twis…
Write a program in Matlab where the program plays a hot and cold game. The user
Write a program in Matlab where the program plays a hot and cold game. The user answers two inputs: x=input('what is the x location of the object?') y=input('what is the y locatio…
Write a program in Matlab where the program plays a hot and cold game. The user
Write a program in Matlab where the program plays a hot and cold game. The user answers two inputs: x=input('what is the x location of the object?') y=input('what is the y locatio…
Write a program in Microsoft Visual Studio C++ that inputs a time from the conso
Write a program in Microsoft Visual Studio C++ that inputs a time from the console. The time should be in the format"HH:MM AM" or "HH:MM PM". Hours may be one or two digits,for ex…
Write a program in NASM that performs simple encryption by rotating each plainte
Write a program in NASM that performs simple encryption by rotating each plaintext byte a varying number of positions in different directions. For example, in the following array …
Write a program in PHP. Instructions: 1. Create the function with parameters of
Write a program in PHP. Instructions: 1. Create the function with parameters of hours, minutes, and meridian. 2. If meridian value is AM, display the resulting time: same as hours…
Write a program in PHYTON that calculates and prints the bill for a cellular tel
Write a program in PHYTON that calculates and prints the bill for a cellular telephone company. The company offers two types of service: regular and premium. Its rates vary, depen…
Write a program in PYTHON for creating a binary search tree (BST) from a given n
Write a program in PYTHON for creating a binary search tree (BST) from a given number randomly generated (distinct) integer values in a given interval [i, j], such that the height…
Write a program in PYTHON that uses the Stack implementation given to you in sta
Write a program in PYTHON that uses the Stack implementation given to you in stack.py to reverse a String. The program should ask the user for a String, and should then display th…
Write a program in PYTHON that uses the molecular weight of a chemical compound
Write a program in PYTHON that uses the molecular weight of a chemical compound of hydrogen, carbon, and oxygen, so that it can take as user input a chemical formula of the form C…
Write a program in PYTHON that will let the user play Hangman as shown in the ex
Write a program in PYTHON 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…
Write a program in PYTHON that will let the user play Hangman as shown in the ex
Write a program in PYTHON 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…
Write a program in PYTHON to compute the roman numeral representation of integer
Write a program in PYTHON to compute the roman numeral representation of integers. Given an integer larger than 0 and less than 4000, convert it to roman numerals. You can find th…
Write a program in Pascal, that takes a document and outputs the number of lines
Write a program in Pascal, that takes a document and outputs the number of lines, words and characters there are in the document. Program must have an output file as well as an in…
Write a program in Pep/8 or Pep/9 object code that will read an integer between
Write a program in Pep/8 or Pep/9 object code that will read an integer between 0 and 15 from the keyboard and display its equivalent in binary. Example: Input: 11 Output: 1011 Hi…
Write a program in Pep/9 assembly that matches the machine language program 4.37
Write a program in Pep/9 assembly that matches the machine language program 4.37. Take a screenshot. this is 4.37 machine language, just in case. ;File: fig0437.peph Computer Syst…
Write a program in Perl to count the number of times the word the occurs in the
Write a program in Perl to count the number of times the word the occurs in the file oneWordGettysburg.txt located on the wiki and in my directory on users Contents of oneWordGett…
Write a program in Prolog that satisfies the criteria in the image below. The Al
Write a program in Prolog that satisfies the criteria in the image below. The Allegro Music School is preparing the program for its Spring Recital. The school has two teachers, Ms…
Write a program in Python implement the RSA algorithm for cryptography. Set up:
Write a program in Python implement the RSA algorithm for cryptography. Set up: 1.Choose two large primes, p and q. (There are a number of sites on-line where you can find large p…
Write a program in Python or C++ that has TWO functions: Function One is called:
Write a program in Python or C++ that has TWO functions: Function One is called: _encrypt Function Two is called: _decrypt Function one takes plain text, and assesses the indexed …
Write a program in Python that has TWO functions: Function One is called: _encry
Write a program in Python that has TWO functions: Function One is called: _encrypt Function Two is called: _decrypt Function one takes plain text, and assesses the indexed value o…
Write a program in Python that will play the game of MAstermind wher the compute
Write a program in Python that will play the game of MAstermind wher the computer chooses the hidden colors, and the human player attempts to guess the hidden colors. The Game: In…
Write a program in Python to solve a linear system of the form Ax = b by Gaussia
Write a program in Python to solve a linear system of the form Ax = b by Gaussian elimination with sealed partial pivoting- Yon should pass the matrix A and the right hand side ve…
Write a program in Python to solve a linear system of the form Ax = b by Gaussia
Write a program in Python to solve a linear system of the form Ax = b by Gaussian elimination with scaled partial pivoting. You should pass the matrix A and the right hand side ve…
Write a program in Python to solve a linear system of the form Ax = b by Gaussia
Write a program in Python to solve a linear system of the form Ax = b by Gaussian elimination with scaled partial pivoting. You should pass the matrix A and the right hand side ve…
Write a program in Python with the following: a) Function isPrime : - descriptio
Write a program in Python with the following: a) Function isPrime: - description: verifies if a whole number is prime. - input parameter: whole number. - return: True or False. Re…
Write a program in Python with the following: a) Function isPrime: - description
Write a program in Python with the following: a) Function isPrime: - description: verifies if a whole number is prime. - input parameter: whole number. - return: True or False. Re…
Write a program in R: Let X be a normally distributed random variable with mean
Write a program in R: Let X be a normally distributed random variable with mean 2 and variance 9. (a) Let Y = 5X + 2, what is the distribution of Y? What are it’s mean and varianc…
Write a program in TASM that performs the addition of two byte sized numbers tha
Write a program in TASM that performs the addition of two byte sized numbers that are initially stored in memory locations 'num1' and 'num2'. The addition result should be stored …
Write a program in VB 2010 to determine a student\'s GPA. The user should enter
Write a program in VB 2010 to determine a student's GPA. The user should enter the grade (A, B, C, D, or F) and the number of credit hours for a course, and then click on the Reco…
Write a program in XMega assembly that reads a number from Port B and adds to it
Write a program in XMega assembly that reads a number from Port B and adds to it a number from Port E. The result of the addition should be written to Port F. If an overflow condi…
Write a program in \"C Programming\" code that will allow a user to Input a list
Write a program in "C Programming" code that will allow a user to Input a list of your family members along with their age and state where they reside. Determine and print the ave…
Write a program in \"C\" language. The roman number program above works correctl
Write a program in "C" language. The roman number program above works correctly, provided the user enters valid roman digits followed by a newline at the prompt. If the user enter…