Test your basic knowledge |

Subject : it-skills
Instructions:
  • Answer 50 questions in 15 minutes.
  • If you are not ready to take this test, you can study here.
  • Match each statement with the correct term.
  • Don't refresh. All questions and answers are randomly picked and ordered every time you load a test.

This is a study tool. The 3 wrong answers for each question are randomly chosen from answers to other questions. So, you might find at times the answers obvious, but you will see it re-enforces your understanding as you take the test each time.
1. Returns false or true






2. 3 parts of XSL (eXtensible stylesheet language): Xpath for navigating XML documents - XSLT for ______ documents - XSL-FO for formatting XML documents






3. XPath is a major element in _______






4. xpath function categories: numeric - string - boolea - date/time - ________






5. Returns year value out of the date passed






6. Gets position(s) of target item(s) - example: index-of(15, 40, 25, 40, 10), 40) returns (2, 4)






7. Replaces chars of str2 found in str1 with chars of str3






8. Seven kinds of nodes in XPath: element - attribute - text - namespace - __________ - comment - document (root) nodes - a.k.a. DECANT-PI






9. _______ have 3 primary relationships: parent - child - sibling






10. Selects all elements in the document






11. Travels from current node to select nodes that match - wherever they are

Warning: Invalid argument supplied for foreach() in /var/www/html/basicversity.com/show_quiz.php on line 183


12. Returns true if str1 starts with str2






13. Returns minute value from time passed






14. Returns boolean true or boolean false






15. Removes item in the position - example: remove(("ab", "cd", "ef"), 1) returns ("cd", "ef")






16. Concatenates strings together with separator between each string






17. Selects all book elements with a child element "price" with values greater than 35






18. Selects all title elements of the book element AND all price elements in the entire document






19. Returns complete date/time






20. Use a | to select more than one _____ (means AND)






21. A predicate is used by is used by adding square brackets [ ] to the end of a path or portion of a path - and adding ________ inside the brackets






22. Returns day value from date passed






23. The XPath division operator not "/" cuz "/" is used in path expressions






24. Returns true if str1 contains str2






25. The process of taking raw XML - adding XSL - and outputting a document file of some type






26. Returns everything after the first occurrence of str2






27. Sibling nodes all have the same ______






28. In str1, replaces all occurrences of str2 with str3






29. XPath contains a library of _________






30. Inserts new itemX into the collection at the positionX - example insert-before("a", "b", "c"), 3, "z") returns (abzc)






31. every element and every attribute have just one _________






32. Returns timezone value from time passed






33. Transformation is actually accomplished by a _____________ like Saxon XSLT






34. Returns length of current node string






35. Returns absolute value (example abs(-2.5) returns 2.5






36. Returns true if str2 appears anywhere inside str1






37. Returns today's date






38. Returns false if true - true if false (negative logic)






39. XML documents are treated as _________- so the root of the tree is called the document node or root node






40. Element nodes may have zero - one - or more _________






41. Converts string number to numeric value






42. Returns substring from start position to end of string






43. Returns logically rounded integer






44. selects first book element from the children of books element






45. Selects all title AND price elements of all book elements






46. 3 wildcards: ? matches any element node - @ matches any ___________ - node() matches any node of any kind






47. Returns all unique values in that collection - example: distinct-values(a, b, c, d, a, c) returns (a, b, c, d)






48. Predicates work somewhat like _____________






49. Returns hour value from time passed






50. Selects all the child nodes of the bookstore element