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. XPath uses ____________ to navigate in XML documents - selecting nodes or node-sets






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






3. Returns minute value from time passed






4. Selects all title elements which have any attribute






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






6. XPath is a major element in _______






7. Selects first two book elements from the children of books element






8. Concatenates strings together (example concat('It",'is','cool') returns "Itiscool"






9. Selects parent of current node






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






11. XPath is a for defining parts of an XML document






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






13. 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


14. Returns true if str1 contains str2






15. +, -, *, div, =, !=, <, <=, >, >=, or, and, mod (modulus)






16. Selects last book element from the children of books element






17. Returns timezone value from time passed






18. Returns everything after the first occurrence of str2






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






20. Predicates work somewhat like _____________






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






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






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






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






25. Returns time right now






26. Returns false or true






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






28. Returns next lowest integer






29. Trims leading and trailing spaces






30. Returns month value out of date passed






31. Returns true if str1 starts with str2






32. Selects attributes






33. Returns hour value from time passed






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






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






36. Converts value to a string






37. Returns everything before the first occurrence of str2






38. Returns year value out of the date passed






39. Selects all elements in the document






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






41. Converts string to lower case






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






43. 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






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






45. Returns logically rounded integer






46. Concatenates strings together with separator between each string






47. XPath contains a library of _________






48. every element and every attribute have just one _________






49. Compares strings, returns 0 if same, -1 if not same






50. Returns true if str2 appears anywhere inside str1