100% found this document useful (1 vote)
411 views20 pages

CSCI571 Final Spring2022

Information Retrieval Exam Paper Spring 2022

Uploaded by

The Mad Titan
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
100% found this document useful (1 vote)
411 views20 pages

CSCI571 Final Spring2022

Information Retrieval Exam Paper Spring 2022

Uploaded by

The Mad Titan
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 20

4/27/22, 10:18 AM : Quiz Submissions - CS571 Spring 2022: Web Technologies Exam 2 - CSCI571 - 20221 - Web Technologies - USC

ies - USC Viterbi School of En…

Quiz Submissions - CS571 Spring 2022: Web Technologies Exam 2


Ruchit Bhardwaj (username: [email protected])

Attempt 1
Written: Apr 26, 2022 6:00 PM - Apr 26, 2022 6:40 PM
Submission View
Released: Apr 27, 2022 8:00 AM

JQuery Questions

Question 1 2 / 2 points
[2 points] Which of the following objects are abstracted by jQuery? Select all that apply.

DOM

JSON

XMLHttpRequest

Question 2 2 / 2 points
[2 points] What is the jQuery code that corresponds to the following DOM code?

var kids = n.childnodes;

kids = $("body").childnodes();

kids = $("body").children();

Question 3 2 / 2 points
[2 points] What type of selector is the ‘element’ selector, as in the following example:

$("div").css("border", "9px solid red" );

Basic selector

Basic Border selector

Basic Filter selector

Question 4 2 / 2 points
[2 points] Which of the following selectors are part of the Basic Filter selectors category?
Select all that apply.

https://courses.uscden.net/d2l/lms/quizzing/user/quiz_submissions_attempt.d2l?isprv=&qi=48987&ai=138896&isInPopup=0&cfql=0&fromQB=0&fromSubm… 1/20
4/27/22, 10:18 AM : Quiz Submissions - CS571 Spring 2022: Web Technologies Exam 2 - CSCI571 - 20221 - Web Technologies - USC Viterbi School of En…
:first

:header selector

:multiple selector

Question 5 2 / 2 points
[2 points] Which of the following selectors are part of the Basic selectors category? Select all
that apply.

Form

Element

Multiple

Question 6 2 / 2 points
[2 points] Consider the following CSS, jQuery and HTML. Will the image properties be
changed by the jQuery code?

.bigImg {
border: 1px solid black;
}

$("img.userIcon" ).load(function() {
if ( $( this ).height() > 100 {
$( this ).addClass("bigImg");
}
});

<body>
<img src="/uploads/media/default/0001/01/47951.jpeg" width="500"
height="600">
</body>

True

False

REST Questions

Question 7 1.5 / 2 points

[2 points] When comparing REST with other Web Services approaches, what statements are
TRUE? Select all that apply.

A) REST is popular because of its simplicity.


https://courses.uscden.net/d2l/lms/quizzing/user/quiz_submissions_attempt.d2l?isprv=&qi=48987&ai=138896&isInPopup=0&cfql=0&fromQB=0&fromSubm… 2/20
4/27/22, 10:18 AM : Quiz Submissions - CS571 Spring 2022: Web Technologies Exam 2 - CSCI571 - 20221 - Web Technologies - USC Viterbi School of En…

B) Simple Object Access Protocol is simpler than XML-RPC and JSON-RPC.

C) XML-RPC protocol and REST use HTTP as a transport.

D) SOAP APIs are very robust

Question 8 1 / 1 point

[1 Point] In REST Web Services, except in very specific cases, HTML is not acceptable as a
response format.

A) True

B) False

Question 9 1 / 1 point

[1 Point] In REST Web Services, POST and PUT may be used for "updating" items.

A) True

B) False

Question 10 1 / 1 point

[1 Point] In REST Web Services, select the best URI.

A) http://www.parts-depot.com/parts/00345

B) http://www.parts-depot.com/parts?part-id=00345

Question 11 1 / 1 point

[1 Point] In REST Web Services, POST requests should be used for creation of data.

A) True

B) False

HTML5 Questions

Question 12 2 / 2 points
[2 points] Which of the following are removed elements in HTML5? Select all that apply.

embed

center

