Web development and programming
191828 questions • Page 206 / 3837
1. Create a function named points2vector which outputs a 3D Cartesian vector giv
1. Create a function named points2vector which outputs a 3D Cartesian vector given two 3D Cartesian coordinates. The function should: • input: 2 variables of size (1,3) defining t…
1. Create a getSymbol method that returns the currency symbol for the currency u
1. Create a getSymbol method that returns the currency symbol for the currency used in this transaction. This does not take parameters and returns a String. Using a switch stateme…
1. Create a java class hierarchy which has an abstract class called DateList (th
1. Create a java class hierarchy which has an abstract class called DateList (the same class as in project 2 but it is abstract). This class should have two subclasses: UnsortedDa…
1. Create a java class named TimeType with three private integer data fields nam
1. Create a java class named TimeType with three private integer data fields named hours, minutes, and seconds, and implement the following public methods: TimeType() no argument …
1. Create a java program which includes a complete list of methods linearSearch,
1. Create a java program which includes a complete list of methods linearSearch, BinarySearch, selectionSort, insertionSort and bubbleSort. Name the java file as XXXSearching…
1. Create a java program with a double array named handicap that will contain th
1. Create a java program with a double array named handicap that will contain the handicap that will contain the handicap index for each of the six players (6 element array). 2. Y…
1. Create a math quiz that tests a person’s addition skills. The page (mathQuiz.
1. Create a math quiz that tests a person’s addition skills. The page (mathQuiz.php) will display a welcome message (the first time) or the result of the problem (correct or an in…
1. Create a method named getNames. This method should declare an array of five f
1. Create a method named getNames. This method should declare an array of five first names as strings. In the method, prompt the user for each name as a string. Each string should…
1. Create a method named getOperands. This method does not return a value. In th
1. Create a method named getOperands. This method does not return a value. In this method, prompt the user twice. At the first prompt, ask them to enter a double variable. Name it…
1. Create a method named getOperands. This method does not return a value. In th
1. Create a method named getOperands. This method does not return a value. In this method, prompt the user twice. At the first prompt, ask them to enter a double variable. Name it…
1. Create a method named getOperands. This method does not return a value. In th
1. Create a method named getOperands. This method does not return a value. In this method, prompt the user twice. At the first prompt, ask them to enter a double variable. Name it…
1. Create a method on the Queue class that calculates the number of times a give
1. Create a method on the Queue class that calculates the number of times a given value occurs in the queue. size_t Queue::count( const T & data ) const; 2. Create a method on…
1. Create a method that accepts two points p and q, which can be any real (decim
1. Create a method that accepts two points p and q, which can be any real (decimal) number. Each Coordinate should be a separate parameter (i.e., you will have four parameters, xp…
1. Create a method that accepts two points p and q, which can be any real (decim
1. Create a method that accepts two points p and q, which can be any real (decimal) number. Each Coordinate should be a separate parameter (i.e., you will have four parameters, xp…
1. Create a method that: receives no parameter asks the user for a number Rememb
1. Create a method that: receives no parameter asks the user for a number Remember that the Console.ReadLine() method gives you a string. returns the number as an integer 2. Creat…
1. Create a new Employee class with the following characteristics: • Attributes
1. Create a new Employee class with the following characteristics: • Attributes (private instance variables) – A String, name (the name of the Employee) – An int, ID (the ID numbe…
1. Create a new Java Project 2. Create a class named CabinRental that includes a
1. Create a new Java Project 2. Create a class named CabinRental that includes an integer field for the cabin number and an int field for the weekly rental rate. 3. Include get me…
1. Create a new Java Project. 2. Create a class named Book that contains data fi
1. Create a new Java Project. 2. Create a class named Book that contains data fields for the title and number of pages, include get and set methods for these fields. 3. Next, crea…
1. Create a new Java Project. 2. Create a class named Horse that contains data f
1. Create a new Java Project. 2. Create a class named Horse that contains data fields for the name, color, and year born. Include get and set methods for these fields. 3. Next, cr…
1. Create a new Java program which implements a simple PacMan-type text game whi
1. Create a new Java program which implements a simple PacMan-type text game which contains the following functionality: A) At program startup, constructs and displays a 2-dimensi…
1. Create a new Java program which implements a simple PacMan-type text game whi
1. Create a new Java program which implements a simple PacMan-type text game which contains the following functionality: A) At program startup, constructs and displays a 2-dimensi…
1. Create a new PHP file in your IDE called seusssale.php. 2. Enter the required
1. Create a new PHP file in your IDE called seusssale.php. 2. Enter the required HTML tags : <!DOCTYPE html>, <html> element, document <head>, and <body> e…
1. Create a new class called Driver. When you define the Constructor initialize
1. Create a new class called Driver. When you define the Constructor initialize three arrays of type int as local variables. The arrays can have any combination of values but shou…
1. Create a new class called SavingsAccount that extends BankAccount. 2. It shou
1. Create a new class called SavingsAccount that extends BankAccount. 2. It should contain an instance variable called rate that represents the annual interest rate. Set it equal …
1. Create a new class called SavingsAccount that extends BankAccount. 2. It shou
1. Create a new class called SavingsAccount that extends BankAccount. 2. It should contain an instance variable called rate that represents the annual interest rate. Set it equal …
1. Create a new class called SavingsAccount that extends BankAccount. 2. It shou
1. Create a new class called SavingsAccount that extends BankAccount. 2. It should contain an instance variable called rate that represents the annual interest rate. Set it equal …
1. Create a new class named Coin that models a biased coin (heads and tails are
1. Create a new class named Coin that models a biased coin (heads and tails are not equally likely outcomes of a flip).To do this modify the provided coin class Coin.java as follo…
1. Create a new file as gzip.txt 2. Add some text (make it up) Q1: what command
1. Create a new file as gzip.txt 2. Add some text (make it up) Q1: what command would you use to check the file’s size? 3. Compress the file using gzip Q2: what command woul…
1. Create a new function in MATLAB. 2. Title this function IsOdd. This function
1. Create a new function in MATLAB. 2. Title this function IsOdd. This function will take an integer input and produce a string “yes” or “no” output. 3. Utilizing if/else statemen…
1. Create a new method on a Stack that determines if all the values on the Stack
1. Create a new method on a Stack that determines if all the values on the Stack are smaller than the passed value. For example, for a stack containing top- (1) (1) (2) (3) (5) (5…
1. Create a new method on a Stack that determines if all the values on the Stack
1. Create a new method on a Stack that determines if all the values on the Stack are smaller than the passed value. For example, for a stack containing top- (1) (1) (2) (3) (5) (5…
1. Create a new multi-class Java program which implements a vending machine simu
1. Create a new multi-class Java program which implements a vending machine simulator whichcontains the following functionality: A) At program startup, the vending machine is load…
1. Create a new multi-class Java program which implements a vending machine simu
1. Create a new multi-class Java program which implements a vending machine simulator whichcontains the following functionality: A) At program startup, the vending machine is load…
1. Create a new multi-class Java program which implements a vending machine simu
1. Create a new multi-class Java program which implements a vending machine simulator which contains the following functionality: A) At program startup, the vending machine is loa…
1. Create a new multi-class Java program which implements a vending machine simu
1. Create a new multi-class Java program which implements a vending machine simulator whichcontains the following functionality: A) At program startup, the vending machine is load…
1. Create a new program called DFA_Alphabet and modify the code provided below t
1. Create a new program called DFA_Alphabet and modify the code provided below to take any alphabet as input. For example, the new alphabet could be "ab", "xy", "01", etc. 2. Crea…
1. Create a new table named CUSTOMER_STATUS.The table will hold the Customer_Sta
1. Create a new table named CUSTOMER_STATUS.The table will hold the Customer_Status_Id and the Customer_Status_Description with possible values: Inactive, Active, Very_Active Thes…
1. Create a new table to track the Library location. - Screen shot not required,
1. Create a new table to track the Library location. - Screen shot not required, please paste the SQL statement to create the table. (5 pts) LIBRARY (lib id, lib_name, lib address…
1. Create a package called hrInterface. Define an interface Payable with a calcP
1. Create a package called hrInterface. Define an interface Payable with a calcPayroll method in the package. 2. Create another package called employee. Define three small classes…
1. Create a package named, “prob3” and a class named, “Games2”. 2. Create a Play
1. Create a package named, “prob3” and a class named, “Games2”. 2. Create a Player class and add this code: public class Player { private String name; private int points; public P…
1. Create a program that a. First reads in a set of unordered integer numbers fr
1. Create a program that a. First reads in a set of unordered integer numbers from a flat file named Data.txt and pushes the numbers onto a stack. b. Now, using only one additiona…
1. Create a program that is capable of downloading multiple assets combine them
1. Create a program that is capable of downloading multiple assets combine them with the associated time column and save the data into a csv or excel file. 2. With the function cr…
1. Create a program that will implement the HighArray Class, declare three objec
1. Create a program that will implement the HighArray Class, declare three objects name Arr1 with an array size of 5, Arr2 with an array size of 5 and Arr3 with an array size of 1…
1. Create a python script to creat a list of 100 random numbers. Save those 100
1. Create a python script to creat a list of 100 random numbers. Save those 100 numbers to a file. 2. Create a python script to read the file of 100 random numbers. Sort the numbe…
1. Create a query that lists all customers. Include their first name, last name,
1. Create a query that lists all customers. Include their first name, last name, address, and home phone. The query should sort the list alphabetically by customer’s last name, th…
1. Create a questionnaire designed to elicit information from potential users of
1. Create a questionnaire designed to elicit information from potential users of your product. It must contain at least a. 3-5 closed demographic questions (age, gender, location,…
1. Create a recursive factorial program that prompts the user for an integer N a
1. Create a recursive factorial program that prompts the user for an integer N and writes out a series of equations representing the calculation of N!. For example, if the input i…
1. Create a relational DB for the pizza Database, with at least 3 (three) record
1. Create a relational DB for the pizza Database, with at least 3 (three) records per relational table. 2. Create a hierarchical (tree) semi-structured representation of the DB. 3…
1. Create a script file and save it as Assignment.1a LastName.m in a directory o
1. Create a script file and save it as Assignment.1a LastName.m in a directory of your preference 2. Add a commented line containing the file name at the top of your script file 3…
1. Create a script that can be used to enter new orders into the ORDERS table. N
1. Create a script that can be used to enter new orders into the ORDERS table. Name the script SC101.sql. 2. Add two new orders to the ORDERS table, using the SC101.sql script to …
Subject
Web development and programming
Use Browse or pick another subject.