1answer.
Ask question
Login Signup
Ask question
All categories
  • English
  • Mathematics
  • Social Studies
  • Business
  • History
  • Health
  • Geography
  • Biology
  • Physics
  • Chemistry
  • Computers and Technology
  • Arts
  • World Languages
  • Spanish
  • French
  • German
  • Advanced Placement (AP)
  • SAT
  • Medicine
  • Law
  • Engineering
Serhud [2]
3 years ago
5

When the continue statement is encountered in a loop, all the statements in the body of the loop that appear after it are ignore

d, and the loop prepares for the next iteration.
Computers and Technology
1 answer:
kati45 [8]3 years ago
3 0

Answer:

True

Explanation:

While looping through, there can be times that you do not want your code to do anything in some situations. Let's say you loop through an array consists of four numbers (1, 2, 3, and 4). You want to print all the values except 2. Check the code written in Java below.

     int [] numbers = {1, 2, 3, 4};

     for(int number : numbers) {

        if(number == 2) {

           continue;

        }

        System.out.println(number);

     }

You might be interested in
If a clean install is performed on a hard drive with a previous install of windows and the drive is not re-formatted during the
Tpy6a [65]
Either wiped off the drive, or right next to the new ones, I do not recommend keeping the old files.
3 0
3 years ago
What are the steps for inserting an internal link?
julia-pushkina [17]

Answer:

=

Worksheet

Ctrl + Enter

Explanation:

4 0
3 years ago
Read 2 more answers
IF YOU GET 5/5 RIGHT YOU WILL GET BRAINLIEST AND 50 [POINTS
natta225 [31]

Answer:

The sort function

Explanation:

Because it will sort all the numbers.

4 0
3 years ago
Read 2 more answers
Cable television, as well as some networks, uses ________ cable.
guajiro [1.7K]
The answer is Coaxial Cable
7 0
3 years ago
Which of the following best describes compounds.
Lemur [1.5K]
A. They can only be separate chemically
4 0
3 years ago
Other questions:
  • What is ASP.NET ?why is it important?
    6·1 answer
  • The statements that a programmer writes in a high-level language are called ________.
    9·2 answers
  • In Excel, what happens to the cell contents when you click and drag a cell into multiple cells?
    14·1 answer
  • Bitnet, one of the predecessors of the internet was launched in 1981. what does bitnet stand for?
    12·1 answer
  • Describing light years
    7·1 answer
  • Which statement is true about the purpose of a work in process constraint?
    15·1 answer
  • This assignment is to code a simple hangman game. The game should choose a random word out of a list of words that are coded int
    8·1 answer
  • Data aggregate functions
    6·1 answer
  • 1. Define lexemes. Give an example of an lexeme in any programming language.<br>​
    10·1 answer
  • Where does the turtle belong in the cladogram shown below?<br> I’LL GIVE YOU BRAINLYEST
    6·2 answers
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!