Written by students who passed Immediately available after payment Read online or as PDF Wrong document? Swap it for free 4.6 TrustPilot
logo-home
Document preview thumbnail
Preview 4 out of 109 pages
Exam (elaborations)

WGU C427 OBJECTIVE ASSESSMENT FINAL EXAM NEWEST 2025/2026 NEWEST ACTUAL EXAM WITH COMPLETE QUESTIONS AND VERIFIED ANSWERS |ALREADY GRADED A+|

Document preview thumbnail
Preview 4 out of 109 pages

WGU C427 OBJECTIVE ASSESSMENT FINAL EXAM NEWEST 2025/2026 NEWEST ACTUAL EXAM WITH COMPLETE QUESTIONS AND VERIFIED ANSWERS |ALREADY GRADED A+|

Content preview

Page |1


WGU C427 OBJECTIVE ASSESSMENT FINAL EXAM NEWEST
2025/2026 NEWEST ACTUAL EXAM WITH COMPLETE
QUESTIONS AND VERIFIED ANSWERS |ALREADY GRADED
A+|

Write an SQL query using the LOWER() function to convert the
BestMove column to lowercase from the Avatar table where ID is
3. - ANSWER-SELECT LOWER(BestMove)

FROM Avatar

WHERE ID = 3;



Write an SQL query using the SUBSTRING() function to extract
the substring from the BestMove column starting at position 7 with
length 6 from the Avatar table where ID is 4. - ANSWER-SELECT
SUBSTRING(BestMove, 7, 6)

FROM Avatar

WHERE ID = 4;



Write an SQL query using the REPLACE() function to replace 'Kn'
with 'Fr' in the Name column from the Avatar table where ID is 2. -
ANSWER-SELECT REPLACE(Name, 'Kn', 'Fr')

, Page |2


FROM Avatar

WHERE ID = 2;



List common date and time functions in SQL. - ANSWER-
CURDATE(): Returns the current date in 'YYYY-MM-DD' format.
CURTIME(): Returns the current time in 'HH:MM' format. NOW():
Returns the current date and time in 'YYYY-MM-DD HH:MM'
format. DATE(expr): Extracts the date from a date or datetime
expression. TIME(expr): Extracts the time from a date or datetime
expression. DAY(d): Returns the day from date d. MONTH(d):
Returns the month from date d. YEAR(d): Returns the year from
date d. HOUR(t): Returns the hour from time t. MINUTE(t):
Returns the minute from time t. SECOND(t): Returns the second
from time t. DATEDIFF(expr1, expr2): Returns expr1 - expr2 in
number of days. TIMEDIFF(expr1, expr2): Returns expr1 - expr2
in time values.



Write an SQL query using the YEAR() and MONTH() functions to
select movies released after 2017 or in November from the Movie
table. - ANSWER-SELECT *

FROM Movie

, Page |3


WHERE YEAR(ReleaseDate) > 2017 OR MONTH(ReleaseDate)
= 11;



Write an SQL query using the TIME() function to extract the time
from the Due column from the Assignment table where ID is 2. -
ANSWER-SELECT TIME(Due)

FROM Assignment

WHERE ID = 2;



Write an SQL query using the DAY() function to extract the day
from the Due column from the Assignment table where ID is 4. -
ANSWER-SELECT DAY(Due)

FROM Assignment

WHERE ID = 4;



Write an SQL query using the HOUR() and MINUTE() functions to
sum the hour and minute from the Assigned column from the
Assignment table where ID is 2. - ANSWER-SELECT
HOUR(Assigned) + MINUTE(Assigned)

FROM Assignment

, Page |4


WHERE ID = 2;



Write an SQL query using the DATEDIFF() function to find the
difference in days between Due and Assigned columns from the
Assignment table where ID is 1. - ANSWER-SELECT
DATEDIFF(Due, Assigned)

FROM Assignment

WHERE ID = 1;



Write an SQL query using the TIMEDIFF() function to find the time
difference between Due and Assigned columns from the
Assignment table where ID is 3. - ANSWER-SELECT
TIMEDIFF(Due, Assigned)

FROM Assignment

WHERE ID = 3;



What are aggregate functions in SQL? - ANSWER-Aggregate
functions process values from a set of rows and return a summary
value. Common aggregate functions include COUNT(), MIN(),
MAX(), SUM(), and AVG.

Document information

Uploaded on
October 9, 2025
Number of pages
109
Written in
2025/2026
Type
Exam (elaborations)
Contains
Questions & answers
$25.99

Wrong document? Swap it for free Within 14 days of purchase and before downloading, you can choose a different document. You can simply spend the amount again.
Written by students who passed
Immediately available after payment
Read online or as PDF

Seller avatar
Reputation scores are based on the amount of documents a seller has sold for a fee and the reviews they have received for those documents. There are three levels: Bronze, Silver and Gold. The better the reputation, the more your can rely on the quality of the sellers work.
NursingPal
4.8
(4)
Sold
18
Followers
1
Items
1384
Last sold
1 month ago



Why students choose Stuvia

Created by fellow students, verified by reviews

Quality you can trust: written by students who passed their tests and reviewed by others who've used these notes.

Didn't get what you expected? Choose another document

No worries! You can instantly pick a different document that better fits what you're looking for.

Pay as you like, start learning right away

No subscription, no commitments. Pay the way you're used to via credit card and download your PDF document instantly.

Student with book image

“Bought, downloaded, and aced it. It really can be that simple.”

Alisha Student

Working on your references?

Create accurate citations in APA, MLA and Harvard with our free citation generator.

Working on your references?

Frequently asked questions