https://courses.uscden.net/d2l/lms/quizzing/user/quiz_submissions_attempt.d2l?isprv=&qi=48987&ai=138896&isInPopup=0&cfql=0&fromQB=0&fromSubm… 3/20
4/27/22, 10:18 AM : Quiz Submissions - CS571 Spring 2022: Web Technologies Exam 2 - CSCI571 - 20221 - Web Technologies - USC Viterbi School of En…

footer

font

frameset

Question 13 2 / 2 points

[2 Points] Consider the following code from W3Schools.

<!DOCTYPE html>
<html>
<body>
<canvas id="myCanvas" width="300" height="150" style="border:1px
solid #d3d3d3;">
Your browser does not support the HTML5 canvas tag.</canvas>

<script>
var c = document.getElementById("myCanvas");
var ctx = c.getContext("2d");
ctx.beginPath();
ctx.moveTo(20, 20);
ctx.lineTo(20, 70);
ctx.lineTo(70, 70);
ctx.lineTo(70, 20);
ctx.lineTo(20, 20);
ctx.strokeStyle = "red";
ctx.stroke();
</script>
</body>
</html>

What gets displayed?

A red rectangle filled with white

A red rectangle filled with black

A red square filled with black

A red square filled with white

1St Half Course Questions

Question 14 2 / 2 points

[2 Points] Select all statements that are true of JSON. Select all that apply.

https://courses.uscden.net/d2l/lms/quizzing/user/quiz_submissions_attempt.d2l?isprv=&qi=48987&ai=138896&isInPopup=0&cfql=0&fromQB=0&fromSubm… 4/20
4/27/22, 10:18 AM : Quiz Submissions - CS571 Spring 2022: Web Technologies Exam 2 - CSCI571 - 20221 - Web Technologies - USC Viterbi School of En…

JSON data can easily be sent between computers, and used by any programming
language

You can receive pure text from a server and use it as a JavaScript object

The JSON format is syntactically similar to the code for creating JavaScript objects

JavaScript has a built in function for converting JSON strings into JavaScript objects

JavaScript has a built in function for converting a JavaScript object into a JSON string

JavaScript has a built in function for converting an XML object into a JSON string

Question 15 2 / 2 points

[2 Points] Consider the following Python code:

>>> x = "awesome"
>>> def myfunc():
>>> global x
>>> x = "fantastic"
>>> myfunc()
>>> print("Python is " + x)

What gets printed?

A) Python is fantastic

B) Python is awesome

View Feedback

Question 16 2 / 2 points

[2 Points] What is the purpose of the HSTS header?

A security feature that lets a web site tell browsers that it should only be
communicated with using HTTPS

A performance feature that improves caching of web pages

A feature used to indicate whether or not a browser should be allowed to render a


page in a <frame> or <iframe>.

https://courses.uscden.net/d2l/lms/quizzing/user/quiz_submissions_attempt.d2l?isprv=&qi=48987&ai=138896&isInPopup=0&cfql=0&fromQB=0&fromSubm… 5/20
4/27/22, 10:18 AM : Quiz Submissions - CS571 Spring 2022: Web Technologies Exam 2 - CSCI571 - 20221 - Web Technologies - USC Viterbi School of En…

Question 17 1 / 2 points

[2 Points] Consider the following example from w3schools.com.

<!DOCTYPE html>
<html>
<head>
<style>
.flex-container {
display: flex;
flex-direction: column;
background-color: DodgerBlue;
}

.flex-container > div {


background-color: #f1f1f1;
width: 100px;
margin: 10px;
text-align: center;
line-height: 75px;
font-size: 30px;
}
</style>
</head>
<body>

<h1>Hello Flex!</h1>

<div class="flex-container">
<div>1</div>
<div>2</div>
<div>3</div>
</div>

</body>
</html>

Select all the actual behaviors of this code. Select all that apply.

Boxes are stacked horizontally

All grey boxes are "squares"

All numbers, 1 through 3, are flush left

Number "1" is centered on grey box

View Feedback

https://courses.uscden.net/d2l/lms/quizzing/user/quiz_submissions_attempt.d2l?isprv=&qi=48987&ai=138896&isInPopup=0&cfql=0&fromQB=0&fromSubm… 6/20
4/27/22, 10:18 AM : Quiz Submissions - CS571 Spring 2022: Web Technologies Exam 2 - CSCI571 - 20221 - Web Technologies - USC Viterbi School of En…

