Start Discovering Solved Questions and Your Course Assignments
TextBooks Included
Solved Assignments
Asked Questions
Answered Questions
Write a program to input a character and print its ASCII value. Write a program to input the number the days from the user and convert it into years, weeks and days. Write a program to input a number
Create a two dimensional array of structs which contain multiplication and division table of the rows and columns, starting at 1 instead of zero.
Write a program that allows the user to convert numbers between any 2 basis. Your program should follow the requirements:
Write the program which takes the record of 10 students from user in the array and display all records.Define the pointer to student class to access contents of array. Allow user to search a record
Write a Boolean function which accepts an integer single-subscripted array of any length. The function must check the values in the array and determine if they are in ascending order. If the array v
Write a C program that acts as a monty hall game host that continuously hosts the game and the user of the program acts as the player. The program would loop over the playing of this game.
Implement this function in C:void populateGameBoard(char gameBoard[][COL_SIZE], int rowSize, int colSize, int numPieces); This function takes in entire game board passed from main, the row size, the
After studying population of Gotham City in the last decade of the twentieth century the population is modelled as: P(t) = 52.966 + 2.184t. Write a program which defines a function named population w
Write the program which reads several lines from the data file and prints each word of the file on separate line of the output file followed by the number of letters in that word.
You would use the random number generator to find out the arrival of the client. After the client successfully logs in, assign him the initial balanceNo other account data is needed for the client a
Design the class named Triangle which extends GeometricObject. The class contains: Three double data fields named side1, side2, and side3 with default values 1.0 to denote three sides of triangle.
Design computer program which calculates minimum number of coins and bills required to make change for the particular purchase. You must prompt the user for the cost of the item and amount tendered.
Create a complete function called matrix_sort which accepts the matrix int A[n][m]; (i.e., a 2D integer array named A) as input where integers n and m imply matrix dimensions such that A is of type
Create the Investment class which contains fields to hold initial value of the investment, the current value, the profit (computed as a difference between present value and initial value), and perce
Write a php code that would do the following with the countdown timer: Visitor 1 visits my web page where webpage is and they see a timer (30minutes). Also after timer reach 0 a hyperlink must appear.
A farm delivers the box of fresh fruits and vegetables to your house once a week. For this assignment, define a class BoxOfProduce which contains exactly three bundles of fruits or vegetables. You c
John wants to know values of area and perimeter of a rectangle. John could take measurements of length and width of the rectangle in inches. John's measurements are expected to be accurate to within
Use a linked list to implement the queue, with a "first" and a "last" pointer in the private data portion of the queue class.
You would create a program that would do temperature conversions, from Celsius to Fahrenheit, and from Fahrenheit to Celsius. Your program will read input from a text file named “temps.txt&rdqu
Write the program called Guessing Game that would generate random number between 1 and 100. The program would tell the player if his/her guess is too high or too low and when it is correct and would
Encode the C-shell script with one argument to carry out the following tasks: the argument is the pocket money, If your money is negative, the following message will pop out: that’s negative num
Write the java application which uses the math class to find out the answers for each of the following: The square root of 37.
Create the class named Billing which includes three coverloaded computeBill() methods for the photo book store.
Design an Employee class. It must have member variables: Employee Name and Employee Number. Write the suitable constructors, accessors, and mutators for the class. Demonstrate (and test) all methods
Write a program to play memory game. Use two dimensional array of 4 rows and 4 columns to use a deck of 16 cards with 8 matching pairs and you can use numbers 1 to 8 to mark the cards.