Accounting
Anthropology
Archaeology
Art History
Banking
Biology & Life Science
Business
Business Communication
Business Development
Business Ethics
Business Law
Chemistry
Communication
Computer Science
Counseling
Criminal Law
Curriculum & Instruction
Design
Earth Science
Economic
Education
Engineering
Finance
History & Theory
Humanities
Human Resource
International Business
Investments & Securities
Journalism
Law
Management
Marketing
Medicine
Medicine & Health Science
Nursing
Philosophy
Physic
Psychology
Real Estate
Science
Social Science
Sociology
Special Education
Speech
Visual Arts
Design
Q:
Configure data source wizard is used to establish new connection with qtax SQL server database.
Q:
DataSource server controls are used to display data.
Q:
Common Tasks is a feature used to setup data server controls.
Q:
Database related server controls are located on the Toolbox under the Data tab.
Q:
SqlDataSource server control is used for either SQL Server or Oracle databases.
Q:
For years, QuickTax, Inc. has helped small businesses manage their taxes. The management wants a database to keep track of clients, employees, and jobs. Managers need to keep track of client names, addresses, contact persons, phone numbers, and email addresses. They also need to track the employee's social security numbers, names, and birth dates. Also, the company needs to be able to keep track of the data on each job an employee performs for each of their clients.For questions 13-26, please refer to the preceding paragraph.The server control used to access qtax.mdb Access database is called the SqlDataSource.
Q:
In an ASP page, the Source view is used to place all the server control and the Design view is used to write HTML statements.
Q:
An ASP.NET Web site is a collection of files stored in a unique folder.
Q:
Major components of Web Developer are an ASP page, Solution Explorer, and Properties window.
Q:
In order to develop applications with Web Developer Express, you need all three tiers: client browser, Web server, and database server.
Q:
Microsoft Web Developer Express is a subset of a powerful development environment called Visual Studio.
Q:
An ASP.NET Web Form is divided into the user interface and programming logic components.
Q:
When a button is clicked or list selection made, an event is raised and the information is just displayed in the user's browser.
Q:
Web Form sent back to the Web server contains both user supplied and other relevant information associated with the ASP Web page.
Q:
ASP.NET server controls include dynamic versions of typical HTML tags.
Q:
ASP.NET Web Form is built using standard HTML tags.
Q:
A dynamic Web page is based on the responses to user inputs and events related to the page.
Q:
Active Server Page (ASP) is a Web page that displays static content like text and graphics.
Q:
In SQL Query Analyzer, the statement used to retrieve client's contacts with emails ending in "net", and from area code 603, would be __.
Q:
In SQL Query Analyzer, the statement used to retrieve client's contacts with emails ending in "net", would be __.
Q:
In SQL Query Analyzer, the statement used to retrieve an employee name and birth date, for an employee with social security number 261284363, would be __.
Q:
In SQL Query Analyzer, the statement used to retrieve all the jobs with jobid over 5, displaying only jobids and associated dates, would be __.
Q:
In SQL Query Analyzer, the statement used to retrieve all the client data, ordered first by state and then by zip code would be __.
Q:
In SQL Query Analyzer, the statement used to retrieve all of the client's names, sorted A to Z, with city, state, and zip code would be __.
Q:
In SQL Query Analyzer, the statement used to retrieve all of the client's contacts and emails would be __.
Q:
In SQL Query Analyzer query design view, the __ is used to enter SQL queries.
Q:
For years, QuickTax, Inc. has helped small businesses manage their taxes. The management wants a database to keep track of clients, employees, and jobs. Managers need to keep track of client names, addresses, contact persons, phone numbers, and email addresses. They also need to track the employee's social security numbers, names, and birth dates. Also, the company needs to be able to keep track of the data on each job an employee performs for each of their clients.For questions 60-81, please refer to the preceding paragraph.In SQL Query Analyzer, the statement used to retrieve all of the data from the employee table would be __.
Q:
In SQL Query Analyzer, the statement used to display employees' social security numbers and names that don"t have any jobs assigned to them, would be which of the following?a) Select employee.ssn, employee.name From job Where employee.ssn Not In (Select Distinct job.ssn From job)b) Select employee.ssn, employee.name From job Where employee.ssn Not In (Select Distinct employee.ssn From employee)c) Select employee.ssn, employee.name From employee Where employee.ssn Not In (Select Distinct job.ssn From job)d) Select employee.ssn, employee.name From employee Where employee.ssn In (Select Distinct job.ssn From job)
Q:
In SQL Query Analyzer, the statement used to display employee and client names together with all of the job dates, sorted from earliest to latest, would be which of the following?
a) Select employee. name, client.name, job.jobdate From employee Inner Join (client Inner Join job On client.email = job.jobid) On employee.ssn = job.jobid Order by job.jobdate
b) Select employee. name, client.name, job.jobdate From employee Inner Join client Inner Join job On (client.email = job.email And employee.ssn = job.ssn ) Order by job.jobdate
c) Select employee. name, client.name, job.jobdate From employee Inner Join client On (client.email = job.email And employee.ssn = job.ssn) Order by job.jobdate
d) Select employee. name, client.name, job.jobdate From employee Inner Join (client Inner Join job On client.email = job.email) On employee.ssn = job.ssn Order by job.jobdate
Q:
In SQL Query Analyzer, the statement used to display employee names together with job dates and times, for all jobs starting on either 3/12/06 or at 8 A.M., would be which of the following?
a) Select employee. name, job.jobdate, job.timestart, job.timeend From employee Inner Join job On employee.ssn = job.ssn Where job.jobdate = #3/12/06# And job.timestart = #8:00 AM#
b) Select employee. name, job.jobdate, job.timestart , job.timeend From employee Inner Join job On employee.ssn = job.jobid Where job.jobdate = #3/12/06# Or job.timeend = #8:00 AM#
c) Select employee. name, job.jobdate, job.timestart , job.timeend From employee Inner Join job On employee.ssn = job.ssn Where job.jobdate = #3/12/06# Or job.timestart = #8:00 AM#
d) Select employee. name, job.jobdate, job.timestart , job.timeend From employee , job On employee.ssn = job.ssn Where job.jobdate = #3/12/06# Or job.timestart = #8:00 AM#
Q:
In SQL Query Analyzer, the statement used to display employee names together with job dates and times, for all jobs starting at 8 A.M., would be which of the following?
a) Select employee. name, job.jobdate, job.timestart, job.timeend From employee Inner Join job On employee.ssn = job.ssn Where job.timestart = #8:00 AM#
b) Select employee. name, job.jobdate, job.timestart, job.timeend From employee Inner Join job On employee.ssn = job.ssn Where job.timeend = #8:00 AM#
c) Select employee. name, job.jobdate, job.timestart, job.timeend From employee Inner Join job Where job.timestart = #8:00 AM#
d) Select employee. name, job.jobdate, job.timestart, job.timeend From employee, job On employee.ssn = job.ssn Where job.timestart = #8:00 AM#
Q:
In SQL Query Analyzer, the statement used to display employee names together with all of their job dates and times would be which of the following?
a) Select employee.name, job.jobdate, job.timestart, job.timeend From employee, job Where employee.ssn = job.jobid
b) Select employee. name, job. jobdate, job. timestart, job. timeend From employee Inner Join job On employee.ssn = job.ssn
c) Select employee. name, job. jobdate, job. timestart, job. timeend From employee.ssn Inner Join On job.ssn
d) Select employee. name, job. jobdate, job. timestart, job. timeend From employee Inner Join job On employee = job
Q:
In SQL Query Analyzer, the statement used to calculate the number of clients from each NH zip code, labeled "Zip Clients", would be which of the following?
a) Select zipcode, Count(email) From client Group by zipcode Where state != "NH"
b) Select zipcode, Count(email) As "Zip Clients' From client Group by zipcode
c) Select zipcode, Count(email) As "Zip Clients' From client Group by zipcode Where state = "NH"
d) Select zipcode, Count(email) As "Zip Clients' From client Group by zipcode Where state Is "NH"
Q:
In SQL Query Analyzer, the statement used to retrieve all the jobs with jobid greater than 5 and less than 8, displaying only jobid and associated dates, would be which of the following?
a) Select jobid, date From job Where jobid between 5 and 8
b) Select jobid, date From job Where jobid >5 And <8
c) Select jobid, date From job Where jobid >=5 and <=8
d) Select jobid, date From job Where jobid 5 and 8
Q:
In SQL Query Analyzer, which of the following statements would result in contacts, emails, and zip codes for the clients whose emails end in "net", and who live in 03264 zip code?
a) Select contact, email, zipcode From client Where email Not Like "net" And zipcode!= "03264"
b) Select contact, email, zipcode From client Where email Like "*net" Or zipcode = "03264"
c) Select contact, email, zipcode From client Where email Like "net" Or zipcode = "03264"
d) Select contact, email, zipcode From client Where email Like "*net" And zipcode = "03264"
Q:
In SQL Query Analyzer, which of the following statements would result in contacts, emails, and zip codes for the clients whose emails either end in "net", or who live in 03264 zip code?
a) Select contact, email, zipcode From client Where email Not Like "net" And zipcode!= "03264"
b) Select contact, email, zipcode From client Where email Like "*net" Or zipcode = "03264"
c) Select contact, email, zipcode From client Where email Like "net" Or zipcode = "03264"
d) Select contact, email, zipcode From client Where email Like "*net" And zipcode = "03264"
Q:
In SQL Query Analyzer, which of the following statements would result in contacts and emails only for the clients in 603 area code?
a) Select contact, email From client Where phone Not Like "603*"
b) Select contact, email From client Where phone Like "603"
c) Select contact, email From client Where phone Like "603*"
d) Select contact, email From client Where phone Like "*603*"
Q:
In SQL Query Analyzer, which of the following statements would result in contacts and emails only for the clients in the state of New Hampshire?
a) Select contact, email From client Where state equals "NH"
b) Select contact, email From client Where state != "NH"
c) Select contact, email From client Where state = "NH"
d) Select contact, email From client Where state is "NH"
Q:
Which one of the following are referred to as conditional operators?
a) +, -, *, /
b) =, >, <, >=, <=, !=
c) %, &, @, #
d) (, [, {, ), ], }
Q:
In SQL Query Analyzer, the condition restricting jobs to those with jobid of 5 or more, would be placed after which of the following keywords?
a) Select
b) From
c) Order by
d) Where
Q:
Sorting on multiple columns in SQL Query Analyzer involves which of the following?
a) Placing the fields in order in which they should be sorted
b) Choosing the type of sort (Ascending, Descending)
c) Make sure that the required fields are shown
d) All of the above
Q:
In SQL Query Analyzer, which of the following would be used to sort the client list consisting of contacts and emails, alphabetically from Z to A, by contact?
a) Select * From client Order by contact
b) Select contact, email From client Order by contact desc
c) Select contact, email From client Order by contact
d) Select contact, email Order by contact desc
Q:
Which of the following would be used in order to create Select * From client code in SQL Query Analyzer?
a) Execute button
b) Object browser
c) Query pane
d) Results pane
Q:
In Microsoft SQL Server Enterprise Manager, which of the following Tools menu items allows you to create and execute SQL statements?
a) SQL Query Analyzer
b) SQL Profiler
c) Generate SQL Script
d) Manage SQL Server Messages
Q:
For years, QuickTax, Inc. has helped small businesses manage their taxes. The management wants a database to keep track of clients, employees, and jobs. Managers need to keep track of client names, addresses, contact persons, phone numbers, and email addresses. They also need to track the employee's social security numbers, names, and birth dates. Also, the company needs to be able to keep track of the data on each job an employee performs for each of their clients.For questions 33-56, please refer to the preceding paragraph.In SQL Query Analyzer, the statement used to retrieve all the data from the job table, would be which of the following?a) Select job From *b) Select * From jobc) From job Select *d) From * Select job
Q:
In order to perform a multiple join, the Where clause is used together with Or operator.
Q:
We can run the query by clicking on the Play button in SQL Query.
Q:
In SQL Query Analyzer, the statement used to display all the employees, sorted first by their names, and then by birth dates would be: Select * From employee Order by birthdate, name.
Q:
In SQL Query Analyzer, the bottom pane shows the query results.
Q:
In SQL Query Analyzer, the top pane shows the SQL script.
Q:
The only required elements of an SQL statement are: (1) the Select statement (followed by a list of tables), and (2) the From keyword (followed by a list of columns).
Q:
Exposures is a specialty retailer of fine gifts, picture frames, albums, scrapbooks, as well as occasional gift ideas. Visit their Web site at www.exposureonline.com, and using the registration, billing, catalog, and shopping cart screens below, go through each of the five ER design steps.For questions 92-95, please refer to the preceding paragraph, web screens, and the table relationships below.Design the query that lists all the products based on the total quantity sold. The list should include the product name, price, and the amount sold in decreasing order.
Q:
Design the query that calculates the order totals for each of the customers, sorted descending by the totals. Include the customer names, order dates, as well any other information you deem necessary.
Q:
Design the query that calculates the number of customers using a particular credit card, sorted by card type.
Q:
List all the customers from zip codes 03223 and 03264 alphabetically by their last names. Include their first and last names, street addresses, city, state, and zip codes.
Q:
Create the query that calculates the "Average Time to Delivery" from lowest to highest, grouped by supplier, and only for the flowers delivered in good condition.
Q:
Design the query that will calculate total revenue for each of the flower groups, labeled as "Total Revenue".
Q:
Design the query that calculates which flower groups are ordered the most, displayed as "Best Sellers", and display them from highest to the lowest, including their price.
Q:
Design the query that retrieves the flowers (from A to Z) that bloom in early spring, and last more than three days.
Q:
Jerry, the owner of Exotic Flower Inc., built a small greenhouse to store several types of exotic flowers that he purchases from wholesale suppliers around the world. Each exotic flower Jerry buys and resells falls into one of several flower groups that differ with respect to their storage needs, duration, time in bloom, price, etc. Each of the orders placed by customers specifies the type of exotic flower, the supplier it came from, the date of order, expected delivery date, flower condition on delivery, as well as the quantity ordered. Customer's data contain all the standard information needed to collect payment and deliver the flowers.For questions 87-91, please refer to the preceding paragraph and diagram relationships below.Design the query that retrieves flower group and price for flowers that have any kind of sun storage need.
Q:
Design the query that shows all the vehicles not currently booked. Include vehicle ID, make, type, and rental rate.
Q:
Design the query that retrieves all the customer names and phone numbers, and calculates the total number of bookings as "Num Bookings", only for the repeat customers (more than one booking).
Q:
Design the query that retrieves all the customer names and phone numbers, only for the customers born in the 1960s, that made the reservations between 7/1/06 and 7/15/06, sorted by rental date.
Q:
Design the query that calculates the average rental rate, labeled "Avg Rate", for different vehicle types sorted from A to Z.
Q:
Plymouth Car Rental (PCR) started with two compact cars and has expanded its fleet of vehicles with several sedans and trucks. When a customer books a rental, his/her age has to be at least 18 for compact cars and sedans, which are rented by the day and must be returned the following morning by 11 A.M. Trucks are rented for a maximum of six hours. The owner requires a deposit on the reservation to be paid within seven days of booking. Vehicle records consist of the makes and types (Honda sedan), color, seating capacity, required deposit, rental rate, and rental limit (in hours). Customer data consists of customer's names, addresses, phone numbers, and birth dates. Bookings identify the customer, vehicle, as well as the time rented and returned. There can be several payments up until the reservation date. Payments must reflect the payment status for each booking, including deposit, when the deposit was made, then each of the payments made, and when the entire payment was completed.For questions 82-86, please refer to the preceding paragraph and diagram relationship below.Design the query that retrieves customer names, addresses, and birth dates, born after 1/1/1970, and from zip codes 03223 and 03264.
Q:
In SQL Query Analyzer, the statement used to show all employee social security numbers and names that don"t have jobs assigned to them, would be __.
Q:
In SQL Query Analyzer, the statement used to show all client emails and contacts for whom jobs have been done, would be __.
Q:
In SQL Query Analyzer, the statement used to display employee and client names together with all of the jobs for 3/14/06, sorted alphabetically by client name, would be __.
Q:
In SQL Query Analyzer, the statement used to display client emails and contacts, together with job dates and times, for the jobs that start at either 8 A.M. or 10 A.M., would be __.
Q:
In SQL Query Analyzer, the statement used to display client emails and contacts, together with job dates and times from 3/13/06 to 3/15/06, would be __.
Q:
In SQL Query Analyzer, the statement used to display client emails and contacts, together with all of their job dates and times would be __.
Q:
In SQL Query Analyzer, the statement used to calculate the number of clients, labeled "Zip Clients", from each zip code in states with at least three clients, would be __.
Q:
In SQL Query Analyzer, the statement used to show all the different client zip codes, would be __.
Q:
In SQL Query Analyzer, the statement used to calculate the number of clients from each zip code, labeled "Zip Clients", would be __.
Q:
In SQL Query Analyzer, the statement used to calculate the number of clients from NH, labeled as "NH Clients", would be __.
Q:
In SQL Query Analyzer, the statement used to retrieve client's contact with emails that end in "net", from zip codes 03223 and 03264, would be __.
Q:
In SQL Query Analyzer, the statement used to retrieve client's contacts with emails that are not from zip codes 03223 and 03264, would be _.
Q:
In SQL Query Analyzer, the statement used to retrieve client's contacts with emails from zip codes 03223 and 03264 only, would be __.
Q:
Establish the relationships between the tables in exposures Microsoft SQL Server database. Make sure to indicate the correct cardinality.
Q:
Complete the design of the order table in exposures Microsoft SQL Server database. Make sure to indicate which of the fields is the primary key.