Answer:
Business-records exception
Explanation:
The Business-records exception which is also known as the Business Entry Rule, this is an exception to the evidentiary rule (which rules out hearsay from a trial) that permits business records to be admitted if the appropriate foundation is laid to show the document is dependable and can be relied upon.
Answer:
c: running
Explanation:
when the computer is turned on The operating system keeps things organized in the background so that multiple programs can run at the same time
Answer:
Middleware is/are any of several classes of software that allow an application to interoperate with other software without requiring the user to understand all software involved
What is Middleware?
is computer software that connects software components or applications.
Answer:
a. True
Explanation:
Objects suffer inertia before a transition is achieved. Transition is the movement of an object from one state to another. But, this transition does not happen on its own. It is usually triggered by an event or series of events. This means that when the object moves from its prior state to a subsequent state, an event must have occurred to trigger the transition. Objects, therefore, depend on events or an outside force to remove their inertia. They are usually in a state of inertia until an outside stimulus stimulates them with some momentum.
You didn't specify a language, so here it is in C++.
#include <iostream>
#include <ctime>
int main()
{
srand(time(NULL));
int random, guess;
random = rand() % 100 + 1;
std::cout << "Random number generated!\nGuess the number: ";
std::cin >> guess;
if (guess == random)
std::cout << "Yes!";
else
std::cout << "No!";
return 0;
}