-
Updated
Feb 9, 2021 - Shell
assessment
Here are 241 public repositories matching this topic...
Description: as discussed in Feb 16 TOC meeting (TBD toc issue), take a look at incubated/graduated projects and check to what degree projects have documented policies for users to report security vulnerabilities and how known vulnerabilities are communicated
Impact: support TOC in evaluating proposed criteria to validate requirement which is already part of CII badge requirement
Scope: tak
-
Updated
Oct 22, 2020 - Shell
-
Updated
Feb 18, 2021 - Smalltalk
-
Updated
Feb 18, 2021 - XSLT
Now that we've moved PrairieLib back into the monorepo, we should use direct requires. That is, everywhere that we do this: https://github.com/PrairieLearn/PrairieLearn/blob/89d265461da214d773b722b5e0465e00396f52b1/lib/question.js#L20 we should change it to:
const sqldb = require('../prairielib/sql-db');
and similarly for any require with @prairielib.
This would be a nice function to have, instead of having to rewrite it each time I write a question that needs it.
u is a scalar multiple of v if there is a scalar k such that u = k*v. You could find this k by computing the ratio u_i / v_i for each non-zero component i, then check that the ratios are all equal. This should work similarly to isclose, allowing given relative and a
Read-only submission
A student should be able to get an anonymised link of their submission so that they could share it (e.g. on social network). The view would be a readonly view with the feedback of the submission still visible. The link should only contain the submission id.
There should be an option in the task conf to allow or not this feature on a par-task basis.
If an admin follow such a link, he should be r
-
Updated
Feb 18, 2021 - Ruby
-
Updated
Feb 18, 2021 - Java
-
Updated
Jun 8, 2016 - JavaScript
-
Updated
Jan 21, 2021 - Shell
-
Updated
Oct 6, 2017 - Shell
-
Updated
Dec 28, 2018
-
Updated
May 25, 2016 - Python
-
Updated
Jul 13, 2020 - Python
-
Updated
Feb 3, 2021 - Python
-
Updated
Feb 12, 2021 - PHP
-
Updated
Apr 13, 2018 - JavaScript
-
Updated
Dec 19, 2019 - Python
-
Updated
Dec 28, 2020 - Objective-C
-
Updated
Feb 18, 2021 - Python
-
Updated
Jan 18, 2021 - Jupyter Notebook
-
Updated
Feb 12, 2021 - R
-
Updated
Feb 17, 2021 - Shell
Improve this page
Add a description, image, and links to the assessment topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the assessment topic, visit your repo's landing page and select "manage topics."
Q34. Which code snippet demonstrates encapsulation?
class Cow extends Animal {
private $milk;
}
class Cow {
public $milk;
}
class Cow {
public $milk;