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

Browse W

Alphabetical listing with fast deep pagination.
66619 items • Page 966 / 1333

All 0-9 A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
Write a SINGLE LINE of code using MATLAB that computes the mean and standard dev
Write a SINGLE LINE of code using MATLAB that computes the mean and standard deviation of a 1-dimensional array named A of numbers. You MAY NOT use loops, or the mean, variance, o…
Write a SINGLE query using the customers and orders tables that does the followi
Write a SINGLE query using the customers and orders tables that does the following: Contains columns with names Last Name, First Name, Order Number, Order Date/Time, Estimated Shi…
Write a SPIM assembly language program convert.s. The program will do the follow
Write a SPIM assembly language program convert.s. The program will do the following:     Prompt the user to enter a letter indicating Celsius or Fahrenheit         C or c indicate…
Write a SPIM assembly language program convert.s. The program will do the follow
Write a SPIM assembly language program convert.s. The program will do the following: F = (9 * C / 5) + 32 C = 5 * (F - 32) / 9 Prompt the user to enter a letter indicating Celsius…
Write a SPIM assembly language program convert.s. The program will do the follow
Write a SPIM assembly language program convert.s. The program will do the following: 1. Prompt the user to enter a letter indicating Celsius or Fahrenheit C or c indicates that te…
Write a SPIM assembly language program convertF2C.s. The program will do the fol
Write a SPIM assembly language program convertF2C.s. The program will do the following: Prompt the user to enter a temperature in Fahrenheit Convert it to Celsius Print out the co…
Write a SPIM program that computes exp(x) by using a Taylor series: exp(x) = 1 +
Write a SPIM program that computes exp(x) by using a Taylor series: exp(x) = 1 + x + x2/2 + x3/3! + x4/4! + ...The user enters x and n. exp(x) is ex, where e is the base of the na…
Write a SQL Query that deducts one percent from the amounts paid for purchases m
Write a SQL Query that deducts one percent from the amounts paid for purchases made in the month of December. The amounts customers paid are listed in the payments table. The outp…
Write a SQL create table statement for a table named \"student\" in the \"colleg
Write a SQL create table statement for a table named "student" in the "college" database. The table has three attributes. "class" varying character string not exceeding 25 bytes, …
Write a SQL create table statement for a table named \"student\" in the \"colleg
Write a SQL create table statement for a table named "student" in the "college" database. The table has three attributes. "class" varying character string not exceeding 25 bytes, …
Write a SQL create table statement for a table named \"student\" in the \"colleg
Write a SQL create table statement for a table named "student" in the "college" database. The table has three attributes. "class" varying character string not exceeding 25 bytes, …
Write a SQL query for: Display customers that have neither loan nor account. cre
Write a SQL query for: Display customers that have neither loan nor account. create table account (account_number varchar(15) not null, branch_name varchar(15) not null, balance n…
Write a SQL query for: Display customers that have neither loan nor account. cre
Write a SQL query for: Display customers that have neither loan nor account. create table account (account_number varchar(15) not null, branch_name varchar(15) not null, balance n…
Write a SQL query for: Who borrowed most and how much? Display customer name and
Write a SQL query for: Who borrowed most and how much? Display customer name and amount borrowed in your SQL statement. create table account (account_number varchar(15) not null, …
Write a SQL query for: Who borrowed most and how much? Display customer name and
Write a SQL query for: Who borrowed most and how much? Display customer name and amount borrowed in your SQL statement. create table account (account_number varchar(15) not null, …
Write a SQL query for: Who borrowed most and how much? Display customer name and
Write a SQL query for: Who borrowed most and how much? Display customer name and amount borrowed in your SQL statement. create table account (account_number varchar(15) not null, …
Write a SQL query for: Who has the highest account balance? Display name and acc
Write a SQL query for: Who has the highest account balance? Display name and account balance in your SQL statement. create table account (account_number varchar(15) not null, bran…
Write a SQL query for: Who has the highest account balance? Display name and acc
Write a SQL query for: Who has the highest account balance? Display name and account balance in your SQL statement. create table account (account_number varchar(15) not null, bran…
Write a SQL query that analyses the film languages: How many films are mentioned
Write a SQL query that analyses the film languages: How many films are mentioned in the FilmDB per language and what is the average film length per each language? Note: Your query…
Write a SQL query that displays for each customer their customer code, name, tot
Write a SQL query that displays for each customer their customer code, name, total balance (from Customer table), their total purchases (from Invoice), and the number of individua…
Write a SQL query that finds all airlines that had more than 0.5 percent of thei
Write a SQL query that finds all airlines that had more than 0.5 percent of their flights out of Seattle be canceled. Return the name of the airline and the percentage of canceled…
Write a SQL query that gives the names of all airlines that ever flew more than
Write a SQL query that gives the names of all airlines that ever flew more than 1000 flights in one day. Return only the names. Do not return any duplicates. [Should be 11 rows] I…
Write a SQL query that lists the top 20 airlines with the highest number of dome
Write a SQL query that lists the top 20 airlines with the highest number of domestic routes. A route is considered domestic for an airline if both the source and destination airpo…
Write a SQL query that lists the top-10 actors from the US by number of films th
Write a SQL query that lists the top-10 actors from the US by number of films they played in. The result should show each actor by first name and last name, and then show the numb…
Write a SQL query that outputs list of top 10 airports that have the largest num
Write a SQL query that outputs list of top 10 airports that have the largest number of distinct airlines flying from them. The query must return airport id, airport name, airport …
Write a SQL query that ranks the top-10 actors from the US by number of films th
Write a SQL query that ranks the top-10 actors from the US by number of films they played in. The result should show each actor by first name and last name, and then show the numb…
Write a SQL query that retrieves actors and what movies they were in from the fo
Write a SQL query that retrieves actors and what movies they were in from the following file directory: MOVIE: Table of movies that are available         id: integer defining the …
Write a SQL query that will find the busiest (quantity of appts) store last year
Write a SQL query that will find the busiest (quantity of appts) store last year from the below database, make sure to join all tables referenced so that a Cartesian product is av…
Write a SQL query that works in MySQL to find the following information: 1) Show
Write a SQL query that works in MySQL to find the following information: 1) Show the names and IDs of all artists who have not recorded titles but do have web addresses listed in …
Write a SQL query to find all nodes whose degree is below the average degree of
Write a SQL query to find all nodes whose degree is below the average degree of the vertices in the graph. The degree of a vertex is the number of edges incident on the vertex (i.…
Write a SQL query to find mechanics with more than five certifications given the
Write a SQL query to find mechanics with more than five certifications given the following database (underlined items written to the side of each table): Shop(location_num, addres…
Write a SQL query to find the customer with the most quantity of appts given the
Write a SQL query to find the customer with the most quantity of appts given the following database (underlined parts of each table written out to the side of each): Shop(location…
Write a SQL query to find the highest producing mechanic (quantity of appts) fro
Write a SQL query to find the highest producing mechanic (quantity of appts) from the following database (keys that should be underlined are written to the side): Shop(location_nu…
Write a SQL query to retrieve the information requested. 1. Find the last names
Write a SQL query to retrieve the information requested. 1. Find the last names of all members who live in California with the names of all studios that are located in California …
Write a SQL query: Write a query that returns list of active airlines (active =
Write a SQL query: Write a query that returns list of active airlines (active = true) that serve no routes, sorted by the airline name in lexical order. The query must return airl…
Write a SQL script file to create tables, insert data and issue queries. 1. (5 p
Write a SQL script file to create tables, insert data and issue queries. 1. (5 pts) Create tables CoursesDescription and CoursesSpring2018. All the data records should conform to …
Write a SQL script to alter the structure of the DimLocations table to include a
Write a SQL script to alter the structure of the DimLocations table to include a new field named StreetID. Therefore, DimLocation Table will now include LocationKey, CityKey, Stre…
Write a SQL statement that answers the question: What were the total damages for
Write a SQL statement that answers the question: What were the total damages for each property? List the properties in Austelle that were damaged. What properties were damaged (st…
Write a SQL statement that answers the question: What were the total damages for
Write a SQL statement that answers the question: What were the total damages for each property? List the properties in Austelle that were damaged. What properties were damaged (st…
Write a SQL statement to INSERT five records to each table. SQL commands must ru
Write a SQL statement to INSERT five records to each table. SQL commands must run correct. CREATE TABLE Season ( Season_id int PRIMARY KEY, Type_of_Season varchar(255), Color varc…
Write a SQL statement to create a view for the database called CustomerFullNameS
Write a SQL statement to create a view for the database called CustomerFullNameSaleHistoryView that (1) includes SALE.SaleID, SALE.SaleDate, customer full name (named as FullName)…
Write a SQL statement to list flight numbers and Airplane models for flights out
Write a SQL statement to list flight numbers and Airplane models for flights out of Philidelphia on November 20th, 2017 Schema below: Grand Travel Airlines has to keep track of it…
Write a SQL statement to list flight numbers and Airplane models for flights out
Write a SQL statement to list flight numbers and Airplane models for flights out of Philadelphia on Nov. 6, 2015. Grand Travel Airlines has to keep track of its flight and airplan…
Write a SQL statement to list the following information, sorted by descending or
Write a SQL statement to list the following information, sorted by descending order by total timespan Write a SQL statement to list the following information, sorted by descending…
Write a Savings Account class that stores a savings account\'s annual interest r
Write a Savings Account class that stores a savings account's annual interest rate and balance The class constructor should accept the amount of the savings account's starting bal…
Write a Scheme function (remove x lis) that remove the first occurance of x in a
Write a Scheme function (remove x lis) that remove the first occurance of x in a simple list "lis". For example, after you have defined your remove function and run (remove 2 '(3 …
Write a Scheme function int-to-words that takes a nonnegative integer between 0
Write a Scheme function int-to-words that takes a nonnegative integer between 0 and 99, inclusive, as a parameter and returns a list of words corresponding to the integers reading…
Write a Scheme function sumEven that takes as an argument a list of integers L,
Write a Scheme function sumEven that takes as an argument a list of integers L, and returns th e summation of the even number s only in L. For example, (sumEven '(3 4 5 2 6 8 2)) …
Write a Scheme program that does: 1) Prompt the user to enter a list of ints 2)
Write a Scheme program that does: 1)      Prompt the user to enter a list of ints 2)      Display the entered list 3)      Display the size of the list 4)      Reverse the list an…
Write a Scilab script that takes no inputs and displays the following informatio
Write a Scilab script that takes no inputs and displays the following information. Use the colon operator or the linspace() function to create a row vector named ‘X’ that goes fro…