Advertisement
Guest User

Untitled

a guest
Feb 1st, 2015
181
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.99 KB | None | 0 0
  1. What four components (at the minimum) are needed to create a fully dynamic web
  2. page?
  3.  
  4. HTML, PHP, MySQL, JavaScript
  5.  
  6.  
  7. 2.
  8. What does HTML stand for?
  9.  
  10. Hyper Text Markup Language
  11.  
  12. 3.
  13. Why does the name MySQL contain the letters
  14. SQL
  15. ?
  16.  
  17. Structured Query Language ... because it's a database?
  18.  
  19. 4.
  20. PHP and JavaScript are both programming languages that generate dynamic results
  21. for web pages. What is their main difference, and why would you use both of them?
  22.  
  23. JavaScript allows you to dynamically manupulate CSS and HTML. It helps with user interaction with a website.
  24.  
  25. PHP is a flexible scripting language that works together with MySQL to access the MySQL database easily.
  26.  
  27.  
  28. 5.
  29. What does CSS stand for?
  30.  
  31. Cascading Style Sheets
  32.  
  33.  
  34. 6.
  35. List three major new elements introduced in HTML5.
  36.  
  37. <nav> <audio> <video> elements
  38.  
  39. 7.
  40. If you encounter a bug (which is rare) in one of the open source tools, how do you
  41. think you could get it fixed?
  42.  
  43. Go on a forum and whine to other programmers x) :3
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement