Guest User

Untitled

a guest
Nov 19th, 2017
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.02 KB | None | 0 0
  1. # SDT Progress Assessment 2 Practice
  2.  
  3. ### 1. What is vim/nano?
  4. <br>
  5. <br>
  6.  
  7. ### 2. List bash commands that perform the following: list the files and directories in the working directory; change directories; make a new file; make a new directory.
  8. <br>
  9. <br>
  10.  
  11. ### 3. What is HTML?
  12. <br>
  13. <br>
  14.  
  15. ### 4. Describe the difference between an HTML tag, element, and attribute.
  16. <br>
  17. <br>
  18.  
  19. ### 5. Briefly summarize the following HTML tags: ```<html></html>```, ```<head></head>```, ```<body></body>```, and ```<title></title>```.
  20. <br>
  21. <br>
  22.  
  23. ### 6. Briefly summarize the following HTML tags: ```<div></div>```, ```<section></section>```, and ```<nav></nav>```.
  24. <br>
  25. <br>
  26.  
  27. ### 7. Explain at least three tags used to define a table in HTML.
  28. <br>
  29. <br>
  30.  
  31. ### 8. When should you use ```<section>``` instead of ```<div>```?
  32. <br>
  33. <br>
  34.  
  35. ### 9. Briefly summarize the effects of the following HTML elements: ```<b></b>``` and ```<i></i>```, ```<ul></ul>``` and ```<ol></ol>```, ```<a></a>```, ```<img>```, and ```<br>```.
  36. <br>
  37. <br>
  38.  
  39. ### 10. What is CSS?
  40. <br>
  41. <br>
  42.  
  43. ### 11. Name at least two ways to add CSS to HTML.
  44. <br>
  45. <br>
  46.  
  47. ### 12. How do you link an external stylesheet?
  48. <br>
  49. <br>
  50.  
  51. ### 13. What are CSS selectors? Provide at least two examples.
  52. <br>
  53. <br>
  54.  
  55. ### 14. What is the descendant combinator? Give an example.
  56. <br>
  57. <br>
  58.  
  59. ### 15. What is a media query? How can we use media queries to change the appearance of our web page based on the size of the browser window?
  60. <br>
  61. <br>
  62.  
  63. ### 16. What is "float"? How do you clear a "float"?
  64. <br>
  65. <br>
  66.  
  67. ### 17. What are pseudo-classes and pseudo-elements? Give an example of each.
  68. <br>
  69. <br>
  70.  
  71. ### 18. How do you include JavaScript in an HTML file? Give an example for both internal and external scripts.
  72. <br>
  73. <br>
  74.  
  75. ### 19. What is the DOM?
  76. <br>
  77. <br>
  78.  
  79. ### 20. Each element of the DOM is best known as what?
  80. <br>
  81. <br>
  82.  
  83. ### 21. How do you access the current web page using JavaScript?
  84. <br>
  85. <br>
  86.  
  87. ### 22. List the event handlers for the following events: when the window finishes loading, when the user clicks the mouse, when the mouse enters and/or leaves the current element.
  88. <br>
  89. <br>
  90.  
  91. ### 23. What is event delegation?
  92. <br>
  93. <br>
  94.  
  95. ### 24. Explain the difference between capturing and bubbling events.
  96. <br>
  97. <br>
  98.  
  99. ### 25. What is pseudo-code and why is it useful?
  100. <br>
  101. <br>
  102.  
  103. ### 26. What is jQuery?
  104. <br>
  105. <br>
  106.  
  107. ### 27. How would you use jQuery to select all ```<p>``` elements?
  108. <br>
  109. <br>
  110.  
  111. ### 28. What does "$" mean in JavaScript? In jQuery?
  112. <br>
  113. <br>
  114.  
  115. ### 29. What does the jQuery "ready" function do?
  116. <br>
  117. <br>
  118.  
  119. ### 30. What are some of the pros and cons of using jQuery?
  120. <br>
  121. <br>
  122.  
  123. ### 31. Define "refactoring".
  124. <br>
  125. <br>
  126.  
  127. ### 32. What is Angular?
  128. <br>
  129. <br>
  130.  
  131. ### 33. What is two-way data binding?
  132. <br>
  133. <br>
  134.  
  135. ### 34. What is a directive?
  136. <br>
  137. <br>
  138.  
  139. ### 35. What is the difference between a framework and a library?
  140. <br>
  141. <br>
  142.  
  143. ### 36. Explain the Model-View-Controller architectural pattern.
  144. <br>
  145. <br>
  146.  
  147. ### 37. What is an Angular module?
  148. <br>
  149. <br>
  150.  
  151. ### 38. What is the Node Package Manager?
  152. <br>
  153. <br>
  154.  
  155. ### 39. What is Node.js?
  156. <br>
  157. <br>
  158.  
  159. ### 40. Explain in general terms how different files work together in our Angular applications, especially templates, factories, and controllers.
  160. <br>
  161. <br>
  162.  
  163. ### 41. What do two curly braces ```{{ }}``` represent when using Angular? Specifically, when do we need to use them, and when can we omit them?
  164. <br>
  165. <br>
  166.  
  167. ### 42. What is an IIFE, and why do we use them to wrap our Javascript files when using Angular?
  168. <br>
  169. <br>
  170.  
  171. ### 43. What does the UI-Router framework do? Name two important HTML tags it introduces to accomplish this.
  172. <br>
  173. <br>
  174.  
  175. ### 44. What does the ```$stateProvider``` do?
  176. <br>
  177. <br>
  178.  
  179. ### 45. Briefly explain the ```ngRepeat``` directive and how to use it.
  180. <br>
  181. <br>
  182.  
  183. ### 46. Name at least three service types, or "recipes", Angular has.
  184. <br>
  185. <br>
  186.  
  187. ### 47. How do you add a public method to a service?
  188. <br>
  189. <br>
  190.  
  191. ### 48. What is a singleton?
  192. <br>
  193. <br>
  194.  
  195. ### 49. What do Angular filters do?
  196. <br>
  197. <br>
  198.  
  199. ### 50. What is a modal window?
  200. <br>
  201. <br>
  202.  
  203. ### 51. What is Firebase?
  204. <br>
  205. <br>
  206.  
  207. ### 52. What are the commands to get, set, and delete a cookie?
  208. <br>
  209. <br>
Add Comment
Please, Sign In to add comment