Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

Web development and programming

191828 questions • Page 3535 / 3837

a. Create a class called Auto, that has member for owner name, auto type, maximu
a. Create a class called Auto, that has member for owner name, auto type, maximum speed, gasoline tank capacity. Provide methods  set() and display() for setting and displaying th…
a. Create a class named BloodData that includes fields that hold a blood type (t
a. Create a class named BloodData that includes fields that hold a blood type (the four blood types are O, A, B, and AB) and an Rh factor (the factors are + and -). Create a defau…
a. Create a class named BloodData that includes fields that hold a blood type (t
a. Create a class named BloodData that includes fields that hold a blood type (the four blood types are O, A, B, and AB) and an Rh factor (the factors are + and -). Create a defau…
a. Create a class named BloodData that includes fields that hold a blood type (t
a. Create a class named BloodData that includes fields that hold a blood type (the four blood types are O, A, B, and AB) and an Rh factor (the factors are + and –). Create a defau…
a. Create a class named CarRental that contains fields that hold a renter’s name
a. Create a class named CarRental that contains fields that hold a renter’s name, zip code, size of the car rented, daily rental fee, length of rental in days, and total rental fe…
a. Create a class named Commission that includes three variables: a double sales
a. Create a class named Commission that includes three variables: a double sales figure, a double commission rate, and an integer commission rate. Create two overloaded methods na…
a. Create a class named Commission that includes three variables: a double sales
a. Create a class named Commission that includes three variables: a double sales figure, a double commission rate, and an integer commission rate. Create two overloaded methods na…
a. Create a class named Exponent. Its main() method accepts an integer value fro
a. Create a class named Exponent. Its main() method accepts an integer value from a user at the keyboard, and in turn passes the value to a method that squares the number ( multip…
a. Create a class named Salesperson. Data fields for Salesperson include an inte
a. Create a class named Salesperson. Data fields for Salesperson include an integer ID number and a double annual sales amount. Methods include a constructor that requires values …
a. Create a class named Salesperson. Data fields for Salesperson include an inte
a. Create a class named Salesperson. Data fields for Salesperson include an integer ID number and a double annual sales amount. Methods include a constructor that requires values …
a. Create a class named Teacher that holds first and last names and the grade le
a. Create a class named Teacher that holds first and last names and the grade level the teacher teaches. include a constructor function that uses default first and last names, suc…
a. Create a class named Teacher that holds first and last names and the grade le
a. Create a class named Teacher that holds first and last names and the grade level the teacher teaches. include a constructor function that uses default first and last names, suc…
a. Create a class named Teacher that holds first and last names and the grade le
a. Create a class named Teacher that holds first and last names and the grade level the teacher teaches. include a constructor function that uses default first and last names, suc…
a. Create a class named Teacher that holds first and last names and the grade le
a. Create a class named Teacher that holds first and last names and the grade level the teacher teaches. include a constructor function that uses default first and last names, suc…
a. Create a class named Trip that includes four string variables: destination (f
a. Create a class named Trip that includes four string variables: destination (for example, “London”), means of transportation (for example, “air”), departure date (for example, “…
a. Create a method to calculate the price of a pizza and return it as a double.
a. Create a method to calculate the price of a pizza and return it as a double. The method should take at least 3 parameters: Size, toppings, and crust style. Create an app which …
a. Create a new Java class that represents a nucleotide, one of the basic buildi
a. Create a new Java class that represents a nucleotide, one of the basic building blocks of life. Your nucleotide class should have the following properties: i. A base, which is …
a. Create a new program called Sum.c, and type in the following two functions. b
a. Create a new program called Sum.c, and type in the following two functions. b. Write a few lines in main() to test these functions. Invoke them a couple of times, with a few di…
a. Create an abstract class named Book. Include a String field for the book’s ti
a. Create an abstract class named Book. Include a String field for the book’s title and a double field for the book’s price. Within the class, include a constructor that requires …
a. Create an application that allows you to enter student data that consists of
a. Create an application that allows you to enter student data that consists of an ID number, first name, last name, and credit hours earned. Depending on the student’s number of …
a. Create an array of 15 student records by random generator that should not be
a. Create an array of 15 student records by random generator that should not be sorted. b. create a linked list of 10 student records. Each node is a node of one student record fr…
a. Create an array of 15 student records that should not be sorted. b. Create a
a. Create an array of 15 student records that should not be sorted. b. Create a liked list of 15 student records. Each node is a node of one student record from the above unsorted…
a. Create an array whose elements hold the first initial of four different suits
a. Create an array whose elements hold the first initial of four different suits in a card deck. Declare an array that can hold a representation of the cards in a deck of cards wi…
a. Create an array whose elements hold the first initial of four different suits
a. Create an array whose elements hold the first initial of four different suits in a card deck. Declare an array that can hold a representation of the cards in a deck of cards wi…
a. Create one or more arrays to hold the names of the months and the number of d
a. Create one or more arrays to hold the names of the months and the number of days in each month. Assume that February always has 28 days. b. Display the contents of the array(s)…
a. Create the CUSTOMER_2 table. Hint: to create the CUSTOMER table, you may use:
a. Create the CUSTOMER_2 table. Hint: to create the CUSTOMER table, you may use: CREATE TABLE CUSTOMER ( CUST_NUM NUMBER PRIMARY KEY, CUST_LNAME VARCHAR(20), CUST_FNAME VARCHAR(20…
a. Create the logic for a program that calculates and displays the amount of mon
a. Create the logic for a program that calculates and displays the amount of money you would have if you invested $5000 at 2 percent simple interest for one year. Create a separat…
a. Create the logic in pseudocode for a program that calculates and displays the
a. Create the logic in pseudocode for a program that calculates and displays the amount of money you would have if you invested $5000 at 2 percent simple interest for one year. Cr…
a. Declare a structure date that includes the integer members month, day, and ye
a. Declare a structure date that includes the integer members month, day, and year. b. Declare a structure customer_info that includes a character array customer_id with 10 elemen…
a. Define a Java interface named SortableInterface. A class that implements this
a. Define a Java interface named SortableInterface. A class that implements this interface allows creation of an object that holds an array of objects of a specified type. The Sor…
a. Define a structure Apple with fields for color and size. Notice that the colo
a. Define a structure Apple with fields for color and size. Notice that the color is a string and the size is a double type value b. Write a function inputApple, which takes a poi…
a. Define an array with a maximum of 20 integer values, and fill the array with
a. Define an array with a maximum of 20 integer values, and fill the array with numbers input from the keyboard or assigned by the program. Then write a function named split() tha…
a. Define the class bankAccount to store a bank customer’s account number and ba
a. Define the class bankAccount to store a bank customer’s account number and balance. Suppose that account number is of type int, and balance is of type double. Your class should…
a. Define the class bankAccount to store a bank customer’s account number and ba
a. Define the class bankAccount to store a bank customer’s account number and balance. Suppose that account number is of type int, and balance is of type double. Your class should…
a. Define the class bankAccount to store a bank customer’s account number and ba
a. Define the class bankAccount to store a bank customer’s account number and balance. Suppose that account number is of type int, and balance is of type double. Your class should…
a. Definition: The reverse of a string u, denoted uR, is defined recursively as
a. Definition: The reverse of a string u, denoted uR, is defined recursively as follows: (1) = (Note that is the empty string.) (2) For any character a, and any string w, then (wa…
a. Describe three applications where multi-threading can lead to improved perfor
a. Describe three applications where multi-threading can lead to improved performance over a single-threaded application. b. Could you implement a shell using 'pthread_create()' a…
a. Describe three applications where multi-threading can lead to improved perfor
a. Describe three applications where multi-threading can lead to improved performance over a single-threaded application. b. Could you implement a shell using 'pthread_create()' a…
a. Design a class named Book that holds a stock number, author, title, price, an
a. Design a class named Book that holds a stock number, author, title, price, and number of pages for a book. Include a constructor that prompts the user for the data and a toStri…
a. Design the logic for an application for a company that wants a report contain
a. Design the logic for an application for a company that wants a report containing a breakdown of payroll by department. Input includes each employee’s last name, first name, dep…
a. Determine therouting table? Node1 Node2 Node3 Node4 Node 5 Dest. Next hop Des
a. Determine therouting table?         Node1                Node2                Node3                 Node4                 Node 5   Dest. Next hop Dest. Next hop Dest. Next hop …
a. Discuss how it is possible to achieve the benefit of large low cost and high
a. Discuss how it is possible to achieve the benefit of large low cost and high speed memory with the cache-main memory hierarchical organization? Discuss the two properties of co…
a. Display Game player magic point maximum (G3, 5 - 7 points) You are designing
a. Display Game player magic point maximum (G3, 5 - 7 points) You are designing a role playing game. In this program display the maximum magic points given the level of the player…
a. Distance: This method takes as its parameters four numbers that represent two
a. Distance: This method takes as its parameters four numbers that represent two points in the plane and returns the distance between them. b. Radius: This method takes as its par…
a. Draw a UML diagram of the class. Be sure to include notation showing each acc
a. Draw a UML diagram of the class. Be sure to include notation showing each access specification and data type of each field and each method. Also include notation showing the da…
a. Draw a flowchart or write pseudocode to represent the logic of a program that
a. Draw a flowchart or write pseudocode to represent the logic of a program that allows the user to enter values for the width and length of a wall in feet. The program outputs th…
a. Draw the flow graph for the following program: #include int main()
a. Draw the flow graph for the following program: #include <iostream> int main() {    int choice, months;    double charges;       do    {        displayMenu();        cin &…
a. Draw the flow graph for the following program: #include int main()
a. Draw the flow graph for the following program: #include <iostream> int main() {    int choice, months;    double charges;       do    {        displayMenu();        cin &…
a. Explain clearly what is the function of the utility fsck? b. Explain, with th
a. Explain clearly what is the function of the utility fsck? b. Explain, with the help of screenshots, what happens if you issue the command without     any options. Explain why i…
a. Explain how to use a brute-force algorithm to find the first occurence of a g
a. Explain how to use a brute-force algorithm to find the first occurence of a given string of m characters, called the target, in a string of n characters, where m n, called the …