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 true if str1 starts with str2






2. Returns true if str1 ends with str2






3. Selects all title elements which have any attribute






4. Converts value to a string






5. Sibling nodes all have the same ______






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






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






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






9. Returns boolean true or boolean false






10. Returns everything before the first occurrence of str2






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






12. Returns October or 10 ?






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






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






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






16. Returns true if str2 appears anywhere inside str1






17. Returns next lowest integer






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






19. Selects all elements in the document






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






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






22. Returns 2008






23. Converts string to upper case






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






25. Returns substring from start position to end of string






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






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






28. Returns logically rounded integer






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






30. Returns length of passed string






31. Returns today's date






32. every element and every attribute have just one _________






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






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






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






36. Returns complete date/time






37. Concatenates strings together with separator between each string






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


39. Returns next highest integer






40. Selects all book elements with an attribute isbn=






41. Returns everything after the first occurrence of str2






42. Returns time right now






43. Returns minute value from time passed






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






45. Returns length of current node string






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






47. Returns hour value from time passed






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






49. Selects all the child nodes of the bookstore element






50. Predicates work somewhat like _____________