final exam Notes Flashcards
1
Q
Maven is a
A
- Build Automation Tool
- Dependency Management Tool
2
Q
JDBC
A
Java Database Connectivity (JDBC)
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
4
Q
HTTP
A
Hypertext Transfer Protocol
- requires a URL and a HTTP Verb
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