Answer:
The correct answer to this question is given below in the explanation section.
Explanation:
The correct answer to this question is : 4.
When you run this program in Java. The output produce by this program is 4
The given code is:
import java.util.ArrayList;
public class arrayList7
{
public static void main(String[] args) {
ArrayList one = new ArrayList ();
Integer count=3;
count=count+1;
one.add(2);
one.add(count);
System.out.println(one.get(1));
}
}
This code store the value in ArrayList one variable. It first adds 2 at zero indexes and 4 at first index. When you print the value at index one, you will get the output 4. because the count variable contains 4. If you want to print 2, then you specify the print statement that prints the value at index zero. eg.
System.out.println(one.get(0));
Answer:
Mail bomb is the correct answer.
Explanation:
In the following statement, A mail bomb is the type of attack on e-mail of the particular person by which the attacker transfers large quantities of e-mail to the target computer in the expectation of flooding the target with so much meaningless e-mail that legitimate e-mail is not accessible. So, that's why the following answer is correct.
Answer:
Excel file formats
Format Extension
Excel Workbook .xlsx
Excel Macro-Enabled Workbook (code) .xlsm
Excel Binary Workbook .xlsb
Template .xltx
Answer:
High level language.
Explanation:
High level language can be defined as a programming language which is generally less complex than a machine (low level) language and easy to understand by the end users (programmers).
This ultimately implies that, a high level programming language is typically a user friendly language and as such simplifies coding or programming for beginners.
Some examples of high level programming language are Python, Java, C#, Ruby, Perl, Visual Basic, PHP, Cobol, C++, Fortran, Javascript, etc.
In this scenario, Huzaifa is a grade 5 student who is very enthusiastic to learn coding in computers. He asks his computer teacher to help him choose a language to code. Thus, the language level the teacher will recommend to Huzaifa is a high level language.