Digital-Logic-Design
October 15, 2023Software-Engineering
October 15, 2023Web-Technologies
Question 1 |
Consider the following XML DTD describing course information in a university:
<!ELEMENT Univ (Course+, Prof+)> <!ELEMENT Course (Title, Eval*)> <!ATTLIST Course Number ID #REQUIRED Instructor IDREF #IMPLIED> <!ELEMENT Title (#PCDATA)> <!ELEMENT Eval (#PCDATA)> <!ATTLIST Eval Score CDATA #REQUIRED> <!ELEMENT Prof EMPTY> <!ATTLIST Prof Name ID #REQUIRED Teaches IDREF #IMPLIED>
What is returned by the following XQuery?
let $as := //@Score for $c in /Univ/Course[Eval] let $cs := $c/Eval?@Score where min($cs) > avg($as) return $c
The professor with the lowest course evaluation | |
Professors who have all their course evaluations above the university average | |
The course with the lowest evaluation | |
Courses with all evaluations above the university average |
Question 1 Explanation:
Note: Out of syllabus.
Correct Answer: C
Question 1 Explanation:
Note: Out of syllabus.
Subscribe
Login
0 Comments