Answer:
Pong
Explanation:
In 1958, a physicist created a tennis game in which he found the very first video game.
<span>the three fundamental elements of an effective security program for information systems are Identification, Authentication and Authorization.The access control creates the user and assigns the rights to resources and authorization is giving permissions to the users to access the resources.The user who wants to enter the system should have a valid data t enter the system like password, fingerprint or any other type of recognition.</span>
The code that carried out the functions indicated above is stated below. It is not be noted that the code is written in C#
<h3>
What is C#</h3>
C# is a type-safe, object-oriented programming language. It is pronounced "see sharp"
<h3>
What is the code for the above task?</h3>
Using System;
public class HoursAndMinutes
{
public static void Main()
{
// declaring minutes variable and assigning 197 as given in question
int minutes = 197;
// outputing the total minutes , hours
Console.WriteLine("{0} minutes is {1} hours and {2} minutes.", minutes, minutes/60, minutes%60);
}
}
// OUT
Learn more about C#:
brainly.com/question/20211782
#SPJ1