Found the same question with the choices;
A. Reason Effectively
B. Solve Problems
C. Communicate Clearly
D. Use System Thinking
I would say the answer is A.
A communication medium that carries a large amount of data at a fast speed is called broadband. Broadband can transmit multiple signals at the same time. The term gained popularity during the 1990s for the marketing of internet. The term is used in radio, television and internet terminology. Though there is slight difference in the definition in each category, the term primarily stands for the ability of a medium to send and receive a lot of data at a fast speed.
print('Welcome')
name = input('Please enter your name : ')
age = int(input('Your age : '))
print('Your name is',name,'and you have',age,'years old')
C. Environmental Service Systems
Import java.util.Scanner;
public class MinutesConversion {
private static Scanner inputDevice;
public static void main(String[] args) {
int minutes, hours;
float days; // float for decimal point
inputDevice = new Scanner(System.in);
System.out.println("Please enter minutes for conversion >> ");
minutes = inputDevice.nextInt();
hours = minutes / 60;
days = hours / 24.0f;
System.out.println(+ minutes + " minutes is " + hours + " hour(s) or" + days " days");
}
}