Question 18 2 / 2 points

[2 Points] Consider the following example from w3schools.com.

<!DOCTYPE html>
<html>
<body>

<p>Click the button to create a Text Node.</p>

<button onclick="myFunction()">Try it</button>

<script>
function myFunction() {
var t = document.createTextNode("Hello World");
document.body.appendChild(t);
}
</script>

</body>
</html>

What happens when one clicks the "Try it" button?

Hello World is printed above the Try It button

Hello World is printed next to the Try It button

Hello World is printed below the Try It button

Question 19 2 / 2 points

[2 Points] Consider the following example from w3schools.com.

<!DOCTYPE html>
<html>
<body>

<p id="demo"></p>

<script>
const myObj = {name:"John", age:30, city:"New York"};
document.getElementById("demo").innerHTML = myObj.name;
</script>

</body>
</html>

What is displayed in the browser window?

John
https://courses.uscden.net/d2l/lms/quizzing/user/quiz_submissions_attempt.d2l?isprv=&qi=48987&ai=138896&isInPopup=0&cfql=0&fromQB=0&fromSubm… 7/20
4/27/22, 10:18 AM : Quiz Submissions - CS571 Spring 2022: Web Technologies Exam 2 - CSCI571 - 20221 - Web Technologies - USC Viterbi School of En…

John, 30, New York

New York

No string is displayed

Question 20 1.333 / 2 points


[2 Points] Select characters that to appear in HTML need to be represented with numeric or entity
references. Select all that apply.

> (greater than sign)

$ (dollar sign)

< (less than sign)

Frameworks Questions

Question 21 2 / 2 points
[2 points] Which of the following are true of ReactJS? Select all that apply.

Components are building blocks of React apps

ReactJS can be used to build Android and iOS apps

Question 22 0 / 2 points
[2 points] Which of the following are true of Node.js? Select all that apply.

Is bundled with 'npm'

Provides POSIX functions for File I/O

Includes modules that handle IP

Question 23 2 / 2 points

[2 Points] Consider the following Express code.

var express = require('express');


var cors = require('cors');
var app = express();

<< Missing code >>

app.get('/products/:id', function (req, res, next) {

https://courses.uscden.net/d2l/lms/quizzing/user/quiz_submissions_attempt.d2l?isprv=&qi=48987&ai=138896&isInPopup=0&cfql=0&fromQB=0&fromSubm… 8/20
4/27/22, 10:18 AM : Quiz Submissions - CS571 Spring 2022: Web Technologies Exam 2 - CSCI571 - 20221 - Web Technologies - USC Viterbi School of En…

res.json({msg: 'This is CORS-enabled for all origins!'})


});

app.listen(80, function () {
console.log('CORS-enabled web server listening on port 80')
});

What code is missing to use CORS?

cors.use(cors());

app.send(cors());

app.use(cors());

app.load(cors());

Question 24 2 / 2 points
[2 points] Select which of the following is true of React. Select all that apply.

Is a framework like Angular

Does not implement MVC

Question 25 2 / 2 points

[2 Points] Consider the following Express code.

var express = require('express');


var app = express();

//respond with "hello world" when a GET request is made to the


homepage
app.get('/', function (req, res) {
<< missing code>>
});

//server listening on port 3000


app.listen(3000);

What code is missing to display "Hello Word" in a browser?

res.end('Hello World')

res.open(); res.send('Hello World')

res.send('Hello World')

https://courses.uscden.net/d2l/lms/quizzing/user/quiz_submissions_attempt.d2l?isprv=&qi=48987&ai=138896&isInPopup=0&cfql=0&fromQB=0&fromSubm… 9/20
4/27/22, 10:18 AM : Quiz Submissions - CS571 Spring 2022: Web Technologies Exam 2 - CSCI571 - 20221 - Web Technologies - USC Viterbi School of En…

req.send('Hello World')

Serverless Questions

Question 26 2 / 2 points

[2 Points] Consider the following code snippet.

/**
* Responds to any HTTP request.
*
* @param {!express:Request} req HTTP request context.
* @param {!express:Response} res HTTP response context.
*/
exports.helloWorld = (req, res) => {
let message = req.query.message || req.body.message ||
'Hello World!';
res.status(200).send(message);
};

