final exam Notes Flashcards

1
Q

Maven is a

A
  1. Build Automation Tool
  2. Dependency Management Tool
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

JDBC

A

Java Database Connectivity (JDBC)

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

Steps to creating a connection

A
  • Create a variable of type Connection
  • Inside of a try block build the url for the database
  • Also within your try block, assign the result of DriverManager.getConnection( url ) to
    your Connection variable
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

HTTP

A

Hypertext Transfer Protocol
- requires a URL and a HTTP Verb

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

HTTP Verbs

A
  • GET: Gets information from the server
  • PUT: Updates information on the server
  • POST: Adds information to the server
  • DELETE: Removes information from the server
How well did you know this?
1
Not at all
2
3
4
5
Perfectly