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. Converts string to lower case






2. Returns minute value from time passed






3. Returns next highest integer






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






5. Selects all book elements with an attribute isbn=






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






7. Returns everything before the first occurrence of str2






8. XPath is a major element in _______






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






10. ________ allow more specific selections within the XPath






11. Returns length of current node string






12. Returns second value from time passed






13. Returns day value from date passed






14. Returns true if str1 starts with str2






15. Selects from the root node



16. Returns true if str1 contains str2






17. Concatenates strings together with separator between each string






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






19. Converts string to upper case






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






21. Selects attributes






22. Returns false or true






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






24. Returns hour value from time passed






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






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






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






28. Returns true if str1 ends with str2






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






30. Returns substring from start position to end of string






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






32. Selects parent of current node






33. Returns month value out of date passed






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






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






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






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






38. Converts value to a string






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






40. Returns true if str2 appears anywhere inside str1






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






42. XPath contains a library of _________






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






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






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






46. Returns today's date






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






48. Returns everything after the first occurrence of str2






49. Converts string number to numeric value






50. every element and every attribute have just one _________