To answer a question, select or type the correct response(s) and click Submit Answer. Once you have submitted answers for all of the questions, review your personalized assessment results.

To begin your self assessment, please provide your information.
Select the correct answer and click Submit Answer.
Your instructor asks you to open the Demographics page unframed. How would you do this?
Check the correct answers and click Submit Answer. Check all that apply.
You are now viewing the unframed general demographics page, and your instructor asks you to view the unrendered code. How do you do this? (Select all that apply)
Drag the items into the correct sequence and click Submit Answer.
Put the following lines of code in the correct order.
Check the correct answers and click Submit Answer. Check all that apply.
You have completed your first custom student page, and now need a link to it. How do you add a link to the left navigation menu? (Select all that apply)
Drag each tile on the right on top of its match on the left until you complete each match, then click Submit Answer.
Match each piece of code to its language.
HTML
CSS
JavaScript
PowerSchool code
<div class="box-round"></div>
.box-round {margin: 10px auto;}
var hasRendered = false;
~[if.~[x:studsinset]>0]
Select the correct answer and click Submit Answer.
You are asked to create a customization that will track service learning hours. What type of table would work best to record the hours each time a student performs community service?
Drag the items into the correct sequence and click Submit Answer.
Assuming your new table is called U_SERVICE_HOURS, put the following lines of SQL into the correct order to return all the service hours for the current student:
Select the correct answer and click Submit Answer.
What would the following query return?
SELECT lastfirst
FROM students
WHERE enroll_status = 0
ORDER BY grade_level desc
Select the correct answer and click Submit Answer.
You write the following query to return the number of active students in each grade level. What must be added
to the SELECT statement to make this work?
SELECT grade_level
FROM students
WHERE enroll_status = 0
GROUP BY grade_level
Select the correct answer and click Submit Answer.
Like JavaScript, SQL is case sensitive and all Oracle keywords must be in uppercase.
Select the correct answer and click Submit Answer.
You created a one-to-one table named U_StudentDemoInfo in an extension group named U_MyTables. Complete the following
input tag for a field named shoesize:
<input type="text" name="???" size="4">
Select the correct answer and click Submit Answer.
If you wanted to use the same field in a tlist_sql query, complete the following query:
SELECT s.lastfirst, sd.shoesize
FROM Students s
INNER JOIN ??? sd
ON s.dcid=sd.studentsdcid
Select the correct answer and click Submit Answer.
What will the results look like for the following tlist_sql code?
~[tlist_sql;
SELECT lastfirst, dob, grade_level
FROM students
WHERE last_name='Dailey']
~(dob) ~(grade_level) ~(lastfirst)
[/tlist_sql]
Check the correct answers and click Submit Answer. Check all that apply.
Select the row template(s) that would return all results in comma-separated rows for the following query:
SELECT first_name, last_name, dob
FROM students
Select the correct answer and click Submit Answer.
Which statement in a table tag results in a table that can be sorted by columns?
Select the correct answer and click Submit Answer.
What does PowerSchool use to indicate a jQuery statement?
Select the correct answer and click Submit Answer.
Consider the following code:
<div id="someStuff">
<ul>
<li>Item 1</li>
<li>Item 2</li>
<li>Item 3</li>
</ul>
</div>
What would $j('#someStuff').children select?
Drag the items into the correct sequence and click Submit Answer.
Put the following pieces of code in the correct order to create a valid for loop.
Select the correct answer and click Submit Answer.
Consider the following code:
var gradeLevel = '12';
var result = '';
if(gradeLevel = 9) {result = true} else{result = false}
What will be the final value of the variable 'result'?
Check the correct answers and click Submit Answer. Check all that apply.
Consider the following code:
<ul id="itemList">
<li>Item 2</li>
<li>Item 3</li>
<li>Item 4</li>
</ul>
Which of the following statements would insert Item 1 into the correct location? (select all that
apply)

Your assessment results are below. They are organized based on the different sections of this assessment.