You want to add ASP capability to your company's website. What is the first thing you would check?
That all pages are saved in .asp extensions.
Check that the web server has Microsoft FrontPage extensions installed.
Make sure the web server is capable of hosting ASP pages.
Check the coding and be sure the ASP code is surrounded with
All of the above
You have determined that your company's website is housed on a web server that cannot handle ASP. What would you do?
Contact the ISP and have them switch the website to have ASP capability.
Have your ISP install the Microsoft FrontPage extensions
Develop a transition plan first that includes a step-by-step plan on every detail prior to contacting the ISP.
All the above
Some say that JavaScript is easier to use than ASP and will run regardless of whatever operating system the web server is using (Unix, Linux, Windows 2000, etc). Then others say that ASP has advantages over JavaScript such as what?
ASP does not depend upon which browser the viewer is using.
ASP code does not show up in the source code; thus, the code is protected
ASP does not download with the page to the viewer.
ASP can easily interact with a database.
A feature of ASP is its ability to interact with a database. Which of these databases is the most popular to use with ASP?
dBase
Delimited text files
Access (97 or 2000)
Excel spreadsheets
SQL
JavaScript is which?
Client-side executable code (executes at the browser level)
Server side executable code (runs at the server only)
ASP is which?
Client-side scripting code and server-side scripting code can coexist and can be used on the same page.
True
False
Variable are used to hold both numerical and text values. Which of these IS NOT a valid variable name?
X
X1
1X
x1X
Which of these is OKAY to use for a variable name?
employee salary
2nd_employee
employee_hire_date
date-of-birth
date_of.birth
You have a long piece of code tracking employee salaries. In your opinion, which of these variables is the best (shortest yet most descriptive) to use throughout the code to track the salaries of the managers? Keep in mind that you may try to analyze your
manager_salaries
SalariesOfManagers
Salaries_Of_Managers
mgmtSalary
Salary1