Web-based computing pt3 Flashcards

1
Q

In general what is JSPs?

What do they provide?

A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Using JSP how would you generate a page giving the server’s date & time?

A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

How would you print the date and time using scriptlets?

A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q
A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What would the jsp code look like for the following HTML page?

A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

How do you import in JSP?

How do you incorporate declaration of java variables and methods?

A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What are JSTL?

A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

What are ASPs?

A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

What is the Application object in ASP?

A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

What does each Application object maintain?

A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

What must be done with shared variables in ASP and how is that done?

A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

In ASPs what does the Request object maintain?

What are the collections of interest?

A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

What does the collection Request.Form contain?

A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

What does the collectin Request.QueryString contain?

A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

What does the Request.ServerVariables collection contain?

What are example methods?

A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

what does the collection Request.Cookies contain?

A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
17
Q

In general for ASP what is the Response and what does it allow you to control?

A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
18
Q

For ASP HTTP response, what are the most important things that can be controlled?

A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
19
Q

What do the following ASP Respense object methods do:

  1. Response.AddHeader()
  2. Response.BinaryWrite()
  3. Response.Clear()
  4. Response.End()
  5. Response.Flush()
  6. Response.Redirect()
  7. Response.Write()
A
20
Q

What does the ObjectContext object provide?

A
21
Q

How do you indicate that an ASP script should be executed transactionally?

A
22
Q

What does the Session object provide in ASP?

A
23
Q

What is the Server object in ASP?

What are the most important methods?

A
24
Q

What are the other miscellaneous methods provided by the Server object in ASP?

A
25
Q

What is the issue that Cookies and Session data mechanims help address

A

The issue of having all the pages work together like a single app, across multiple pages

26
Q

What is a cookie

A
27
Q

In general what is session data?

A
28
Q

How does the ASP Session object work?

A
29
Q

What is a style sheet and what is it’s purpose?

A
30
Q

What advantages does separating presentation from structure offer?

A
31
Q

What do style sheets allow you to control?

A
32
Q

What is the simple CSS example (base on the W3 demo)

A
33
Q

How can you define styles for groups of different HTML tags belonging to “classes”?

A
34
Q

How are internalsheets used to give a single HTML document a unique style?

The same for Inline pls?

A
35
Q

What happens when styles are combined?

Who generates them?
Who applies them?

A
36
Q

In general, what are the different approaches for client side processing?

A
37
Q

What are the details for JavaScript

A
38
Q

How does JavaScript work in relation to HTML?

A
39
Q

How is JavaScript used to dynamically create or update HTML?

A
40
Q

One of JavaScripts powerful abilities is pattern matching, provide an example of how that works.

A
41
Q

What is the general purose of jQuery?

A
42
Q

How is a jQuery statement formatted?

A
43
Q

How is jQuery imported to use in HTML?

A
44
Q

How would jQuery be usd to catch a click event?

A
45
Q

How would you used jQuery to change the CSS attribbutes on an element?

A