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. every element and every attribute have just one _________






2. XPath is a major element in _______






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






4. Selects current node






5. Returns logically rounded integer






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






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






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






9. Returns true if str1 ends with str2






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






11. Returns minute value from time passed






12. Returns substring from start position to end of string






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






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






15. Returns false or true






16. Selects attributes






17. Converts string to upper case






18. Returns complete date/time






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






20. Selects all elements in the document






21. Returns everything before the first occurrence of str2






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






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






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






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






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






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






28. Returns second value from time passed






29. Returns true if str1 contains str2






30. Trims leading and trailing spaces






31. Returns timezone value from time passed






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






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






34. Selects all book elements with an attribute isbn=






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






36. Returns true if str1 starts with str2






37. Selects from the root node



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






39. Sibling nodes all have the same ______






40. Returns year value out of the date passed






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






42. Selects all the child nodes of the bookstore element






43. Returns today's date






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






45. Returns day value from date passed






46. Returns time right now






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






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






49. Converts value to a string






50. Returns n-length substring from start position