100% satisfaction guarantee Immediately available after payment Both online and in PDF No strings attached
logo-home
CSE 3901 - Midterm 2 Questions with 100% Actual correct answers | verified | latest update | Graded A+ | Already Passed | Complete Solution $7.99   Add to cart

Exam (elaborations)

CSE 3901 - Midterm 2 Questions with 100% Actual correct answers | verified | latest update | Graded A+ | Already Passed | Complete Solution

 3 views  0 purchase
  • Course
  • Institution

CSE 3901 - Midterm 2 Questions with 100% Actual correct answers | verified | latest update | Graded A+ | Already Passed | Complete Solution

Preview 2 out of 6  pages

  • June 26, 2024
  • 6
  • 2023/2024
  • Exam (elaborations)
  • Questions & answers
avatar-seller
CSE 3901 - Midterm 2
"34", true, false - ANS-javascript: what are the results of the following statements?
3 + "4"
3 == "3"
3 === "3"

"make" in myCar - ANS-javascript: var myCar = {make: "Ford",
year: 2006, state: "OH"}
write a statement to check of the property make exists in myCar

"NKR4621996", 2340 - ANS-javascript:
function report() {
return this.plate + this.year;
}
myCar = {plate: "NKR462", year: 1996};
yourCar = {plate: 340, year: 2000};
myCar.register = report;
yourCar.info = report;
myCar.register();
yourCar.info();

what is the output of myCar.regiter() and yourCar.info()?

25 - ANS-javascript: what is the result of the last function call?
function apply(x, a) {
return x(a);
}
function square(i) {
return i*i;
}
apply(square, 5)

document.writeln("<ol><li>");
document.writeln(
roster.filter(function (e, i, a) {
return e.gpa > 3.0;
}).sort(function (a, b) {
return b.midterm - a.midterm;
}).map(function (e, i, a) {
return e.name + " ("
+ e.midterm + ")";

, }).join("</li><li>"));
document.writeln("</li></ol>"); - ANS-Given: roster of students (an array)
var roster =
[ { name: "Mary Smith",
gpa: 3.7,
midterm: 80 },
{ name: "Xi Chen",
gpa: 3.5,
midterm: 85 },
{ name: "Alessandro Reis",
gpa: 3.2,
midterm: 74 },
{ name: "Erin Senda",
gpa: 3.0,
midterm: 68 } ];

Write a JavaScript program that outputs
an html list of students (name and
midterm score) whose gpa is > 3.0, such
that the list is sorted by midterm score

1.Xi Chen (85)
2.Mary Smith (80)
3.Alessandro Reis (74)

Dr. Turing - ANS-javascript: what does prof() return?
function grantDegree(a) {
var prefix = "Dr. ";
function add() {
return prefix + a;
}
return add;
}
var prof = grantDegree("Turing");
prof()

f is ["beluga", "blue", "killer"]
n is [300, 5, 90] - ANS-javascript: what is n and f?
var n = [5, 300, 90];
var f = ["blue", "beluga","killer"];
n.sort();
f.sort();

false - ANS-javascript:

The benefits of buying summaries with Stuvia:

Guaranteed quality through customer reviews

Guaranteed quality through customer reviews

Stuvia customers have reviewed more than 700,000 summaries. This how you know that you are buying the best documents.

Quick and easy check-out

Quick and easy check-out

You can quickly pay through credit card or Stuvia-credit for the summaries. There is no membership needed.

Focus on what matters

Focus on what matters

Your fellow students write the study notes themselves, which is why the documents are always reliable and up-to-date. This ensures you quickly get to the core!

Frequently asked questions

What do I get when I buy this document?

You get a PDF, available immediately after your purchase. The purchased document is accessible anytime, anywhere and indefinitely through your profile.

Satisfaction guarantee: how does it work?

Our satisfaction guarantee ensures that you always find a study document that suits you well. You fill out a form, and our customer service team takes care of the rest.

Who am I buying these notes from?

Stuvia is a marketplace, so you are not buying this document from us, but from seller Hkane. Stuvia facilitates payment to the seller.

Will I be stuck with a subscription?

No, you only buy these notes for $7.99. You're not tied to anything after your purchase.

Can Stuvia be trusted?

4.6 stars on Google & Trustpilot (+1000 reviews)

80189 documents were sold in the last 30 days

Founded in 2010, the go-to place to buy study notes for 14 years now

Start selling
$7.99
  • (0)
  Add to cart