Answer:
It is an object. And this is because an object has the data and procedures that defines how it is going to react when it is going to be activated. The data is the details about the object, and it explains what the object actually is. And the procedures are the details of the functions that the particular objects can perform. Like for a hospital, data can be mentioning list of medication services they provide, and procedure can be like registering for any medication service, the complete process.
Explanation:
The answer is self explanatory.
Answer:
Safe work practices are generally written methods outlining how to perform a task with minimum risk to people, equipment, materials, environment, and processes
Explanation:
B: ATM Transaction
C: Transaction over the Internet
D: Face to face transaction with a bank teller
A. B, D, C, A
B. C, A, B, D
C. D, B, A, C
D. A, C, B, D
Answer:C
Explanation:
Before any transaction can be done an individual must first appear to the bank teller either by depositing or collecting a check
Then using the ATM could occur either by withdrawing cash or transfer
Answer:
Once society and business develop confidence in IT and
are comfortable with the technology, significant increases in
efficiency will be possible. For example, a banking transaction
involving a teller averages $1.07, a telephone transaction costs
54¢, transaction made through an ATM costs 27¢, banking
with a PC software program costs 1.5¢ and an Internet-based
transaction only costs one cent. The cost of a similar online
banking transaction is one cent.
Explanation:
Answer:
#include<stdio.h> //header file
int main() //main function
{
float num; // variable declaration
printf("Enter a number to test:\n"); // getting variable for test
scanf("%f", &num);
if (num>45.6) //Testing weather greater or smaller
printf("\n %f is greater than 45.6", num); // Result if greater
else
printf("\n %f is not greater than 45.6", num); // Result if smaller or equal
return 0;
}
Explanation: