What is another name for performance measurements that can be used to monitor the number of transactions processed in a given time period, the number of records accessed, and the volume of online data?
What is another name for performance measurements that can be used to monitor the number of transactions processed in a given time period, the number of records accessed, and the volume of online data?
Front
metrics
Back
What is the output of the following code?
for (var i = 0; i <= 360; i+=60)
Front
i = 0, 60, 120, 180, 240, 360
Back
Identify a method that decreases array by keeping only those items that return a value of true from the callback function.
Front
array.reduce(callback [, thisArg])
Back
A(n) _____ is a named item in a program that stores a data value, such as a number or text string, or an object, such as a part of the web browser or browser window.
Front
variable
Back
_____ is the process of locating and fixing a programming error.
Front
Debugging
Back
Which of the following IT members would likely concentrate on operating system software and utilities to support an operating system?
Front
systems programmer
Back
Identify a compare function that sorts numeric values in descending order.
Front
function descending(a, b) {
return b - a;
}
Back
Identify a method that repeatedly runs commands at specified time breaks in a function created.
Front
setInterval("command", interval)
Back
Which term best describes a process that makes a system more secure by removing unnecessary accounts, services, and features?
Front
hardening
Back
A(n) _____ is a collection of commands that performs an action or returns a value.
Front
function
Back
Identify a shortcut key on the keyboard to open the debugging tools.
Front
F12
Back
Which type of baseline documents the system at the end of the design phase and identifies any changes since the initial baseline?
Front
allocated baseline
Back
A command block is indicated by its opening and closing square brackets [ ].
Front
False
Back
Which of the following tasks would most likely be completed by a systems review committee:
Front
approval of a maintenance request that has exceeded a predetermined cost level
Back
_____ programming distributes the load to prevent a server from getting overloaded with program-related requests.
Front
Client-side
Back
Parameters are treated as variables within a function.
Front
True
Back
Which element of system security ensures that authorized users have timely and reliable access to necessary information?
Front
availability
Back
Which of the following methods of the Math operator rounds x up to the next highest integer?
Front
Math.ceil(x)
Back
Identify a return value for the expression 5/"A" using JavaScript.
Front
NaN
Back
What is the output of the following code?
for(var i = 5; i > 0; i--)
Front
i = 5, 4, 3, 2, 1
Back
Placing a firewall on a proxy server is an example of which of the following risk management tasks?
Front
risk control
Back
What part of system performance management includes monitoring the system for signs of trouble, logging all system failures, diagnosing problems, and applying corrective action?
Front
fault management
Back
The process of tracking system releases is known as which of the following?
Front
version control
Back
A _____ occurs after a script has been successfully loaded with no syntax errors and is being executed by a browser.
Front
run-time error
Back
Which encryption method is considered asymmetric encryption because each user has a pair of keys?
Front
public key encryption
Back
A(n) _____ is a collection of values organized under a single name.
Front
array
Back
The _____ attribute tells a browser to parse the HTML and JavaScript code together, only pausing to process the script before returning to the HTML file.
Front
async
Back
The technique for locating the source of an error is to set up _____, which are locations where the browser will pause the program, allowing the programmer to determine the error at that position.
Front
breakpoints
Back
A(n) _____ is any group of characters enclosed within either double or single quotation marks in JavaScript.
Front
text string
Back
Identify the output of the following code.
var x = 8;
var y = 6;
Front
96
Back
Which type of maintenance involves changing an operational system to make it more efficient, reliable, or maintainable?
Front
perfective maintenance
Back
Which of the following syntax is used for a function to return a value?
Front
function function_name(parameters){
commands
return value;}
Back
The _____ method creates a new array by passing the original array items to the callback function, which returns the equivalent value of the array items.
Front
array.map(callback [, thisArg])
Back
_____ is the programming language for client-side programs.
Front
JavaScript
Back
Which of the following can be referenced only after the browser has finished parsing the page content?
Front
Document objects
Back
To break a text string into several lines, which means that the text string continues on the next line, the _____ character should be used.
Front
backslash
Back
The _____ property should be used only when no markup tags are involved.
Front
textContent
Back
Identify the general structure of a for loop.
Front
for (start; continue; update)
{
commands
}
Back
Server-side and client-side programming are the two main types of web-based programming.
Front
true
Back
A process for controlling changes in system requirements during software development is known as which of the following?
Front
configuration management
Back
Maintenance tasks play an important role in managing systems support. Which type of maintenance includes adding new capabilities and enhancements to current systems?
Front
adaptive maintenance
Back
A process that monitors current activity and performance levels, anticipates future activity, and forecasts the resources needed to provide desired levels of service is known as which of the following?
Front
capacity planning
Back
JavaScript is a procedural language that needs a compiler to translate the code into machine language.
Front
False
Back
An employee tricking a computer into raising his or her account to the administrator level is known as what type of attack?
Front
privilege escalation
Back
JavaScript code is attached to an HTML file using the _____ element.
Front
script
Back
Identify a function that extracts the first numeric value from the text string.
Front
parseFloat(string)
Back
A command that indicates an action for the browser to take should end with a _____.
Front
semicolon
Back
Index values start with 1 so that the initial item in an array has an index value of 1, the second item has an index value of 2, and so on.
Front
False
Back
JavaScript is used as a programming tool for:
Front
creating interactive web forms and animated graphics
Back
What is the output of the following code?
var sum = 0;
var x = [1, 3, 7, 11];
x.forEach(sumArray);
function sumArray(value) {
sum += value;
}
Front
22
Back
Section 2
(15 cards)
Numeric data can be sorted by creating a(n) _____ function that contrasts the values of two adjacent array items.
Front
compare
Back
Identify the general structure for accessing each value from an array using a for loop.
Front
for (var i = 0; i < array.length; i++) {
commands involving array[i]
}
Back
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;
}
Front
[92, 95, 91]
Back
A _____, which employs the first-in-first-out (FIFO) principle in which the first item added to the data list is the first removed, is similar to a stack.
Front
queue
Back
The _____ loop tests the condition to continue the loop right after the latest command block is run.
Front
do/while
Back
The _____ method performs an action similar to the forEach() method except that the function it calls returns a value that can be used to match the contents of an existing array into a new array.
Front
map()
Back
By default, items are placed in an array either in the order in which they are defined or explicitly by index number.
Front
True
Back
Identify the output of the following code.
var x = [3, 45, 1234, 24];
x.sort();
Front
1234, 24, 3, 45
Back
The while statement is used to exit a program loop before the stopping condition is met.
Front
False
Back
The every(callback [, thisArg]) array method applies the callback function to each item in an array.
Front
False
Back
Identify a method that tests whether the condition returned by the callback function holds for all items in an array.
Front
array.every(callback [, thisArg])
Back
Identify the expression in which the initial value of the day variable will be set to match the first day of the calendar month.
Front
var day = new Date(calDate.getFullYear(), calDate.getMonth(), 1);
Back
Identify the expression used to reference array values.
Front
array[i]
Back
Which of the following methods creates a new array populated with the elements of array that return a value of true from the callback function?