What is it?

A Google Cloud Function

An AWS Lambda function

Question 27 2 / 2 points
[2 points] Which of the following are true of AWS Lambda? Select all that apply.

Functions can be triggered by events

Cost of idle time is small

Functions and classes are unit of deployment

Does not have servers behind it

Question 28 2 / 2 points
[2 points] Select the components of a Microservice. Select all that apply.

a Container

a REST endpoint

a FaaS

a data store

https://courses.uscden.net/d2l/lms/quizzing/user/quiz_submissions_attempt.d2l?isprv=&qi=48987&ai=138896&isInPopup=0&cfql=0&fromQB=0&fromSub… 10/20
4/27/22, 10:18 AM : Quiz Submissions - CS571 Spring 2022: Web Technologies Exam 2 - CSCI571 - 20221 - Web Technologies - USC Viterbi School of En…

Question 29 2 / 2 points

[2 Points] Consider the following code snippet.

exports.handler = async (event, context) => {


let body;
let statusCode = '200';
const headers = {
'Content-Type': 'application/json',
};

try {
switch (event.httpMethod) {
case 'DELETE':
body = await
dynamo.delete(JSON.parse(event.body)).promise();
break;
case 'GET':
body = await dynamo.scan({ TableName:
event.queryStringParameters.TableName }).promise();
break;
case 'POST':
body = await
dynamo.put(JSON.parse(event.body)).promise();
break;
case 'PUT':
body = await
dynamo.update(JSON.parse(event.body)).promise();
break;
default:
throw new Error(`Unsupported method
"${event.httpMethod}"`);
}
} catch (err) {
statusCode = '400';
body = err.message;
} finally {
body = JSON.stringify(body);
}

return {
statusCode,
body,
headers,
};
};

What is it?

An AWS Lambda function

https://courses.uscden.net/d2l/lms/quizzing/user/quiz_submissions_attempt.d2l?isprv=&qi=48987&ai=138896&isInPopup=0&cfql=0&fromQB=0&fromSub… 11/20
4/27/22, 10:18 AM : Quiz Submissions - CS571 Spring 2022: Web Technologies Exam 2 - CSCI571 - 20221 - Web Technologies - USC Viterbi School of En…

A Google Cloud Function

High-Performance Websites Questions

Question 30 0.8 / 2 points

[2 Points] Select all reasons why you should make JavaScript and CSS files external. Select all
that apply.

Helps "brand" a site

Both can be cached

Help compression

Helps minification

Both can be shared on multiple HTML files

Question 31 2 / 2 points
[2 points] Select the types of files should be compressed to improve web site performance.
Select all that apply.

JPG files

Minified JavaScript files

PDF files

XML files

Text files

JSONP files

Cookies and Privacy Questions

Question 32 1.2 / 2 points

[2 points] Select all ways to "opt out" of cookies. Select all that apply.

Select "do not track" in browser

Download opt-out cookie

Change account Preferences on registration sites

Install browser extensions


https://courses.uscden.net/d2l/lms/quizzing/user/quiz_submissions_attempt.d2l?isprv=&qi=48987&ai=138896&isInPopup=0&cfql=0&fromQB=0&fromSub… 12/20
4/27/22, 10:18 AM : Quiz Submissions - CS571 Spring 2022: Web Technologies Exam 2 - CSCI571 - 20221 - Web Technologies - USC Viterbi School of En…

Use cookie management tool in browser

Question 33 1.714 / 2 points

[2 points] Which of the following are different types of cookies? Select all that apply.

Conversion-tracking cookies

Non-secure cookies

Client-side cookies

Server-side cookies

Persistent cookies

Fourth-party cookies

Non-secure cookies

Question 34 2 / 2 points

[2 points] Select all true properties of cookies. Select all that apply.

Secure cookies are erased when the user closes the browser

Http Only cookies are invisible to JavaScript

Persistent cookies may not be deleted

Cookies can track your IP address

Cookies can store any information you provide to a site

Web Security Questions

Question 35 2 / 2 points
[2 points] Which of the following are authentication attacks?

Insufficient Authentication

Weak Password Recovery Validation

Brute Force Attacks

Cross-Site Request Forgery (CSRF)

Content Spoofing

