472 Answered Questions for the topic programming
05/20/21
I Don't know where to add this array. I keep getting errors. Please help me.
I want to add this: String [] strs = { "Fortune for Sunday","Fortune for Monday","Fortune for Tuesday","Fortune for Wednesday","Fortune for Thursday","Fortune for Friday","Fortune for...
more
05/20/21
Your program should use Zeller's rule to output the day of the week any date occurred and for each weekday, output a proverb, fortune, piece of wisdom, etc....
I have everything but just need the fortunes. For example, "Tuesday's child is full of grace.".Please help me add them to my code.Here is the code:using System;class dttimeex57{ static void...
more
05/18/21
Row Sums. Write code for the function printRowSums.
Write code for the function printRowSums. It should print the sum of each row of the matrix (put a single space after each sum).For the matrix shown here:
1 2 3 4 5
6 7 8 9 10
You should print "15...
more
05/18/21
need help with python project
this is all my professor gave me and I don't know what to do Write a class called Counter. The class has the variables:
self.count - Keeps track of the current count.
self.initial_count -...
more
05/17/21
Row sums. Write code for the function printRowSums.
Write code for the function printRowSums. It should print the sum of each row of the matrix (put a single space after each sum).For the matrix shown here:
1 2 3 4 5
6 7 8 9 10
You should print "15...
more
05/17/21
Transpose. Write code for the function transpose.
Write code for the function transpose. It should take the matrix given and produce the transpose by swapping rows and columns.For the matrix shown here:
1 2 3
4 5 6
7 8 9
Your code should...
more
05/17/21
Row Sums. Write code for the function printRowSums.
Write code for the function printRowSums. It should print the sum of each row of the matrix (put a single space after each sum).For the matrix shown here:
1 2 3 4 5
6 7 8 9 10
You should print "15...
more
05/16/21
Create a program should use Zeller's rule to output the day of the week any date occurred and for each weekday, output a proverb, fortune, piece of wisdom, etc.
The program should use Zeller's rule to output the day of the week any date occurred and for each weekday, output a proverb, fortune, piece of wisdom, etc...For example, September 4, 1984, was a...
more
05/15/21
Consider the following.
(a) Find = ________(b) Find = ________(c) Find = _________(d) Find = _________
05/15/21
Use the graph of the function f to decide whether the value of the given quantity exists. If it does, find it. (If an answer does not exist, enter DNE.)
(a) f(0) = ______(b) lim f(x) = ______ x→0 (c) f(3) = ________(d) lim f(x) = _______ x→3
05/14/21
Recursion and Stack Overflow Question
Recursion uses something called the “call stack” where recursive calls to functions are stacked. Explain this using a specific example. When might there be a stack overflow?
05/12/21
Create a program should use Zeller's rule to output the day of the week any date occurred and for each weekday, output a proverb, fortune, piece of wisdom, etc.
I am creating a Zeller's program but not sure how to. Please help me out.Research a rule called "Zeller's Congruence". This rule provides a complex formula that can be used to determine what day of...
more
05/10/21
Swap Ends. The existing code reads in a size to NUM_VALUES, makes an array called values
The existing code reads in a size to NUM_VALUES, makes an array called values (I am cheating... do not make variable sized arrays!), and then reads in values for it. Your task is to swap the first...
more
05/10/21
Declare an array.
Declare an array of 5 doubles called values - initialize it with 1.6, 3.1, 8.3, 9.1, 4.8Code:#include <iostream>#include <iomanip>using namespace std;int main(){ const int NUM_VALUES...
more
05/10/21
Square Array. The existing codetries to make use of a function void squareArray(const int array[], int destination[], int size).
The existing codetries to make use of a function void squareArray(const int array[], int destination[], int size). This function should take each of the size elements from array, square the...
more
05/10/21
Add Negatives. The existing code is trying to call a function addNegatives that should take an array of ints and its size and return the sum of JUST the negative numbers from the array.
The existing code is trying to call a function addNegatives that should take an array of ints and its size and return the sum of JUST the negative numbers from the array. Your task is to write the...
more
05/10/21
Objective: Leap years as we know them began in 1582. You are going to create a program that allows the user to enter a year and be told whether it is a leap year or a common year.
Specifications:
When your program opens, give a brief description of what a leap year is and why we have them.
Ask the user to enter a year.
You must use TryParse to determine if the user has...
more
05/09/21
Write the assembly code in AT&T syntax for the functions recursive, iterative, and closed, intended for people to be able to read it, not in assembly compiled and generated by a machine.
Write the assembly code in AT&T syntax for the functions recursive, iterative, and closed, intended for people to be able to read it, not in assembly compiled and generated by a machine. They...
more
05/09/21
Write the assembly code in AT&T syntax for digits.c and height.c intended for people to be able to read it, not in assembly compiled and generated by a machine.
Write the assembly code in AT&T syntax for digits.c and height.c intended for people to be able to read it, not in assembly compiled and generated by a machine. They are both in C. Write the...
more
05/07/21
Find y such that the triangle has an area of 12 square units. (Enter your answers as a comma-separated list.)
(−4, 2), (−3, 5), (−1, y)y = _____
05/07/21
Consider the system of linear equations
a1x + b1y = c1a2x + b2y = c2where a1, b1, c1, a2, b2, and c2 represent real numbers. What must be true about the lines represented by the equations when the following is true?A: The lines must...
more
Programming
05/05/21
Write a C program
Suppose you have to develop small software to assist the primary students. Write a program that will help an elementary school student learn multiplication. Use the generatenumber function to...
more
05/04/21
C To F. Write a function: double celsiusToFahrenheit(double celsius)
Write a function:double celsiusToFahrenheit(double celsius)It should return the Fahrenheit temperature equivalent to the given Celsius temp.F = (9.0 / 5) * C + 32Code:#include...
more
05/04/21
String Trim2. Write a function stringTrim that removes the first and last characters from a given string.
Write a function stringTrim that removes the first and last characters from a given string. "chello" should become "hell".Your function must work correctly given the code in main shown below....
more
Still looking for help? Get the right answer, fast.
Ask a question for free
Get a free answer to a quick problem.
Most questions answered within 4 hours.
OR
Find an Online Tutor Now
Choose an expert and meet online. No packages or subscriptions, pay only for the time you need.