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()
20
Q

What does the ObjectContext object provide?

21
Q

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

22
Q

What does the Session object provide in ASP?

23
Q

What is the Server object in ASP?

What are the most important methods?

24
Q

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

25
What is the issue that Cookies and Session data mechanims help address
The issue of having all the pages work together like a single app, across multiple pages
26
What is a cookie
27
In general what is session data?
28
How does the ASP Session object work?
29
What is a style sheet and what is it's purpose?
30
What advantages does separating presentation from structure offer?
31
What do style sheets allow you to control?
32
What is the simple CSS example (base on the W3 demo)
33
How can you define styles for groups of different HTML tags belonging to "classes"?
34
How are internalsheets used to give a single HTML document a unique style? The same for Inline pls?
35
What happens when styles are combined? Who generates them? Who applies them?
36
In general, what are the different approaches for client side processing?
37
What are the details for JavaScript
38
How does JavaScript work in relation to HTML?
39
How is JavaScript used to dynamically create or update HTML?
40
One of JavaScripts powerful abilities is pattern matching, provide an example of how that works.
41
What is the general purose of jQuery?
42
How is a jQuery statement formatted?
43
How is jQuery imported to use in HTML?
44
How would jQuery be usd to catch a click event?
45
How would you used jQuery to change the CSS attribbutes on an element?