1,475 Answered Questions for the topic computer programming
Computer Programming
05/27/21
I want the solution in c++ languagge
Take a Boolean 2D array of 10X 10, where each row is sorted from the user, Find the row with themaximum number of 1s.Example:Input matrix0 1 1 10 0 1 11 1 1 1 // this row has maximum 1s0 0 0...
more
Computer Programming
05/27/21
This is the question regarding array and i want the best solution of this question
Write a Menu Driven C++ program that creates one-dimensional array arr[] and initialize it with user ofsize 15. The program should do following Tasks using Menu, The menu operations are implemented...
more
Computer Programming
05/27/21
it is the question regarding c++ programming and i am not able to solve it and i hope you will give me best solution
Take an unsorted array of size 15 and type int from the user and a number n, find if there exists apair of elements in the array whose difference is n.Examples:Input: arr[] = {5, 20, 3, 2, 50, 80},...
more
Computer Programming
05/27/21
it is the question of programming and i do not have enough knowledge to solve it so i am asking to you and i hope i will get best answer
Take a Boolean 2D array of 10X 10, where each row is sorted from the user, Find the row with themaximum number of 1s.Example:Input matrix0 1 1 10 0 1 11 1 1 1 // this row has maximum 1s0 0 0...
more
Computer Programming
05/27/21
it is the question about programming C++ language
Take a Boolean 2D array of 10X 10, where each row is sorted from the user, Find the row with themaximum number of 1s.Example:Input matrix0 1 1 10 0 1 11 1 1 1 // this row has maximum 1s0 0 0...
more
Computer Programming
05/27/21
i want to get unique solution of the question and i am mentioning question in description box
Take a sorted array of 15 elements of type int and a value x from user, you need to find the ceilingand floor of x. The ceiling of x is the smallest element in array greater than or equal to x, and...
more
Computer Programming
05/27/21
I want a simple solution of the question and that question i am mentioning in description box and i hope i will get best answer
Write a C++ Program to Multiply Two Matrix Using Multi-dimensional Arrays. You can use int or double2D array and takes it input from user. This program takes two matrices of order r1*c1 and...
more
05/25/21
java programming language/ interface and abstract OOP
Part I
Write an interface for a Bank application.
Part II
Write an abstract class for the interface written in Part I.
Part III
Write a Branch class from the abstract class written in Part...
more
05/24/21
RPS Enumeration. Use the given enumerations to write a function Result getResult(Choice player1, Choice player2) .
Use the given enumerations to write a function Result getResult(Choice player1, Choice player2) . It should determine the winner of a round of Rock, Paper, Scissors between two players (Rock beats...
more
05/24/21
Suits. The starter code below has code to keep track of the suits in a card game.
The starter code below has code to keep track of the suits in a card game. They are defined in an order such that clubs are the best suit (highest number), followed by diamonds, spades and then...
more
05/24/21
Directions. Define a enumerated type Direction to make the following code work correctly.
Define a enumerated type Direction to make the following code work correctly. It should associate EAST with the value 0, NORTH with the value 90, WEST with 180 and SOUTH with 270.Code:#include...
more
05/24/21
Write a method that finds the operations which the results are wrong in given file
Assume that multiple arithmetic operations are stored in a file. However, some of the results are wrongFor example, given operations 1.0 + 2.0 = 4.0 2.5 + 2.5 = 5.0 3.0 / 2.0 = 1.0 the method...
more
05/24/21
Java code needed
Java code needed! someone please help me with this code!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....
more
05/24/21
C++ Design Pattern Problem
You're given 3 shapes: rectangle, triangle and circle. Your task is to find if one shape is contained in another shape. Define this function as a new operation (e.g. bool isContained()) without...
more
05/22/21
For the function shown below, find each of the following limits. (If an answer does not exist, enter DNE.)
f(x) = 7x, x ≤ 0 x2 + 9, x > 0'(a) lim f(x) = _____ x→0−(b) lim f(x) = _____ x→0+(c) lim f(x) = _____ x→0
05/21/21
CREATE A C# PROGRAM.
Research a rule called "Zeller's Congruence". This rule provides a complex formula that can be used to determine what day of the week any particular date occurred. For example, if the user entered...
more
05/20/21
2D Array Question
There is a 2D-rectangular MxN Terrain. On each square of the terrain, there may or may not be some gold and a Monster. Each monster has a name and damage (a numeric value between 1- 10). Some...
more
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
Computer Programming English
05/19/21
question about input and output.
Write a function to output patient information that are stored in a file and Write a function to input patient information and store it in a file is there any difference and what does it mean?
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/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
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.