[solved] – Question 73851
How to build a program that converts pounds to kilograms
Expert Answer
[solved] – Question 73857
A program is required for a computer game. The user keys in the number of rounds he wishes to play.
For each round the user enters his lucky number. The program takes the number and divides it with a
secret number. If the remainder of the division is zero, it is considered a draw for the round and the total
score is incriminated by 1. Otherwise if it is any other even number, it is considered a win for the round
and the total score is incremented by 3. However if it is an odd number, it is considered a loss for the
round and the total score is decremented by 3. This is done until he completes his rounds. He wins if the
total score at the end is a positive number. Write a C# program to accomplish this.
Expert Answer
[solved] – Question 73871
1. Write a java program that inputs a line of text and uses a stack to display the words of a sentence in reverse order. Input and output for your program should be as following.
Input: My name is DSA.
Output: DSA is name My.
Expert Answer
[solved] – Question 73872
2. Write a java program that will read an infix expression from the user, and print out the corresponding postfix expression.
Input: A + B * C
Output: A B C * +
Expert Answer
[solved] – Question 73888
Develop a script that you can run on the provided nmap network scan results.
Your script needs to output each open service, and the applicable IP addresses for each service.
Non-Scripted
Output a summarized count of each open service in from the entire scan. Be sure to avoid output that isn’t relevant to the mission.
Include Screen-Capture of your script’s output in your submission.
Expert Answer
[solved] – Question 7390
need help making my VB.net (form) program work. I have a project started and can upload it. also I can provide more information as needed
Until now you were designing the CRM application using a dummy value to code and test it. Now you’ll be accessing the actual data that is stored in the database you create. create the database in the database server of your choice. Microsoft Access. Refer to the structure of the database given earlier in this document. Populate the tables with some sample records. Use this database to code the application completely. All functions mentioned in the Project Description should be fully working after you have completed coding the database access and manipulation. Write modular code and comment on the code properly.
Expert Answer
[solved] – Question 73923
Write a SELECT statement that changes the phrase Today is Monday to Today is Tuesday
Expert Answer
[solved] – Question 7398
Task # 27306
I Posted my assignement over a week ago and still havnt received a price or any contact on whether the assignment can be completed.
Could you please inform me on the situattion.
Thank You
Expert Answer
[solved] – Question 73995
(GUI)
Write a program to calculate and display the cost of a number of cinema tickets according to the rules:
•RM8 per ticket for the stalls (at the front, rows 1 to 10)
•RM10 per ticket for the gallery (the best seats, rows 11 to 25)
•RM6 per ticket for the upper gallery (far from the screen, rows 26 to 30)
The customer enters two whole numbers, row (the row number) and tickets (the number of tickets required) and the program should calculate and display the cost of that number of tickets for the customer.
An additional requirement is that there should be a RM1 discount per ticket for customers purchasing 10 or more tickets. Save the file as Tickets.java
Expert Answer
[solved] – Question 73999
Write C# application program to be used to evaluate the credit worthy of a client. The program reads the
credit limit and the price and quantity of the item to be purchased by the client. If the value of the goods
is more than the credit limit, the program displays “Sorry you cannot purchase goods worthy such a value
on credit” and allows the customer to re-enter the quantity, otherwise, displays “Thank You for
purchasing from us” and the value of the purchase. This should be repeated for n customers.
Expert Answer

