04/22/21
8086 Assembly Level Program
How do you write an 8086 assembly language program to check whether or not a given number is a strong number? Input is entered through the console.
04/22/21
while loops (python)
Joe just graduated college and has been offered his first real job as a widget designer at Widgets USA, Inc. He is disappointed in the offered beginning salary; only $20,000 per year. But he is...
more
04/22/21
While loops (python)
Joe just graduated college and has been offered his first real job as a widget designer at Widgets USA, Inc. He is disappointed in the offered beginning salary; only $20,000 per year. But he is...
more
04/21/21
Natural Deduction in Propositional Logic Help?
Use the first four rules of inference to derive the conclusions of the following symbolized arguments. Please Help! Thanks (4) 1. P ⊃ (G ⊃ T) 2. Q ⊃ (T ⊃ E)3. P4. Q / G ⊃ E (5) 1. ∼W ⊃ [∼W ⊃ (X ⊃...
more
04/19/21
Read Text. Write a program that reads one character at a time and prints them out without spaces until it hits a period. Do not print the period.
Write a program that reads one character at a time and prints them out without spaces until it hits a period. Do not print the period.Input of:H e l l o .should result in output...
more
04/19/21
Squares Adder. Write a program that reads in a number (integer) indicating how many values you are to read.
Write a program that reads in a number (integer) indicating how many values you are to read. Then read in that many more numbers (all integers) and output the sum of their squares.Input of 4 1 2 3...
more
04/19/21
Counting 3. Write a program that reads in two chars, like B and F and prints all the characters in that range in the format:
Write a program that reads in two chars, like B and F and prints all the characters in that range in the format:B,C,D,E,FHints:
Your loop variable should be a char. Remember you can add one to a...
more
04/19/21
Counting 2. Read in three numbers. A start value, an increment value, and an end value (all integers). Start counting from the start, adding the increment at each step...
Read in three numbers. A start value, an increment value, and an end value (all integers). Start counting from the start, adding the increment at each step, until you are at or above the end...
more
04/19/21
Counting 1. Write a program that reads in a number, and writes out from 1 to that number. An input of 5 would produce 12345.
Write a program that reads in a number, and writes out from 1 to that number. An input of 5 would produce 12345.Code:#include <iostream>using namespace std;int main(){ //YOUR_CODE}
04/19/21
Cell Labeler. In a spreadsheet, the rows are numbered and the columns are lettered, like this:
In a spreadsheet, the rows are numbered and the columns are lettered, like this:
ABC
1
A1
B1
C1
2
A2
B2
C2
The code below reads in a number of rows and columns. Prints out the cells that would...
more
04/19/21
Triangle Printer 2. The existing code reads in a number and prints a series of rows. Modify it so it prints a triangle that looks like the ones shown below.
The existing code reads in a number and prints a series of rows. Modify it so it prints a triangle that looks like the ones shown below.
SizeShape
1
*2
*
**
3
*
**
***
4
*
**
...
more
04/19/21
Triangle Printer. The existing code reads in a number and prints a column of stars that many rows long. Modify it so that it prints a triangle that looks like the one shown below.
The existing code reads in a number and prints a column of stars that many rows long. Modify it so that it prints a triangle that looks like the one shown...
more
04/19/21
Square printer. Read in an integer. Print a square of *'s that height and width. An input of 3 should produce:
Read in an integer. Print a square of *'s that height and width. An input of 3 should produce:
***
***
***
An input of 5 should produce:
*****
*****
*****
*****
*****
Code:#include...
more
04/18/21
This needs to be done in C programming.
Modify the C Program Linked List given below to create a queue. The same functions for adding, removing and printing nodes should be present.EXTRA: Include print statements to explain what is...
more
04/18/21
This needs to be done in C programming.
Modify the C Program Linked List given below to create a queue. The same functions for adding, removing and printing nodes should be present.EXTRA: Include print statements to explain what is...
more
04/18/21
This needs to be done in C programming.
Modify the C Program Linked List given below to create a queue. The same functions for adding, removing and printing nodes should be present.EXTRA: Include print statements to explain what is...
more
how possible 6 digit PIN code with exactly 5 different numbers?
how possible 6 digit PIN code with exactly 5 different numbers?
04/18/21
Parsing Dates C++
Complete main() to read dates from input, one date per line. Each date's format must be as follows: March 1, 1990. Any date not following that format is incorrect and should be ignored. Use the...
more
04/17/21
JAVA program need help today
Develop an application that interviews a patient for some general medical history data using a binary tree to drive the process, implemented using the Java language and using the Java Swing...
more
04/17/21
2D array chunking in C
How do I subdivide a large 2D array into smaller 2D arrays which are arranged in row-major order?
Simulate a selective repeat flow control mechanism using client server socket programing
can use any programming language of choice.
Write a client server program using sockets.
In server a list of random thoughts are stored. Client request for a random thought. Using a random number, pick a random thought and post it to the client side. (use c, c++ or python as...
more
04/17/21
Use matrices to solve system of eq (if possible). Use Gauss elimination w/ back-substitution. (If no solution, enter NO SOLUTION. If system is dependent, set w = a & solve for x, y & z in terms of a.)
x-4y+3z-2w= 163x-2y+z-4w= -10-4x+3y-2z+w= -5-2x+y-4z+3w= -19(x, y, z, w) = (______)
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.