Answer:
You can open a HTML document in internet explorer usually browsers can open HTML files.
Answer:
The list created by the split method in Python 3 will be ["red", "orange", ""yellow", "green", "blue"]
Explanation:
In Python 3, the split method takes the input string, in this case is colors = "red,orange,yellow,green,blue", and split it into a list and you can indicate the separator that the method will use.
The general syntax for this method is:
string.split(separator,max)
separator indicates the character that will be used as a delimiter of each list member and the max parameter indicates the maximum number of separations to make.
Since each color in your string is separated by the character "," the code will make a list in which every color is a separated string.
When you hit enter key you will create new paragraph so answer is true
Answer:
The answer to this question is option "d".
Explanation:
In this question, the answer is data mining. Because Data mining is a technique that finds a piece of new information in a lot of the data. In the data mining collecting information from data is hopefully both new and useful. Data mining help us to discover new patterns and relationship in data to help make better decisions. It is used everywhere like Television and radio, Banking, Retail, and business. That's why data mining is useful.
import Java.util*
public class Average{
public static void main(String [] args){
int sum = 0;
int numbers = 0;
for(int i = 0; i < 5; i++){
Scanner sc = new Scanner(System.in);
System.out.println(“Please enter your integers: “);
numbers = sc.nextInt();
sum += numbers;
}
System.out.println(“The average is: “ + sum/5)”
}
}