[solved] – Question 70886
#include<stdio.h>
int main ()
{
int n;
for(n=7;n!=0;n–)
printf(“n= %d”,n–);
return 0;
}
Kindly explain it’s output…
Expert Answer
[solved] – Question 70898
Discuss the various types of encoding and modulation techniques used
in Data communication.
Expert Answer
[solved] – Question 709
What is the java code to make one word italicized in a sentence?
For example, print the sentence “I like the color yellow” and italicize the word color.
Expert Answer
[solved] – Question 70914
Create an application to keep track of a list of students and their grades in a data structures course using a link list. You should use the C++ STL library. You need to create a class called student that contains 2 data members: name and grade and then create a link list of objects of this class. The application should allow the user to add a student, remove a student, update the grade for a student, and search for a student.
Expert Answer
[solved] – Question 7095
Write a set of detailed, step-by-step instructions in English to calculate the fewest number of dollar bills needed to pay a bill of amount TOTAL. For example, if TOTAL is $97, the bills would consist of one $50 bill, two $20 bills, one $5 bill, and two $1 bills. (For this exercise, assume that only $100, $50, $20, $10, $5, and $1 bills are available.)
Planning and Design: –
a]You will have to hand in a structure chart that should show how you have broken down the problem into manageable pieces, so that the final solution can be easily achieved with a computer program.
For this first assignment, we will concentrate only on Sequence and Abstraction. Do NOT attempt to invoke, Selection or Iteration. These will come later.
Make sure you follow our convention.
b]You will also have to submit an appropriate algorithm, that reflects the analysis you have carried out in a] above.
Make sure you follow our convention.
c]You will also have to submit, as part of your design, a list of all the variables that you are anticipating to use when you eventually go in for coding.
Expert Answer
[solved] – Question 7100
i want to ask about restaurant billing system assignment how to do it ?
Expert Answer
[solved] – Question 71004
Write a C# program to retrieve the values from the text file. Display the number of values processed and the average of the values, formatted with two decimal places. Also display the smallest value and the largest value. [Hint: To simplify the problem, the values can each be placed on separate lines.] • Save the integers in a text file and name it numbers.txt • Using a method retrieve the values from the text file and store in a list. The method should return a list. • Use other methods to loop through this list and show the number of values processed, calculate the average, find the largest and the smallest value.
Expert Answer
[solved] – Question 71012
Create a class Call, which contains information about a call made via mobile phone. This class should have the necessary members for the about date, time of start and duration of the call. Your application should have another class named CallRecord that inherits from the Call class. The CallRecord class should have necessary members, i.e. the callID, the receivers’ mobile network and the cost of the call.
Create a text file that contains the necessary data for a call record for at least five calls. When the application starts, it should read the data from the file and create a CallRecord object for each calls’ data. The CallRecord objects should be added to a List, and each call callID should be displayed in a list box on the application’s main form. When the user selects a callID from the list box, a second form should appear displaying that calls’ details individually using the relevant controls.
Expert Answer
[solved] – Question 71013
Creating a c# form for mobile calls. how to call a list to a listbox
Expert Answer
[solved] – Question 71030
Write a Linux shell script to perform the following tasks:
a. Display current date and time
b. Display current working directory
c. To check whether a sample file is a directory
d. Display details of all files/directories in current working directory
e. To check whether a sample file is readable, writable, and executable.
Expert Answer

