Guest User

Untitled

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