472 Answered Questions for the topic programming

04/12/20

Assign numMatches with the number of elements in userValues that equal matchValue.

Assign numMatches with the number of elements in userValues that equal matchValue. userValues has NUM_VALS elements. Ex: If userValues is {2, 2, 1, 2} and matchValue is 2 , then numMatches should... more

04/12/20

Write a for loop to populate vector userGuesses with NUM_GUESSES integers.

Write a for loop to populate vector userGuesses with NUM_GUESSES integers. Read integers using cin. Ex: If NUM_GUESSES is 3 and user enters 9 5 2, then userGuesses is {9, 5, 2}.#include... more

04/12/20

Write a program that reads a list of integers, and outputs the two smallest integers in the list, in ascending order.

Write a program that reads a list of integers, and outputs the two smallest integers in the list, in ascending order. The input begins with an integer indicating the number of integers that... more

04/12/20

Given a sorted list of integers, output the middle integer. Assume the number of integers is always odd.

Given a sorted list of integers, output the middle integer. Assume the number of integers is always odd.Ex: If the input is: 2 3 4 8 11 -1 (a negative indicates the end), the output is:4The maximum... more

04/12/20

Write a program that first gets a list of integers from input.

Write a program that first gets a list of integers from input. The input begins with an integer indicating the number of integers that follow. Then, get the last value from the input, which... more

04/12/20

Output each floating-point value with two digits after the decimal point, which can be achieved by executing cout << fixed << setprecision(2); once before all other cout statements.

Output each floating-point value with two digits after the decimal point, which can be achieved by executingcout << fixed << setprecision(2); once before all other cout statements.(1)... more

AVL Trees - Java Data Structures & Algorithms

Can someone help with this AVL tree deletion?Delete 7,5,9 from the following AVL tree?AVL tree represented as an array(note that null denotes nodes with no values)9, 5, 12, 3, 6, 11, 14, 2, 4,... more

04/07/20

Computer Science Tree Question

Hello,I am currently attempting to complete a project for my computer science class and we have to implement a ternary tree as a sort of database of different cat objects. I know that my method to... more

04/06/20

Complete the function to replace any period by an exclamation point. Ex: "Hello. I'm Miley. Nice to meet you." becomes

Complete the function to replace any period by an exclamation point. Ex: "Hello. I'm Miley. Nice to meet you." becomes:"Hello! I'm Miley! Nice to meet you!"#include <iostream>#include... more

Write True or False for each of the following statements. (Corecct if fales)

1 If a method does not return a value, the return value type must be static. 2 The expression !(true || true && false || !true) is evaluated to true. 3 Every array has a length that... more

Find and correct the error(s) in each of the following code fragments :

1. The following code should create an integer array and increment all the array elements by 1:int[] a = new int[5]; for( int i=0; i <= a.length; i++ ) ++a;2. The following code should compare... more
Programming Math Computer C++

04/04/20

Write a C++ Program that works in this way.

1. Define a C++ function with the name evaluateBook. The function receives as one argument the name of the file to be processed (i.e., the book's file). So that if you pass the... more

04/04/20

I need help fixing my program??

#include <iostream>#include <vector>#include <cstring>#include <string>using namespace std;#define MAX_WORD_LENGTH (255)typedef struct _TSynonym{ char... more

Write a program that replaces words in a sentence.

Write a program that replaces words in a sentence. The input begins with an integer indicating the number of word replacement pairs (original and replacement) that follow. The next line of input... more

04/01/20

Programming question

Till now, there have been no COVID-19 cases identified in the country XYZ. Scientists and researchers there have conducted a research and discovered that, in a street with houses (imagine that the... more

03/30/20

Write a program that removes all spaces from the given input.

Write a program that removes all spaces from the given input.Ex: If the input is:Hello my name is John.the output is:HellomynameisJohn.Your program must define and call the following function. The... more
Programming Math Computer C++

03/30/20

Write a program whose input is a character and a string, and whose output indicates the number of times the character appears in the string.

Write a program whose input is a character and a string, and whose output indicates the number of times the character appears in the string.Ex: If the input is:n Mondaythe output is:1Ex: If the... more
Programming Math Computer C++

03/29/20

Write a program that removes all spaces from the given input.Your program must define and call the following function. The function should return a string representing the input string without spaces.

Write a program that removes all spaces from the given input.Ex: If the input is:Hello my name is John.the output is:HellomynameisJohn.Your program must define and call the following function. The... more
Programming Math Computer C++

03/29/20

Your program must define and call the following function. The function should return true if the input year is a leap year and false otherwise.

A year in the modern Gregorian Calendar consists of 365 days. In reality, the earth takes longer to rotate around the sun. To account for the difference in time, every 4 years, a leap year takes... more

03/29/20

Add two more statements to main() to test inputs 3 and -1. Use print statements similar to the existing one (don't use assert).

Add two more statements to main() to test inputs 3 and -1. Use print statements similar to the existing one (don't use assert).#include <iostream>using namespace std;// Function returns... more

Please write a C++ program on Fibonacci sequence

Numerical analysisThe Fibonacci Sequence is 0, 1, 1, 2, 3, 5, 8, 13,........: the first two terms are 0 and 1, and each term thereafter is the sum of the two preceding terms:Fib[n] = Fib[n-1] +... more
Programming C# C Programming Coding

03/20/20

Conditional Statements In C Programmin

Question 11.Given the following code: switch(x - y) { case 0: return x; case 4: break; case 7: x = x - 1; case 9: return x*y; case 3: default: return y - x; ... more
Programming C# C Programming Coding

03/20/20

Logical Operators in C programming

1.Question Is the following expression true or false? -1 * -2 == 14 % 4 TrueFalse2.Question 2Is the following conditional statement true or false? int x = 6; -3 < 5 || !(x % 3 == 0) TrueFalse
Programming C++ C# C Programming

03/19/20

Printing Problem in C programming

1.Question For the following code: int a = -1; int b = a * 5; printf("a is %d, and b is %d. ", a, b); What is the output?2.Question int x = -1; int y = 3; x= x + Y; printf("x - y is %d. ", x -... more
Programming C++ C# C Programming

03/18/20

What does g(-2, 5) evaluate to?

What does g(-2, 5) evaluate to? int g (int x, int y) { x= x + y; int z = 2 * x + y; return z; }

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.