[solved] – Question 97054
Write code to output the ASCII characters that are represented by the numbers from 45 to 85, one per line.
Expected Output
–
.
/
0
1
2
3
4
5
6
7
8
9
:
;
<
=
>
?
@
A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
Q
R
S
T
U
Expert Answer
[solved] – Question 9707
i need to write a program using the top don modular approach and pseudo code to desig a suitable program to solve the sum of the squares of the intgers from 1 to mysquare where mysquare is input by the user
Expert Answer
[solved] – Question 9709
write C++ program that predict the population size of organisms.must ask user to enter daily avarege increase in %, number they will multiply.results must be displayed in a table form.
Expert Answer
[solved] – Question 9710
flowchart of a program that ask the user to enter a number of seconds. There are 60 seconds in a min. if the number of seconds entered by the user is greater than or equal to 60, the program should display the number of minutes in that many seconds. There are 3,600 seconds in an hour. If the number of seconds entered by the user is greater than or equal to 3,600, the program should display the number of hours in that many seconds. There are 86,400 seconds in a day. If the number entered by the user is greater than or equal to 86,400, the program should display that number of day in that many seconds.
Expert Answer
[solved] – Question 9711
Define a new exception called “NotMemberException”. The exception must be thrown if the registration number entered by the user does not exist in the list of StudInfo. Your program should catch the exception as follows. It should first try to see if the number before and after the one entered exists. If so, it informs the user that they probably made a typo and provides them the name of the found student. If neither is found it must simply inform the user that such registration number does not exist.
Expert Answer
[solved] – Question 97125
Write a C++ program that incorporates three functions subtraction, addition and operation. The subtraction and addition accepts two integer parameters and are used to return the added and subtracted values respectively. The operation function accepts two integer parameters and a pointer to a function and which is used to call the pointed function that returns the computed value accordingly, and which is then returned to the main function to be displayed. The main function declares two pointers sum and minus to the functions addition and subtraction respectively and then calls the operation function twice, each with respective arguments
Expert Answer
[solved] – Question 97126
A company distributes 10 different items around Nairobi through its 5 salesmen in Nairobi. Using dynamic arrays, write a c++ program to input a salesman and the corresponding sales made by each of the salesman for wach of the item. The program should then
Expert Answer
[solved] – Question 9713
Greetings.
I have a List of objects, wich contain another objects and information for report crafting. It works dynamically, so it can contains something different each time. I want to feed the report using a ObjectDataSource, but it creates a new instance of everything and I wanna use the instance I created. Any idea?
Expert Answer
[solved] – Question 97135
Write a program to enter a number and test if it is greater than 45.6. If the number entered is greater than 45.6, the program needs to output the phrase Greater than 45.6.
Expert Answer
[solved] – Question 97159
Write a line of code to output the following message:
Welcome to Computer Science!
Expert Answer