https://courses.uscden.net/d2l/lms/quizzing/user/quiz_submissions_attempt.d2l?isprv=&qi=48987&ai=138896&isInPopup=0&cfql=0&fromQB=0&fromSub… 13/20
4/27/22, 10:18 AM : Quiz Submissions - CS571 Spring 2022: Web Technologies Exam 2 - CSCI571 - 20221 - Web Technologies - USC Viterbi School of En…

Question 36 2 / 2 points

[2 Points] Select all techniques used to bypass the same-origin policy. Select all that apply.

XMLHttpRequest

FRAME tag

The Dynamic Script Tag

CORS

Browser plugins

VIDEO tag

Browser extensions

JSONP

Question 37 2 / 2 points
[2 points] Which of the following are client-side attacks? Select all that apply.

Cross-Site Request Forgery (CSRF)

Cross-site scripting (XSS)

Insufficient Authentication

Clickjacking

Browser and Plugin vulnerability

Question 38 2 / 2 points
[2 points] Which of the following are Injection Attacks?

SQL Injection

Search Worms

Content Spoofing

JavaScript Hijacking

DDoS attack

Cross Site Request Forgery (CSRF)

https://courses.uscden.net/d2l/lms/quizzing/user/quiz_submissions_attempt.d2l?isprv=&qi=48987&ai=138896&isInPopup=0&cfql=0&fromQB=0&fromSub… 14/20
4/27/22, 10:18 AM : Quiz Submissions - CS571 Spring 2022: Web Technologies Exam 2 - CSCI571 - 20221 - Web Technologies - USC Viterbi School of En…

Question 39 2 / 2 points

[2 Points] A DDoS attack occurs when a system is overwhelmed with malicious electronic
traffic.

a) True

b) False

Ajax Questions

Question 40 2 / 2 points

[2 Points] Traditional web sites and Ajax web APPS, have different behavior. Select all that
apply.

A) In Ajax web apps, application is unavailable while an interaction is processing

B) In Traditional web sites, interface construction is mainly the responsibility of the


server

C) In Ajax web apps, interface is manipulated by client-side JavaScript

D) In Traditional web sites, user interaction via HTTP requests occur 'behind the
scenes'

Question 41 2 / 2 points
[2 points] What are some of the characteristics of Ajax applications? Select all that apply.

They have static icons

They have visual effects

They are single page

They present live content

Question 42 2 / 2 points

[2 points] Which property of XMLHttpRequest() will be populated with a JSON response?

respons2

responseText

responseXML

https://courses.uscden.net/d2l/lms/quizzing/user/quiz_submissions_attempt.d2l?isprv=&qi=48987&ai=138896&isInPopup=0&cfql=0&fromQB=0&fromSub… 15/20
4/27/22, 10:18 AM : Quiz Submissions - CS571 Spring 2022: Web Technologies Exam 2 - CSCI571 - 20221 - Web Technologies - USC Viterbi School of En…

Question 43 1 / 1 point
[1 Point] The web browser displays a visual progress indicator while the XMLHttpRequest is
being processed.

True
False

Question 44 0 / 1 point

[1 Point] Netscape 7 and Mozilla Firefox 1.0 were the first browsers to "clone"
XMLHttpRequest functionality from Internet Explorer.

A) True
B) False

Question 45 0 / 1 point

[1 Point] Images do not have cross-domain issues.

A) True
B) False

View Feedback

Question 46 1 / 1 point
[1 Point] Fonts on a web page may be requested across domains using CORS.

True

False

Question 47 0 / 1 point

[1 Point} To request CORS, with XMLHttpRequest, the client JavaScript must issue an
Origin header.

A) True
B) False

View Feedback

Question 48 1 / 1 point

[1 Point] During AJAX open(), what does it mean to pass in <false> to the third parameter and
why is it poor practice?

A) False means the request will be executed asynchronously. It is bad because the
https://courses.uscden.net/d2l/lms/quizzing/user/quiz_submissions_attempt.d2l?isprv=&qi=48987&ai=138896&isInPopup=0&cfql=0&fromQB=0&fromSub… 16/20
4/27/22, 10:18 AM : Quiz Submissions - CS571 Spring 2022: Web Technologies Exam 2 - CSCI571 - 20221 - Web Technologies - USC Viterbi School of En…

