Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

Web development and programming

191828 questions • Page 3813 / 3837

write a function that computes the truth table of a statement in propositional l
write a function that computes the truth table of a statement in propositional logic along with several functions that reason about those tables. Let’s start with the task of comp…
write a function that converts an input of some integer number of ounces into ou
write a function that converts an input of some integer number of ounces into outputs of integer numbers of quarts, pints, and ounces. do not write a main function. your function …
write a function that counts the number of times the value of y occurs in the fi
write a function that counts the number of times the value of y occurs in the first n values in array x. y is an integer variable, x is an array of integers, and n is an integer v…
write a function that mimics the conversion that printf performs when it prints
write a function that mimics the conversion that printf performs when it prints in decimal format. (use printf to print each digit.) The function prototype is int printDecimalDigi…
write a function that receives a pointer to a character string andreturns the nu
write a function that receives a pointer to a character string andreturns the number of repeated characters that occur in the string.For example, the string "Mississippi" has thre…
write a function that receives a pointer to a character string andreturns the nu
write a function that receives a pointer to a character string andreturns the number of repeated characters that occur in the string.For example, the string "Mississippi" has thre…
write a function that returns the first node of a linked list, Your function\'s
write a function that returns the first node of a linked list, Your function's prototype is as follows: int abc(struct node *head, int *x) and operates as follows: abc is an array…
write a function that reutrns true if all letters of a word are sorted alphabeti
write a function that reutrns true if all letters of a word are sorted alphabetically from right to left. If not, return false. Let's call a word a "downword" if its letters are a…
write a function that takes as input a real number and checks to see if it is di
write a function that takes as input a real number and checks to see if it is divisible by 5 . an appropriate message indicating the result should be the output ( in matlab) write…
write a function that takes takes two linked list of integers and multiply them
write a function that takes takes two linked list of integers and multiply them
write a function that will accpet three values. A user value, the smallest possi
write a function that will accpet three values. A user value, the smallest possible vlaue and the largest possile value. The function will then determine if that user value is bet…
write a function that will draw a given number of filled rectangles (using addRe
write a function that will draw a given number of filled rectangles (using addRectFilled), of random width and random height (both from 1 up to a specified maximum), and of random…
write a function that will implement each Fibonacci number with the help of an i
write a function that will implement each Fibonacci number with the help of an integer array of size 100 (elements of this array will be digits of the Fibonacci number). When the …
write a function that will take three parameters-an array, a number indicating t
write a function that will take three parameters-an array, a number indicating the maximum size of the array and a filename. The function will open the file, read whole numbers fr…
write a function to print all the common multiples of 6 and 10, less than 100. I
write a function to print all the common multiples of 6 and 10, less than 100. In general, the function should take three input parameters: two numbers (X & Y) whose common mu…
write a function to solve the system Ax=b where A is a positive definite matrix
write a function to solve the system Ax=b where A is a positive definite matrix using the functions forward_subs, back_subs, and cholesky_factor def solve_system (A, b, nargout-l)…
write a function truncate for a queue data structure. The element in the queue c
write a function truncate for a queue data structure. The element in the queue contains an Int-type variable called x. the truncate function starts from the first element and sear…
write a function which takes one string variable (not C string) as input and mod
write a function which takes one string variable (not C string) as input and modifies the existing string. try to find "Ohio" or "OHIO" in the input string. if the input string co…
write a function which will return the value of the largest threeintegers passed
write a function which will return the value of the largest threeintegers passed to it. Note: the functions should not do any input or output (noscanf or printf). The prototype of…
write a function with the following header: function In iterations, rootl my roo
write a function with the following header: function In iterations, rootl my root newtonra df, ro, tolerance) phson(f, where: -fis a function handle that represents a real-valued …
write a function with this prototype: string HighestCountWordlnFile(const char *
write a function with this prototype: string HighestCountWordlnFile(const char * filename); This function is meant to process a file containing lines that specify words and their …
write a function, createArray, that takes an integer parameter and returns a poi
write a function, createArray, that takes an integer parameter and returns a pointer to an array whose size is specified by the function's parameter. Its signature is int* createA…
write a functioun called GetIntegerIn Range. this function takes one argument: a
write a functioun called GetIntegerIn Range. this function takes one argument: an integer that represents an upper bound, the largest possible value that user will be asked to ent…
write a funn ion called aeries to do E 1 2\" functi go trom and The ingut argume
write a funn ion called aeries to do E 1 2" functi go trom and The ingut argument infinity will be the 1 ion will be the value for n and the vector of that was ohould be di aplaye…
write a funtion to reverse queue in both array and link list Add void ReverseQue
write a funtion to reverse queue in both array and link list Add void ReverseQueue(queueADT queue); Implement this function under both array and list representations. That is, add…
write a general function, in MATLAB, to fit a sinusoidal curve of the type y = a
write a general function, in MATLAB, to fit a sinusoidal curve of the type y = a0 + a1 sin(t) + a2 cos(t) to a data set (t,y) with the following format: function [A,r] = fourier(t…
write a generic list class called GenericList. The class should be able to hold
write a generic list class called GenericList. The class should be able to hold up to 100 of any type item. The class should have the following members: 1- a simple constructor 2-…
write a grading program on terminal with the result for a class with the followi
write a grading program on terminal with the result for a class with the following grading policies. 1. there are 2 quizzes, each graded on the basis of 10 points. 2. there is 1 m…
write a guessing game in which the computer picks a random integer between 1 and
write a guessing game in which the computer picks a random integer between 1 and 100 (inclusive), and you have to guess what it is. the game should follow these guidelines: 1. inc…
write a heap implementation of integer values, which highest priority element is
write a heap implementation of integer values, which highest priority element is the one with the smallest key value. The implementation uses a minimum heap. You need to modify th…
write a java class definition as per the requirements given below: assume that t
write a java class definition as per the requirements given below: assume that the Company class is already defined. this class has instance variables name and year and a construc…
write a java code Design a class that stores information about products that are
write a java code Design a class that stores information about products that are sold in a store. Write a class named Item that has (at least) the following member variables: name…
write a java code Part I: Write an interface called Calculatable that has a meth
write a java code Part I: Write an interface called Calculatable that has a method called calculate that accepts an integer as a parameter and returns a double based on some calcu…
write a java code program with a loop that lets the user enter a series of posit
write a java code program with a loop that lets the user enter a series of positive integers. The user should enter any negative value to signal the end of the series. After all t…
write a java code: You will implement several new player classes that implement
write a java code: You will implement several new player classes that implement the two strategies below for players and modify Crazy8s to visualize game play .You must ensure tha…
write a java method [public static ArrayList merge (ArrayList a, ArrayList b)] t
write a java method [public static ArrayList merge (ArrayList a, ArrayList b)] that merges two array lists, alternating elements from both array lists. if one array list is shorte…
write a java method named sqrt() that will calculate the square root of a positi
write a java method named sqrt() that will calculate the square root of a positive double to within a specified level of tolerance. The signature of the method should be: public s…
write a java program (beginner) output and comment is sooo imp- guess a number •
write a java program (beginner) output and comment is sooo imp- guess a number • The system will generate a random number between 0 and 100 int number = (int)(Math.random() * 101)…
write a java program (name it RoundOfGolf.java) that will create an array of 18
                    write a java program (name it RoundOfGolf.java) that will create an array of 18 instances of the class GolfHole. Use the information from the score            …
write a java program (name it RoundOfGolf.java) that will create an array of 18
                    write a java program (name it RoundOfGolf.java) that will create an array of 18 instances of the class GolfHole. Use the information from the score            …
write a java program . Create a class named Point. It should have instance varia
write a java program . Create a class named Point. It should have instance variables x and y of type double whose values define the location of a point on the x-y plane. Include a…
write a java program for a computer game in which 21 match sticks are there,user
write a java program for a computer game in which 21 match sticks are there,user should start the game and at the end computer should always be the winner?
write a java program for the following In this project, based on the discussion
write a java program for the following In this project, based on the discussion in Section 4.5(Text) you will implement the selection problem to find the kth smallest element in a…
write a java program for the following assignment. Assignment: Use threads to im
write a java program for the following assignment. Assignment: Use threads to implement Peterson's algorithm for mutual exclusion. Demonstrate that the algorithm works using two t…
write a java program for the following question: A graph is bipartite if its ver
write a java program for the following question: A graph is bipartite if its vertices can be divided into two disjoint sets such that no edges exist between vertices in the same s…
write a java program for the following question: Given a square matrix with the
write a java program for the following question: Given a square matrix with the elements 0 and 1, write a program to find a maximum square submatrix whose elements are all 1s. The…
write a java program for the following question: Knight\'s tour problem Consider
write a java program for the following question: Knight's tour problem Consider a NxN chessboard, with the Knight moving according to Chess rules. When it moves, it can move to a …
write a java program for the following question: Write a method printSquares tha
write a java program for the following question: Write a method printSquares that has an integer parameter n, and prints the squares of the integers from 1 to n, separated by comm…
write a java program for uniprocessor scheduling for the following, Uniprocessor
write a java program for uniprocessor scheduling for the following, Uniprocessor Policies – First-Come-First-Served (FCFS) – Round Robin (RR) – Shortest Process Next (SPN) – Short…
write a java program named ArrayList.java that create/build the ArrayList data S
write a java program named ArrayList.java that create/build the ArrayList data Structure that exist in the java library. The class must be written to accept any type of Objects. T…