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 909 / 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 C program with a loop that asks user to enter a series of integers in th
Write a C program with a loop that asks user to enter a series of integers in the range of [-100 100]. If user enters a number out of that range, your program shouldn’t consider i…
Write a C program with the following functions: double minValue( const double a[
Write a C program with the following functions: double minValue( const double a[], unsigned els); double minIndex(const double a[], unsigned els); Please use exactly these prototy…
Write a C program with the following functions: sort: a void function with 2 arg
Write a C program with the following functions: sort: a void function with 2 args: an array of doubles, which I'll call a. an unsigned that is the number of elements in the array.…
Write a C program with the same goal of managing a pipe between two processes: c
Write a C program with the same goal of managing a pipe between two processes: communicate n The program can be structured as follows. It makes a pipe system call to create a pipe…
Write a C program you will implement a program to implement a small database and
Write a C program you will implement a program to implement a small database and you will learn how to store it in a binary file. You are to write a program that reads records of …
Write a C program(not C++) to implement semaphores for the synchronization of th
Write a C program(not C++) to implement semaphores for the synchronization of threads in Linux environment. The program should offer mutual exclusion using semaphores to a set of …
Write a C program, analogous to the Unix/Linux cat command, that uses mmap() and
Write a C program, analogous to the Unix/Linux cat command, that uses mmap() and write() system calls (instead of read() or write() ) to copy a source file to the screen. Use fsta…
Write a C program, called integer.sum.c, that computes the sum of integers inter
Write a C program, called integer.sum.c, that computes the sum of integers interactively provided by the user. At each iteration, the program should print the number of integers t…
Write a C program, called linear_solver.c, that solves single-variable linear eq
Write a C program, called linear_solver.c, that solves single-variable linear equations. The program should prompt the user to enter a linear equation of the form                 …
Write a C program, called power of three.c, that prompts the user to input a pos
Write a C program, called power of three.c, that prompts the user to input a positive integer, and then checks whether this integer is a power of 3. If the input is, indeed, equal…
Write a C program, called power-of-three c, that prompts the user to input a pos
Write a C program, called power-of-three c, that prompts the user to input a positive integer, and then checks whether this integer is a power of 3. If the input is, indeed, equal…
Write a C program, convert2tenandhex.c that takes one command line parameter. Th
Write a C program, convert2tenandhex.c that takes one command line parameter. The parameter is an integer either in decimal or hexadecimal. If it is in hexadecimal, it starts with…
Write a C program, grade.c , which includes a function, calculateAverage() , tha
Write a C program, grade.c, which includes a function, calculateAverage(), that can calculate the average of an arbitary number of test scores. Your program will not know in advan…
Write a C program, grade.c , which includes a function, calculateAverage() , tha
Write a C program, grade.c, which includes a function, calculateAverage(), that can calculate the average of an arbitary number of test scores. Your program will not know in advan…
Write a C program, in a file mergesort.c to implement one step of merge sort , i
Write a C program, in a file mergesort.c to implement one step of merge sort, i.e., sort two list of numbers and merge them into a single sorted list, as specified below. Input: T…
Write a C program, in the main function, you need to create an integer array wit
Write a C program, in the main function, you need to create an integer array with 10 elements in it. Use a for loop to read 10 integers from the user and store the values to the a…
Write a C program, in the main function, you need to create an integer array wit
Write a C program, in the main function, you need to create an integer array with 10 elements in it. Use a for loop to read 10 integers from the user and store the values to the a…
Write a C program, thrIncr , that creates two threads, each of which executes th
Write a C program, thrIncr, that creates two threads, each of which executes the same function. The function, threadFunc(), executes a loop that repeatedly increments a global var…
Write a C program, using arrays, for the circuit, as shown below, that will prin
Write a C program, using arrays, for the circuit, as shown below, that will print a table of the voltage across R3 and the power in R3 for E from 5 to 50 V in steps of 5V. Draw th…
Write a C program, using arrays, for the circuit, as shown below, that will prin
Write a C program, using arrays, for the circuit, as shown below, that will print a table of the voltage across R3 and the power in R3 for E from 5 to 50 V in steps of 5V. Draw th…
Write a C program, which reads the file “file.txt” and counts the frequency of e
Write a C program, which reads the file “file.txt” and counts the frequency of each digit (0, 1, 2, ..., 9)/letter (A/a, B/b, …, Z/z). Then, use fork() to duplicate a child proces…
Write a C program, which reads the file “file.txt” and counts the frequency of e
Write a C program, which reads the file “file.txt” and counts the frequency of each digit (0, 1, 2, ..., 9)/letter (A/a, B/b, …, Z/z). Then, use fork() to duplicate a child proces…
Write a C program, which reads the file “file.txt” and counts the frequency of e
Write a C program, which reads the file “file.txt” and counts the frequency of each digit (0, 1, 2, ..., 9)/letter (A/a, B/b, …, Z/z). Then, use fork() to duplicate a child proces…
Write a C program, which takes a string as an input and then generates a numeric
Write a C program, which takes a string as an input and then generates a numeric value for that using the following formula: ?(10*position of the digit*digit)+5*(total number of n…
Write a C program, with documentation, that will: 1) Open the file myfile.txt (r
Write a C program, with documentation, that will: 1) Open the file myfile.txt (remember it is located in the root directory of the curren drive, which may no be in the c:drive) 2)…
Write a C program,randint.c, to generate a given number of random integers in an
Write a C program,randint.c, to generate a given number of random integers in an interval and save them to a text file. Your program will be run from the command line as follows: …
Write a C program. Finish incomplete code Reads user info from standar input, ou
Write a C program. Finish incomplete code Reads user info from standar input, outputs modified versions of the records. INCOMPLETE CODE #include #define SIZE 10 #define SIZE2 40 i…
Write a C program. Hashing Table from input. Write a program to calculate the ha
Write a C program. Hashing Table from input. Write a program to calculate the hashing table of input data. The program reads from the standard input the table size k. The program …
Write a C program. Standard library defines alibrary function atoi. This functio
Write a C program. Standard library defines alibrary function atoi. This function converts an array of digit characters, which represents a decimal integer literal, into the corre…
Write a C program. Where a and b are not both zero. The program should display a
Write a C program. Where a and b are not both zero. The program should display a menu with the following options: a) Enter points b) Compute the distance c) Display the line equat…
Write a C program: For this problem you will make modifications and extensions t
Write a C program: For this problem you will make modifications and extensions to the least squares linear regression progra m discussed in class on February1. The source code, re…
Write a C program: Thanks for helping! Write a program that will read up to 100
Write a C program: Thanks for helping! Write a program that will read up to 100 circles. It is to compute the area of each circle and is to sort the circles by increasing areas. I…
Write a C program: Thanks! Write a program that will read up to 100 circles. It
Write a C program: Thanks! Write a program that will read up to 100 circles. It is to compute the area of each circle and is to sort the circles by increasing areas. If two circle…
Write a C program: Thanks! You are to write a program that defines and uses type
Write a C program: Thanks! You are to write a program that defines and uses typedefs to implement: a. A user defined type named point that uses a structure to represent a point as…
Write a C program: The left-shift operator can be used to pack two character val
Write a C program: The left-shift operator can be used to pack two character values into a 2-byte unsigned int variable. Write a program that inputs two characters from the keyboa…
Write a C program: You are to write a program that reads fractions and prints ea
Write a C program: You are to write a program that reads fractions and prints each fraction reduced to its lowest terms. The output of your program is to look like this where the …
Write a C programming (Arrays) , which presents the user a menu of operations th
Write a C programming (Arrays), which presents the user a menu of operations that it can perform to manipulate an array floating point numbers.   The choices are listed and a prom…
Write a C programming language console program of the vector multiply-add “axpy”
Write a C programming language console program of the vector multiply-add “axpy” algorithm for double precision floating data types: z[i] = (a*x[i]) + y[i]. Your C program should …
Write a C programming which can read the text file that contain 4 integers of an
Write a C programming which can read the text file that contain 4 integers of an IP address along with a component to store up to 10 characters. Example of data file.txt look like…
Write a C server program that takes the port value to listen to as command line
Write a C server program that takes the port value to listen to as command line arguments. If no command line arguments were given, ask the user to enter the port value. Then, the…
Write a C sharp code to draw a pumpkin or happy face using the graphics commands
Write a C sharp code to draw a pumpkin or happy face using the graphics commands. Have the image to move across the screen. When it reaches the right hand side of the screen, have…
Write a C shell program that asks for and then reads a directory name, and then
Write a C shell program that asks for and then reads a directory name, and then displays all the files in this directory if it is a valid directory; otherwise(i.e. if it is not a …
Write a C statement that produces a triangle wave with the following description
Write a C statement that produces a triangle wave with the following description: 1    1 2 1     1 2 3 2 1     1 2 3 4 3 2 1    1 2 3 4 5 4 3 2 1 ...... 1 2 3 4 5 6 7 8 ... N-1 N …
Write a C that computes the sum of integers interactively provided by the user.
Write a C that computes the sum of integers interactively provided by the user. At each iteration, the program should print the number of integers that the user has entered so far…
Write a C translation of the NASM program below, sticking to the assembly code a
Write a C translation of the NASM program below, sticking to the assembly code as much as possible. Use single-letter variable names for function parameters (e.g., int foo(int x, …
Write a C# (C sharp) program to help instructors calculate grades for students.
Write a C# (C sharp) program to help instructors calculate grades for students. You first want to prompt instructors to enter the desired number of scores. This value is the size …
Write a C# (console) program to create an interface that acts as a simple two nu
Write a C# (console) program to create an interface that acts as a simple two number calculator. Your program should continue doing calculations until it is closed or exited. [2 M…
Write a C# ATM program using a class for account which must have a name (get thi
Write a C# ATM program using a class for account which must have a name (get this from the user), an account # (assigned by you the first time the account name is entered) and a b…
Write a C# Class that will hold animal data in a file called animal.cs. The clas
Write a C# Class that will hold animal data in a file called animal.cs. The class should have appropriate data type fields for animal type, breed, color, gender, and cost. There s…
Write a C# Class that will hold animal data in a file called animal.cs. The clas
Write a C# Class that will hold animal data in a file called animal.cs. The class should have appropriate data type fields for animal type, breed, color, gender, and cost. There s…