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 month value out of date passed






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






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






4. XSL is what we use to get from readable to _________






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






6. XPath contains a library of _________






7. ________ allow more specific selections within the XPath






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






9. Selects from the root node



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






11. Concatenates strings together with separator between each string






12. Returns n-length substring from start position






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






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






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






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






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






18. Returns next lowest integer






19. Returns false or true






20. Returns boolean true or boolean false






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






22. Returns year value out of the date passed






23. Returns everything after the first occurrence of str2






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






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






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






27. Returns October or 10 ?






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






29. Converts string to upper case






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






31. Returns today's date






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






33. Returns length of passed string






34. Returns substring from start position to end of string






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


36. Selects all book elements with an attribute isbn=






37. Sibling nodes all have the same ______






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






39. Returns timezone value from time passed






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






41. Converts string to lower case






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






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






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






45. Returns true if str1 starts with str2






46. Selects parent of current node






47. Selects all title AND price elements in the entire document






48. Selects current node






49. Returns everything before the first occurrence of str2






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