flow of the application gets disrupted and the order of code execution becomes
ambiguous

B) False means the request will be executed asynchronously. It is bad because it


breaks form validation

C) False means the request will be executed synchronously. It is bad because a time-
consuming synchronous request on the main thread will crash the browser.

D) False means the request will be executed synchronously. It is bad because a time-
consuming synchronous request on the main thread will degrade UX.

View Feedback

Question 49 1 / 1 point

[1 Point] What are solutions to the cross-domain issue for resources such as JavaScript of
JSON?

A) Use a server "proxy"

B) Use CORS, if available from the server side

C) Access exclusively resources in the same domain

D) All of the above

View Feedback

Question 50 1 / 1 point

[1 Point] What are the main differences between Ajax and the "classic" application model?

A) In classic model, the web server responds with CSS and HTML

B) In Ajax, the Ajax engine builds the HTML and CSS

C) In Ajax, the server sends XML or JSON data

D) All of the above

View Feedback
https://courses.uscden.net/d2l/lms/quizzing/user/quiz_submissions_attempt.d2l?isprv=&qi=48987&ai=138896&isInPopup=0&cfql=0&fromQB=0&fromSub… 17/20
4/27/22, 10:18 AM : Quiz Submissions - CS571 Spring 2022: Web Technologies Exam 2 - CSCI571 - 20221 - Web Technologies - USC Viterbi School of En…

Question 51 1 / 1 point

[1 Point] What variable is available to us inside the xhttp.onreadystatechange callback in


order to check the state of our request?

A) this.currentState

B) this.readyState

C) this.state

D) this.currentStatus

View Feedback

Question 52 1 / 1 point

[1 Point] Which of the following is not true about AJAX?

A) JQuery includes the same functionality as AJAX

B) AJAX can be performed on submission of a form by adding the onsubmit


parameter in the form tag

C) AJAX must be performed in your remote script

D) AJAX uses XMLHttpRequest to communicate with the server

Responsive Website Design (RWD) Questions

Question 53 1.5 / 2 points


[2 points] Select valid reasons why hosting a mobile.myconpany.com website is not
recommended. Select all that apply.

It hinders search engines

It requires redirect

Requires duplication of content

It is not approved by ICANN

Question 54 2 / 2 points
https://courses.uscden.net/d2l/lms/quizzing/user/quiz_submissions_attempt.d2l?isprv=&qi=48987&ai=138896&isInPopup=0&cfql=0&fromQB=0&fromSub… 18/20
4/27/22, 10:18 AM : Quiz Submissions - CS571 Spring 2022: Web Technologies Exam 2 - CSCI571 - 20221 - Web Technologies - USC Viterbi School of En…
[2 points] Select RWD usability guidelines on mobile devices.

use single or two columns

maximize text entry

change navigation

reduce amount of content

Question 55 2 / 2 points

[2 Points] The major difference between different versions of Bootstrap is the number of grid
tiers.

a) True

b) False

Question 56 2 / 2 points
[2 points] Consider the following media queries:

<link rel="stylesheet" media="only screen and (min-width:320px) and


(max-width: 760px)" href="css1.css">

<link rel="stylesheet" media="only screen and (min-width:761px) and


(max-width: 1100px)" href="css2.css">

What different device sizes they fail to support? Select all that apply.

Devices with small screens

Devices with large screens

Question 57 2 / 2 points
[4 points] Select which concepts are the basis of Responsive Website Design. Select all that
apply.

flexible images

fluid grids

CSS3 media queries

content reduction

Attempt Score:90.05 / 100 - 90.05 %


Overall Grade (highest attempt):90.05 / 100 - 90.05 %

https://courses.uscden.net/d2l/lms/quizzing/user/quiz_submissions_attempt.d2l?isprv=&qi=48987&ai=138896&isInPopup=0&cfql=0&fromQB=0&fromSub… 19/20
4/27/22, 10:18 AM : Quiz Submissions - CS571 Spring 2022: Web Technologies Exam 2 - CSCI571 - 20221 - Web Technologies - USC Viterbi School of En…

Done

https://courses.uscden.net/d2l/lms/quizzing/user/quiz_submissions_attempt.d2l?isprv=&qi=48987&ai=138896&isInPopup=0&cfql=0&fromQB=0&fromSub… 20/20

You might also like