Answer: Game Artist, Game Designer or Game Programmer.
Explanation:
All of which fall under a “Game Designer”
Answer:
A device that allows multiple computers to communicate with each other is
Network Hub.
Hope this helps!
:)
Answer:
Sniffing is the correct answer to the given question .
Explanation:
The main objective of Sniffing is to leads and stealing the information interception by detecting the network activity this activity is done by the Sniffing process .When the information is sent through the networks, the information inside the data packet can be detected by using a sniffer .The sniffer is used in sniffing process.Information is accessed by the sniffer because the information packets that are sent in the network are not secured.
By using the Sniffing technique the hackers hacked the company's improperly-secured wireless network and stole customers ' credit card details as well as employee social security numbers.
An Algorithm that describes the second part of the process can be written as listed below :
<h3>Algorithm describing the second part of the process of making change (counting out the coins and bills ) </h3>
<u>First step</u> : Initialize the required variables to zero to determine the number of coins and bills.
<u>Second step</u> : Prompt and read the amount to convert. amount to Hundreds
<u>Third step</u> : Compute hundred bill note as 100 amount equal to ( amount% * 100 fifties - amount )
<u>Fourth step </u>: Compute fifty bill notes as : ( amount% * 50 fifty bill notes )
<u>Fifth Step</u> : Compute Twenty bill notes as amount equal to ( amount% *20 Twenties - amount )
<u>Sixth Step</u> : Compute Tens bill notes as : ( amount% * 10 Tens bill notes )
<em>Note : continue the process for fives, Quarters, Dimes, Nickels, and Pennies. </em>
<em />
Learn more about Algorithm : brainly.com/question/13800096
#SPJ1
<u>Attached below is the missing part of the question </u>
<em>Write an algorithm that describes the second part of the process of making change (counting...</em>
Answer:
Explanation:
The following is written in Java. It creates the function that takes in two int values to calculate the gcd. It includes step by step comments and prints the gcd value to the console.
public static void calculateGCD(int x, int y) {
//x and y are the numbers to find the GCF which is needed first
x = 12;
y = 8;
int gcd = 1;
//loop through from 1 to the smallest of both numbers
for(int i = 1; i <= x && i <= y; i++)
{
//returns true if both conditions are satisfied
if(x%i==0 && y%i==0)
//once we have both values as true we store i as the greatest common denominator
gcd = i;
}
//prints the gcd
System.out.printf("GCD of " + x + " and " + y + " is: " + gcd);
}