[solved] – Question 7927
that displays the character ch on the stdout device (screen) consecutively n times if n>0 and displays nothings if n≤0. When n>0 and ch is not the blank character, the function will also display an additional newline at the end. The function display returns the actual number of characters (excluding the possible newline at the end) displayed.
Write a driver program, making use of the above specified function display, that line by line
repeatedly display the character pattern
*
**
***
****
*****
******
*******
********
*********
**********
++++++++++
+++++++++
++++++++
+++++++
++++++
+++++
++++
+++
++
+
until a given numer of non-whitespace characters are displayed. In other words, the program will first ask the user to enter the total number, say target, of non-whitespace characters to be displayed, and then it will repeatedly display the above pattern until exactly target non-whitespace characters are displayed.
Expert Answer
[solved] – Question 79273
each bank customer can have several types of accounts and each type of account can only be owned by a customer
Expert Answer
[solved] – Question 79275
John was given a task to make a rectangular box during his innovation competition. He was given with the P cm of wire and S cm2 of special paper. He had to use all the wire (for the 12 edges) and paper (for the 6 sides) to make the box. So what will be the maximum volume of that box?
Input Format
The first line contains n, the number of test cases.
Each test case contains two integers A and B in a line.
Constraints
Resultant to be of two decimal places accuracy.
Output Format
Single lined output for the maximum volume of the made box with 2 two decimal places.
Sample Input 0
2
20 14
20 16
Sample Output 0
3.0
4.15
Expert Answer
[solved] – Question 79331
Define a class book with the following details (use data file):-
Book_no, Book_title, Book_price, Author, Publishing_date, Bill_amt as attributes.
(i) Create a function Total_cost() to calculate cost of ‘n’ coppices
(ii) Create a Function Input() to enter Book_no, Book_title, Book_price, Author,
Publishing_date and no of books(n).
(iii) A Display() function that displays all the attributes with appropriate prompts
(iv) A function to delete a particular book
(v) A function to update book details
Expert Answer
[solved] – Question 79359
You have upgraded your Windows 7 system to Windows 10 but now the network connection will not work. You realize you need to install Windows 10 drivers for the network port that comes directly off your ASUS P4P800 motherboard. What is the name of the driver file you need to download and how did you find it?
Expert Answer
[solved] – Question 79366
What programming language should be best for me as a beginner to become a computer software engineer?
Expert Answer
[solved] – Question 79370
You have been tasked to create a small application to calculate the air-fare of an individual travelling
from Nadi to Savusavu based on the following requirements:
AIR VITI PRICE-LIST
Seat Price
Adult: $79.50
Child: $59.25
Luggage
1 bag : $25.00
More than 1 bags: $40.00
The user should select either adult or child fare option and enter the number_of_bags they will carry
in a textbox. Upon clicking the calculate button, the total fare should be displayed in a label.
a) Draw and appropriate user interface for this application
b) Code writing:
i. Declare two constants to store adult and child fare.
ii. Declare the appropriate variables and write the lines of code that will read the
number_of _bags from the textbox and convert and store it in an integer variable.
(Hint: use the Val() function)
iii. Use the if ..else structure determine the fare option selected and calculate the total
fare.
iv. Write the code to display the total fare in a label (formatted as a currency)
Expert Answer
[solved] – Question 79374
I want a list of employees in the east and west regions and I need the full region name, not just the region ID.
Expert Answer
[solved] – Question 79376
Write a SQL query for the following:
1. I need to know which of our sales reps don’t have any customers, all regions. (Hint: This is a different type of JOIN. Also, test for nulls and eliminate the managers.)
2. tell me which region managers are responsible for those sales reps who don’t have customers in all regions. Display the region ID, I can get the full name separately. (Hint: You’ll need to see the entire employee/customer list to provide this answer)
Expert Answer
[solved] – Question 79391
8.Write a C program that can generate an IC Process the received ICMPv4 echo reply.
Expert Answer

