logo

Crowdly

Browser

Add to Chrome

Databases & Interfaces (COMP1044 UNMC) (SPM1 25-26)

Looking for Databases & Interfaces (COMP1044 UNMC) (SPM1 25-26) test answers and solutions? Browse our comprehensive collection of verified answers for Databases & Interfaces (COMP1044 UNMC) (SPM1 25-26) at moodle.nottingham.ac.uk.

Get instant access to accurate answers and detailed explanations for your course questions. Our community-driven platform helps students succeed!

Consider the following JavaScript code:

Javascript

console.log(a);

var a = 5;

What will be the output when this code is executed?

100%
0%
0%
0%
View this question

Which value of the type attribute on an <input> element causes modern browsers to display a built-in date picker?

0%
100%
0%
0%
View this question

Which of the following anomalies can occur in a poorly normalized database?

100%
0%
0%
0%
View this question

Consider the following SQL query, which is intended to find students who have marks higher than the student with ID = 10:

<SQL>

SELECT

Name

FROM

Student

WHERE

Marks > (SELECT Marks FROM Student WHERE ID = 10);

What potential issue could occur with this query?

83%
0%
0%
17%
View this question

Which attribute on an HTML element is most commonly used to run a JavaScript function when the element is clicked?

0%
0%
0%
100%
View this question

Consider the following SQL query, which is intended to return employees who are not managers:

<SQL>

SELECT *

FROM Employee

WHERE ID NOT IN (SELECT ManagerID FROM Employee);

What will happen if the ManagerID column contains NULL values?

0%
0%
100%
0%
View this question

Match each HTML tag with the function it performs.

View this question

Which of the following is a requirement of First Normal Form (1NF)?

0%
0%
100%
0%
View this question

Consider the following SQL query:

<SQL>

SELECT name

FROM Student

WHERE marks > ALL (SELECT marks FROM Student WHERE dept='CS');

What does the following SQL query return?

0%
100%
0%
0%
View this question

A developer wants to apply a blue border to the following input element:

HTML

<input type="text" id="name">

CSS

.name {

  border: 2px solid blue;

}

However, the border is not displayed. What is the most likely reason?

83%
0%
17%
0%
View this question

Want instant access to all verified answers on moodle.nottingham.ac.uk?

Get Unlimited Answers To Exam Questions - Install Crowdly Extension Now!

Browser

Add to Chrome