Browse W
Alphabetical listing with fast deep pagination.
66619 items • Page 1061 / 1333
Write a program named Employee.java that is a class representing an Employee tha
Write a program named Employee.java that is a class representing an Employee that has the following Attributes (Instance Variables) Employee ID – int Employee Name – String Employ…
Write a program named Exam2Programl that prompts the user to say how many intege
Write a program named Exam2Programl that prompts the user to say how many integer, he wishes to enter, then asks him to enter that many integers The program then displays the squa…
Write a program named FrationMath that promts the user for twofractions, which a
Write a program named FrationMath that promts the user for twofractions, which are then combined using addition, substration,multiplication, and division. Here's what the user wil…
Write a program named GradeQuiz.java that grades multiple-choice quizzes as foll
Write a program named GradeQuiz.java that grades multiple-choice quizzes as follows: 1.Ask the user how many questions are in the quiz. 2. Ask the user to enter the key (that is, …
Write a program named GreenvilleRevenue that prompts a user for the number of co
Write a program named GreenvilleRevenue that prompts a user for the number of contestants entered in last year's competition and in this year's competition. Display all the input …
Write a program named InputMethodDemo2 that eliminates the repetitive code in th
Write a program named InputMethodDemo2 that eliminates the repetitive code in the InputMethod() in the InputMethodDemo program in Figure 8-5. Rewrite the program so the InputMetho…
Write a program named MyTokens8 to read from two text files that are passed as a
Write a program named MyTokens8 to read from two text files that are passed as a command-line argument. Words are delimited by whitespace, punctuation marks (,;.:?), quotation mar…
Write a program named NumberGame that has the user pick a number from 1 to 10. T
Write a program named NumberGame that has the user pick a number from 1 to 10. Then the computer will start guessing by choosing a random number from 1 to 10, The computer will ge…
Write a program named Pattern that uses the DrawingPanel class provided by the t
Write a program named Pattern that uses the DrawingPanel class provided by the textbook to create a drawing panel (canvas) with a width of 540 pixels and an height of 540 pixels. …
Write a program named PayStub (file name: PayStub.java) to compute and print an
Write a program named PayStub (file name: PayStub.java) to compute and print an employee’s weekly gross pay, withholdings (deductions) and net pay. Your program will prompt the us…
Write a program named Personnel that maintain wage information for the employees
Write a program named Personnel that maintain wage information for the employees of a company. The following example shows what the user will see during a session with the program…
Write a program named Problem_7.c that: 1. calls a function named MyPointerAddfu
Write a program named Problem_7.c that: 1. calls a function named MyPointerAddfun.c and passes three integer pointers as given in the prototype: void MyFunWithPointer(int *x, int …
Write a program named ProcessArray.java, and write two static methods as specifi
Write a program named ProcessArray.java, and write two static methods as specified in the following header: public static int[] oddArray(int[] arr) public static int[] evenArray(i…
Write a program named Reverser that reads in a sentence and displays the words o
Write a program named Reverser that reads in a sentence and displays the words of the sentence in reverse order. Use the split method to extract the words from the sentence. If th…
Write a program named SalespersonDemo that instantiates objects using classes na
Write a program named SalespersonDemo that instantiates objects using classes named RealEstateSalesperson and GirlScout. Demonstrate that each object can use a SalesSpeech() metho…
Write a program named SalespersonDemo that instantiates objects using classes na
Write a program named SalespersonDemo that instantiates objects using classes named RealEstateSalesperson and GirlScout. Demonstrate that each object can use a SalesSpeech() metho…
Write a program named SortWords that includes a method named SortAndDisplayWords
Write a program named SortWords that includes a method named SortAndDisplayWords that accepts any number of words, sorts them in alphabetical order, and displays the sorted words …
Write a program named SortingAlgorithm.java and implement the following sorting
Write a program named SortingAlgorithm.java and implement the following sorting algorithm as we discussed in class: public static void bubbleSort(int[] arr) public static void sel…
Write a program named Symmetry.java, within this class, define a method symmetri
Write a program named Symmetry.java, within this class, define a method symmetricNumber method that accepts an integer n as a parameter and prints a symmetric sequence of n number…
Write a program named Test_2.java. In the class implement the main function to t
Write a program named Test_2.java. In the class implement the main function to test how your program runs. Write a class named Hexagon that extends GeometricObject and implements …
Write a program named TotalPrice.java. Your program takes two number from the Cm
Write a program named TotalPrice.java. Your program takes two number from the Cmd argument list, N and P, N is the number of product and P is the unit price of the product. Your p…
Write a program named \"StockChart\" that displays a bar chart representing the
Write a program named "StockChart" that displays a bar chart representing the price of a stock over the course of a week. The user will specify the name of the stock, the price of…
Write a program named as reverse.c that reads a message, then prints the reversa
Write a program named as reverse.c that reads a message, then prints the reversal of the message. The output the program should look like this: Enter a message: Don't get road, ge…
Write a program named bank that maintains a database of bank accounts. Each acco
Write a program named bank that maintains a database of bank accounts. Each account will be stored in a BankAccount object. The Following example shows what the user will see: com…
Write a program named difDays() that calculates and returns the difference betwe
Write a program named difDays() that calculates and returns the difference between two dates. Each date is passed to the function as a structure using the following global type: s…
Write a program named final Exam Program 2 that defines a struct named mint Type
Write a program named final Exam Program 2 that defines a struct named mint Type to store the following data about mint plants: species (string), height (double). The main() funct…
Write a program named lab9 that determines if a given string is a palindrome. A
Write a program named lab9 that determines if a given string is a palindrome. A palindrome is a word or phrase that reads the same backward as forward. Blank, punctuation marks an…
Write a program named program51.py that defines a value-returning function named
Write a program named program51.py that defines a value-returning function named cuber that returns both the surface area and volume of a cube. A cube is a rectangular prism with …
Write a program named program52.py that uses main and a void function named numb
Write a program named program52.py that uses main and a void function named numbers that takes no arguments and does not return anything. The numbers function generates 5 random i…
Write a program named program71.py as follows. Follow instructions carefully to
Write a program named program71.py as follows. Follow instructions carefully to avoid point deductions. In the main function: create a list named states1 that holds the two-letter…
Write a program named question6a.cpp that will calculate and print pay slips. Us
Write a program named question6a.cpp that will calculate and print pay slips. User inputs are the name of the employee, the number of hours worked and the hourly pay rate. You hav…
Write a program named sqroot. cpp to compute tne squareroot s of an unlimited nu
Write a program named sqroot. cpp to compute tne squareroot s of an unlimited number of non-negative double values entered as command line arguments. This problem requires you to …
Write a program named “ FileOperationPractice.cpp .” 4. This program should have
Write a program named “FileOperationPractice.cpp.” 4. This program should have a main function. 5. In your program Read a text file that contains integers, print out each integer …
Write a program named “countletters” that counts the occurrences of all small an
Write a program named “countletters” that counts the occurrences of all small and capitalletters in given below string and then prints the result in theformat (Caps, count:: Small…
Write a program named “file_writer” (with the appropriate extension of .c/.cpp)
Write a program named “file_writer” (with the appropriate extension of .c/.cpp) that does the following: -Asks the user to enter a file name (without spaces). -Attempts to open th…
Write a program names SortNamesGUI.java to perform the following tasks: 1. Desig
Write a program names SortNamesGUI.java to perform the following tasks: 1. Design a GUI application as shown in the document 2. There are three buttons in the GUI, Load File, Sort…
Write a program of text processing in c++, Task is to implement text processing
Write a program of text processing in c++, Task is to implement text processing on the basic level. 1 Select a text document having at least 1500 words. 2 Convert all the words in…
Write a program of wordSearch puzzle that use the following text file as an inpu
Write a program of wordSearch puzzle that use the following text file as an input. The output should be like this: PIXEL found (left) at (0,9). ( Use JAVA Array ) .Please do not u…
Write a program of wordSearch puzzle that use the following text file as an inpu
Write a program of wordSearch puzzle that use the following text file as an input. The output should be like this: PIXEL found (left) at (0,9). ( Use JAVA Array ) .Please do not u…
Write a program of wordSearch puzzle that use the following text file as an inpu
Write a program of wordSearch puzzle that use the following text file as an input. The output should be like this: PIXEL found (left) at (0,9). ( Use JAVA Array ) .Please do not u…
Write a program of wordSearch puzzle that use the following text file as an inpu
Write a program of wordSearch puzzle that use the following text file as an input. The output should be like this: PIXEL found (left) at (0,9). ( Use JAVA Array ) .Please do not u…
Write a program of wordSearch puzzle that use the following text file as an inpu
Write a program of wordSearch puzzle that use the following text file as an input. The output should be like this: PIXEL found (left) at (0,9). ( Use JAVA Array ) .Please do not u…
Write a program of wordSearch puzzle that use the following text file as an inpu
Write a program of wordSearch puzzle that use the following text file as an input. The output should be like this: PIXEL found (left) at (0,9). ( Use JAVA Array ) .Please do not u…
Write a program on c++ about this The University of Alabama (UA) kicks off the f
Write a program on c++ about this The University of Alabama (UA) kicks off the football season September 2nd against Florida State University (FSU). In this homework you will use …
Write a program on python using loops to decode text that was encoding using the
Write a program on python using loops to decode text that was encoding using the Caesar cipher. Caesar’s cihper works by shifting every letter in a piece of text three characters …
Write a program on python using loops to decode text that was encoding using the
Write a program on python using loops to decode text that was encoding using the Caesar cipher. Caesar’s cihper works by shifting every letter in a piece of text three characters …
Write a program on the Linux system using the putty utility. The program should
Write a program on the Linux system using the putty utility. The program should get the name of the data file as a command line input. The program should check to find out of the …
Write a program only in c++ Problem is as follows Marcy\'s Department store is h
Write a program only in c++ Problem is as follows Marcy's Department store is having a BoGoHo (buy one, get one half off) sale. The store manager wants a program that allows the s…
Write a program parameters YourName.cpp to do the following: The program will as
Write a program parameters YourName.cpp to do the following: The program will ask the user name and age The program will display a message like the following Hello, [User's name] …
Write a program passes an array of six integers (10, 5, 15, 20, 30, and 25) into
Write a program passes an array of six integers (10, 5, 15, 20, 30, and 25) into three functions called multiple_of_ten(), half(), and sum_and_average(). The multiple_of_ten funct…