Answer:
Spyware
Explanation:
Spyware is the software which is used to track the online movements, it also track the user action on the computer they are also called sneakware or stealthware
- This software is used in the business purpose which it may be used in the office to track the record of employee in the working hours .
- Spyware software is used to track the information without knowing the user.
Answer:
x = int(input("Enter an integer: "))
y = int(input("Enter another integer: "))
if x > y:
for number in range(y+1, x):
print(number, end=" ")
elif y > x:
for number in range(x+1, y):
print(number, end=" ")
else:
print("There are no integers between {} and {}".format(x, y))
Explanation:
*The code is in Python.
Ask the user to enter the two integers, x and y
Since we want our program to run regardless of which entered value is larger, we need to compare the numbers to be able to create the loop that prints the numbers.
Check if x is greater than y. If it is, create a for loop that iterates from y+1 to x-1 and print the numbers
Otherwise, check if y is greater than x. If it is, create a for loop that iterates from x+1 to y-1 and print the numbers
If none of the previous part is executed, print that there are no integers between
The registration, general electric can then sell the information and use it for its own buyer directory. Thus option (A) is correct.
<h3>What is information?</h3>
Information is a general term for everything with the capacity to inform. Information is most fundamentally concerned with the interpretation of what may be sensed. Any naturally occurring process that is not entirely random, as well as any discernible pattern in any medium, can be said to convey some level of information.
An international business based in America is called The General Electric Company (GE). GE has created the technology that will shape the industry for more than 125 years. For its work in the power, renewable energy, aviation, and healthcare sectors, GE is best known today.
Therefore, Thus option (A) is correct.
Learn more about the information here:
brainly.com/question/13629038
#SPJ1
Answer:
public static double average(int num1, int num2){
return (num1+num2)/2;
}
public static double average(int num1, int num2, int num3, int num4){
return (num1+num2+num3+num4)/2;
}
Explanation:
- In the first instance, the method average() accepts two parameters and returns their average
- In the second instance the method accepts four parameters and returns their average
- The concept of method overloading allows a program to have more than method with the the same name but with different parameters list like we find in this example
Answer:
public class num8 {
public static void main(String[] args) {
System.out.println("Average Temperature in New York is 85 degrees fahrenheit");
System.out.println("Average Temperature in Denver is 88 degrees fahrenheit");
System.out.println("Average Temperature in Phoenix is 106 degrees fahrenheit");
// Calculating the new average Temperatures
System.out.println("The New Average Temperature in New York " +
"is "+ ((0.02*85)+85 )+ " degrees fahrenheit");
System.out.println("The New Average Temperature in Denver " +
"is " +((0.02*88)+88 )+ " degrees fahrenheit");
System.out.println("The New Average Temperature in Phoenix " +
"is "+((0.02*106)+106 )+ " degrees fahrenheit");
}
}
Explanation:
- Using Java first display the previous average temperatures for the three cities as given in the question
- Then calculates the new average temperature by multiplying by 0.02, because of a 2 percent increase in the average temperature
- Display the new temperature using the System.out,println