In Microsoft Access, 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.Date, 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.Date, 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.Date, Job.TimeStart, Job.TimeEnd From Employee
Inner Join Job Where Job.TimeStart = #8:00 AM#
d) Select Employee.Name, Job.Date, Job.TimeStart, Job.TimeEnd From Employee, Job
On Employee.SSN = Job.SSN Where Job.TimeStart = #8:00 AM#
ASP.NET is the Microsoft development environment that allows us to
do which of the following?
a) Develop static Web pages that consist of text and graphics.
b) Develop dynamic Web applications that interact with the user.
c) Design Web databases and manage their content.
d) Design desktop-based applications that interact with databases.