Multiple Choice
What is the output of the following code?
Var scores = [92,68,83,95,91,65,77];
Var highScores = scores.filter(gradeA) ;
Function gradeA(value) {
Return value > 90;
}
A) [92,95,91]
B) [96,97,98]
C) [68,83,65,77]
D) [91,92,65,68,77,83]
Correct Answer:

Verified
Correct Answer:
Verified
Q25: Melissa, a computer science engineering student, is
Q26: Identify a true statement of array.some(callback [,thisArg])method.<br>A)
Q27: <br> Identify the letter of the choice
Q28: Gregor, a software developer, is developing a
Q29: A _,which employs the first-in-first-out (FIFO)principle in
Q31: The _ statement stops processing the commands
Q32: A(n)_ is a collection of values organized
Q33: Numeric data can be sorted by creating
Q34: <br> Identify the letter of the choice
Q35: What is the output of the following