Answer:
software is a program that enables to comuter perform as a specific task as opposed to the physical component of the system hardware.
it is classified into two type .
system software
application software
Answer:
I say that this would be data. It is the one that makes the most sense, because in math, that would be the data that you may not know what to do with....YET!! Hope this was helpful!
Department store charge cards are considered open-end credit, so the answer is C.
Answer:
var movie = {
// Code will be tested with different actors and movies
name: "Interstellar",
director: "Christopher Nolan",
composer: "Hans Zimmer",
cast: {
"Matthew McConaughey": "Cooper",
"Anne Hathaway": "Brand",
"Jessica Chastain": "Murph",
"Matt Damon": "Mann",
"Mackenzie Foy": "Young Murph"
},
roleOf: function (actorName) {
if (!(actorName in this.cast)) {
return "Not in this movie.";
}
return this.cast[actorName];
}
};
Explanation: