I don’t understand please speak English
import java.util.Scanner;
public class MyClass1 {
public static void main(String args[]) {
Scanner scan = new Scanner(System.in);
int smallest = 0, largest = 0, num, count = 0;
while (true){
System.out.println("Enter a number (-1 to quit): ");
num = scan.nextInt();
if (num == -1){
System.exit(0);
}
else if (num < 0){
System.out.println("Please enter a positive number!");
}
else{
if (num > largest){
largest = num;
}
if (num < smallest || count == 0){
smallest = num;
count++;
}
System.out.println("Smallest # so far: "+smallest);
System.out.println("Largest # so far: "+largest);
}
}
}
}
I hope this helps! If you have any other questions, I'll do my best to answer them.
Available options
=A4&&B4
=A4&" "&B4
="A4"&""&"34"
=A4&""&B4
Answer:
=A4&""&B4
Explanation:
In a Microsoft Excel spreadsheet, to combine the content of two cells into another cell, a user will have to use the command &
Hence, in this case, given that there is no need to have any character or blank space in between the content of the starging cells, which is just A4 and B4, then we have the following technique
1. Select the cell C2
2. Input the command = or +, then select cell A4
3. Input the command &
4. Then select the cell B4
5. Click enter.
Therefore, the answer should appear as =A4&B4.
But from the available options, there is nothing like that, so we pick =A4&""&B4 because it gives the same outcome.
A character or collection of characters with a specific meaning is called a field.
<h3>What does the technical term "field" mean?</h3>
A field is a purpose-driven, typically fixed-sized section in a fixed or known location within a unit of data, such as a record, message header, or computer instruction. A field may be divided into smaller fields depending on the situation.
<h3>What does a file structure field mean?</h3>
A record is an entire set of fields, a field is a single piece of information, and a file is a collection of records. An analogy between a file and a phone book is a phone book. There is a list of records in it, and each record has three fields: a name, an address, and a phone number.
learn more about field here
<u>brainly.com/question/28002617</u>
#SPJ4