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 logically rounded integer






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






3. Returns true if str1 contains str2






4. Selects parent of current node






5. Returns hour value from time passed






6. Selects all elements in the document






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






8. Returns October or 10 ?






9. Selects all title elements which have any attribute






10. Selects current node






11. Returns n-length substring from start position






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






13. Returns month value out of date passed






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






15. Selects all book elements with an attribute isbn=






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






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






18. Returns complete date/time






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






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






21. Returns length of passed string






22. Returns everything after the first occurrence of str2






23. XPath uses ____________ to navigate in XML documents - selecting nodes or node-sets






24. Returns substring from start position to end of string






25. Returns next highest integer






26. Returns 2008






27. Converts string number to numeric value






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






29. Returns today's date






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






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






32. Returns next lowest integer






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






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






35. Returns boolean true or boolean false






36. Returns time right now






37. Returns false or true






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






39. Trims leading and trailing spaces






40. Returns true if str2 appears anywhere inside str1






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






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






43. XPath contains a library of _________






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






45. Returns minute value from time passed






46. ________ allow more specific selections within the XPath






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






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






49. Returns timezone value from time passed






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