[solved] – Question 93515
Write a python a program to print sum of two different units
Expert Answer
[solved] – Question 93571
consider a logical address space of 8 pages of 2028 words each, mapped onto a physical memory of 64 frames.
a) how many bits are there in the logical address?
B) how many bits are there in the physical address?
Expert Answer
[solved] – Question 93760
Write a one-line program to output the following haiku
A lightning flash:
between the forest trees
I have seen water.
– Shiki
Expert Answer
[solved] – Question 93822
Write a program in C++ that create a function named time. The time function receives number of seconds as parameter and returns time as string in the following format: H:M:S.
For example, if seconds are 25412 then function should display
Time = 7:3:32
Expert Answer
[solved] – Question 93901
Amanada, a school kid, is learning English alphabets. Her teacher devised a small game to make the task fun. A grid of ‘m’ rows and ‘n’ columns is filled with English alphabets.She needs to search English words in this grid by moving one step at a time in any of the adjacent grid cells.A grid of alphabets and a set of English words are given. Amanda can start from anywhere in the grid and can move in any of the 8 adjacent grid cells, one step at a time. Each grid cell can only be used once.
Expert Answer
[solved] – Question 93915
The price of a color TV is $521.72 during yourself Hill TV is selling the TV for $461.12 determine the percent increase in the price of the TV
Expert Answer
[solved] – Question 93987
Suppose your program contains the following class definition:
class Automobile
{
public:
void set_price(double new_price);
void set_profit(double new_profit);
double get_price();
private:
double price;
double profit;
double get_profit();
};
and suppose the main part of your program contains the following declaration
and that the program sets the values of all the member variables by taking input
from the user:
Automobile hyundai, jaguar;
hyundai.price = 4999.99;
jaguar.set_price(30000.97);
double a_price, a_profit;
a_price = jaguar.get_price();
a_profit = jaguar.get_profit();
a_profit = hyundai.get_profit();
if (hyundai == jaguar)
cout << “Want to swap cars?”;
hyundai = jaguar;
Which of the following statements are then allowed in the main part of your
Program?
1. Firstly make all members public
2. Make all members private
3. Make data members public and functional member private
4. Make data members private and functional members public
Expert Answer
[solved] – Question 940
Can this website help with functional progaming like scheme/Racket as well?
Example:
(define-syntax let (syntax-rules () ((let ((var expr) …) body …) ((lambda
(var …) body …) expr …))))
Fundamental forms: define, lambda, if, quote, unquote, unquote-splicing,
quasiquote, define-syntax, let-syntax, letrec-syntax, syntax-rules, set!
Library forms: do, let, let*, letrec, cond, case, and, or, begin, named let,
delay
Expert Answer
[solved] – Question 94043
You are shopping for a new television and want to compare the prices of three televisions. Research new televisions. Create a worksheet that compares the type, size, and the price for each television, as well as the costs to add an extended warranty. Use the concepts and techniques presented in this module to calculate the average price of a television and average cost of an extended warranty and to format the worksheet. Submit your assignment in the format specified by your instructor.
Expert Answer
[solved] – Question 94095
Write an algorithm to calculate the average mark out of 100, given three assignment marks, each of which is marked out of 20.
Trace the algorithm using 15, 20 and 10 as the three assignment marks.
Expert Answer

