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 1005 / 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 function for a function \"count\" that counts the number of odd and even
Write a function for a function "count" that counts the number of odd and even numbers in an integer array. Note that the function has to return two results. Note that the four fo…
Write a function for each of the following problems within your main.cpp file an
Write a function for each of the following problems within your main.cpp file and make the appropriate calls to each function from within your main function. Problem1 The U.S. Cen…
Write a function for solving a quadratic equation using the following header: de
Write a function for solving a quadratic equation using the following header: def solveQuadratic (eqn, roots): The coefficients of a quadratic equation ax^2 + bx + c = 0 are passe…
Write a function for the following prototype: void addLetterS( const char orig[]
Write a function for the following prototype: void addLetterS( const char orig[], char plural[]) The function will copy the "orig" character array into the character array "plural…
Write a function for the hanning window. For this function, you should take as i
Write a function for the hanning window. For this function, you should take as input parameters a part of the array (remember – whenever you pass in an array, no matter what you p…
Write a function for the total cost of driving a truck from Chicago to New Orlea
Write a function for the total cost of driving a truck from Chicago to New Orleanse with respect to the average speed. Use calculus to minimize cost. Please explain the reasoning.…
Write a function function [fp] = f uncderiv (func, x, h) that takes a function f
Write a function function [fp] = f uncderiv (func, x, h) that takes a function func and returns the approximate derivative fp at given loeation(s) x using the finite difference fo…
Write a function function [x1, x2, flag] - myquad(a,b,c) that computes the roots
Write a function function [x1, x2, flag] - myquad(a,b,c) that computes the roots of the quadratic equation ax2 + br + c = 0. The input arguments a, b and c (which may take any val…
Write a function function [xl, x2, flag] = quad(a, b, c) which computes the root
Write a function function [xl, x2, flag] = quad(a, b, c) which computes the roots of the quadratic equation ax2 + bx + c = 0. The input arguments a, b and c (which may take any va…
Write a function function [xroot, froot] = newtonroot (func, x, h) that takes a
Write a function function [xroot, froot] = newtonroot (func, x, h) that takes a function func and returns he approximate root xroot as well as the function value froot at the appr…
Write a function function [xroot, froot] = newtonroot (func, x, h) that takes a
Write a function function [xroot, froot] = newtonroot (func, x, h) that takes a function func and returns he approximate root xroot as well as the function value froot at the appr…
Write a function getStockData(company) that takes a company symbol as a string a
Write a function getStockData(company) that takes a company symbol as a string argument and returns these values: the last trade, change, date, open, and previous close. The defau…
Write a function get_Roman_token() based on the following pseudocode: try to rea
Write a function get_Roman_token() based on the following pseudocode: try to read a char c1 if it's a period, return 0 first = roman_to_int(c1) try to read a char c2 if it's a per…
Write a function hottest_city (csv_filename) that analyses the temperatures reco
Write a function hottest_city (csv_filename) that analyses the temperatures recorded in a CSV file, and returns a 2-tuple made up of the maximum temperature in the whole dataset a…
Write a function i_to_a that converts a 32-bit integer into a string of ASCII di
Write a function i_to_a that converts a 32-bit integer into a string of ASCII digits. The function will receive as an argument a 32-bit integer and it should return a string of di…
Write a function implementation that overloads the == operator of a dynamic sequ
Write a function implementation that overloads the == operator of a dynamic sequence container (linked list) class to lest if two object have the same data sets. What type of stru…
Write a function in *****MATLAB***** that takes an integer (n) and then computes
Write a function in *****MATLAB***** that takes an integer (n) and then computes the following based on the value of the integer: While the value of n is greater than 1, replace t…
Write a function in ARM assembly language which will insert a string into anothe
Write a function in ARM assembly language which will insert a string into another string at a specific location. The function is: char * csinsert( char * s1, char * s2, int loc ) …
Write a function in C (only C) to operate below task. Or if not a function, writ
Write a function in C (only C) to operate below task. Or if not a function, write a series of statement to excute below task. Open a file Decrypt_hello.txt to write. You need to r…
Write a function in C language, Implement following functions: void display_menu
Write a function in C language, Implement following functions: void display_menu(), int check_option(int), int check_size(int), void initialize_2Darray(int x[][MAX], int size), vo…
Write a function in C programming not C++: int days_in_month(int month, int year
Write a function in C programming not C++: int days_in_month(int month, int year); which is given a month and year and returns the number of days in that month. You should use you…
Write a function in C that reads in a single line CSV (comma separated values) t
Write a function in C that reads in a single line CSV (comma separated values) text file. The file is expected to be a plaintext *.txt file with single digit integer values separa…
Write a function in C(not c++ or C#) that recieves an XML file and traverses the
Write a function in C(not c++ or C#) that recieves an XML file and traverses the tree in the following function with recursion and prints the contents. (i believe in pre-order) US…
Write a function in C++ that does the following: The function must not use any f
Write a function in C++ that does the following: The function must not use any function templates from the algorithms portion of the Standard C++ library. int enumerate(const stri…
Write a function in C++ that does the following: The function must not use any f
Write a function in C++ that does the following: The function must not use any function templates from the algorithms portion of the Standard C++ library. int locate(const string …
Write a function in C++ that does the following: The function must not use any f
Write a function in C++ that does the following: The function must not use any function templates from the algorithms portion of the Standard C++ library. bool locateSequence(cons…
Write a function in C++ that does the following: The function must not use any f
Write a function in C++ that does the following: The function must not use any function templates from the algorithms portion of the Standard C++ library. int locationOfMin(const …
Write a function in C++ that does the following: The function must not use any f
Write a function in C++ that does the following: The function must not use any function templates from the algorithms portion of the Standard C++ library. int moveToBeginning(stri…
Write a function in C++ that is similar to the split() function in Python. Chop(
Write a function in C++ that is similar to the split() function in Python. Chop(...) is given a string and a separator character as parameters and returns an integer result. The f…
Write a function in C++ that is similar to the split() function in Python. Chop(
Write a function in C++ that is similar to the split() function in Python. Chop(...) is given a string and a separator character as parameters and returns an integer result. The f…
Write a function in C++ to apply left or right rotations to a binary search tree
Write a function in C++ to apply left or right rotations to a binary search tree based on the height of the left and right sub-trees of the root. The function should first determi…
Write a function in C++ to count the number of occurences in an array, Explain i
Write a function in C++ to count the number of occurences in an array, Explain in detail your code to receive full credit. Let say you have these two arrays : L1 = [1, 3, 6, 6, 6,…
Write a function in Lisp (Scheme) called run-cmd that takes three parameters. Th
Write a function in Lisp (Scheme) called run-cmd that takes three parameters. The first is a symbol “command” that defines what to do with the remaining 2 parameters. Your functio…
Write a function in MATLAB that takes as input a symmetric tridiagonal matrix re
Write a function in MATLAB that takes as input a symmetric tridiagonal matrix represented as two vectors: an n times 1 vector u representing the main diagonal and an (n - 1) times…
Write a function in MATLAB that takes as input an n times 1 vector p of rearrang
Write a function in MATLAB that takes as input an n times 1 vector p of rearranged integers from 1 to n representing a permutation matrix P whose i-th row is the p(i)-th row of th…
Write a function in MATLAB that takes as input an n×1 vector p of rearranged int
Write a function in MATLAB that takes as input an n×1 vector p of rearranged integers from 1 to n representing a permutation matrix P whose i-th row is the p(i)-th row of the iden…
Write a function in MATLAB which performs linear interpolation if two (x,y) data
Write a function in MATLAB which performs linear interpolation if two (x,y) data sets are entered or quadratic interpolation if three sets of data are entered. The function should…
Write a function in ML (e) union This function returns the union of two sets. Fo
Write a function in ML (e) union This function returns the union of two sets. For example, union((3,[2,7,4]), (2,[7,3])) may return (4,[4,2,3,7]) because {2, 7, 4} {7, 3} = {4, 2,…
Write a function in Matlab that takes as input a size n and a tridiagonal matrix
Write a function in Matlab that takes as input a size n and a tridiagonal matrix given as three vectors: n × 1 vector v representing the main diagonal, (n 1) × 1 vector w represen…
Write a function in Matlab that takes as input a size n and a tridiagonal matrix
Write a function in Matlab that takes as input a size n and a tridiagonal matrix given as three vectors: n × 1 vector v representing the main diagonal, (n 1) × 1 vector w represen…
Write a function in Matlab that takes as input a size n and a tridiagonal matrix
Write a function in Matlab that takes as input a size n and a tridiagonal matrix given as three vectors: n × 1 vector v representing the main diagonal, (n 1) × 1 vector w represen…
Write a function in Matlab that takes as input a size n and a tridiagonal matrix
Write a function in Matlab that takes as input a size n and a tridiagonal matrix given as three vectors: n × 1 vector v representing the main diagonal, (n 1) × 1 vector w represen…
Write a function in Matlab that takes as input a size n and a tridiagonal matrix
Write a function in Matlab that takes as input a size n and a tridiagonal matrix given as three vectors: n × 1 vector v representing the main diagonal, (n 1) × 1 vector w represen…
Write a function in Matlab that takes as input s and a number x and outputs the
Write a function in Matlab that takes as input s and a number x and outputs the floating point number of x using s-digit rounding. You may use Matlab’s “round” command to help you…
Write a function in Matlab that takes as input s and a number x and outputs the
Write a function in Matlab that takes as input s and a number x and outputs the floating point number of x using s-digit rounding. You may use Matlab’s “round” command to help you…
Write a function in Matlab that takes as input the number n and a symmetric trid
Write a function in Matlab that takes as input the number n and a symmetric tridiagonal matrix given as two vectors: n×1 vector v representing the main diagonal and (n1)×1 vector …
Write a function in Matlab that takes as input the number n, an n × n matrix A,
Write a function in Matlab that takes as input the number n, an n × n matrix A, an n-component column vector b, an n-component column vector x0, and the number of steps N. Have it…
Write a function in Matlab that takes as input the number n, an n × n matrix A,
Write a function in Matlab that takes as input the number n, an n × n matrix A, an n-component column vector b, an n-component column vector x0, and the number of steps N. Have it…
Write a function in Matlab that takes as input the number n, the size of matrice
Write a function in Matlab that takes as input the number n, the size of matrices and vectors; m, the number of nonzero elements of a sparse matrix; and the sparse matrix whose no…
Write a function in Matlab that takes as input the number n, the size of matrice
Write a function in Matlab that takes as input the number n, the size of matrices and vectors; m, the number of nonzero elements of a sparse matrix; and the sparse matrix whose no…