Sign In
Ask Question
Computers & Technology
Meredith Pierce
16 December, 10:46
Edhesive 6.1 Code Practice
+1
Answers (
2
)
Maribel Dean
16 December, 11:00
0
I could find an Introduction to Computer Science course online about this question, in this course, in unit 6 and the first lesson is about LOOP.
Loop in programming is a cycle, we can use a cycle for and cycle while, this depends on our needs.
For example:
We could need an increase 1 by 1 in a number, we're going to do an example in the language java.
In this case, we have the variable "i" equal to 0, this variable going to increase with this code "++i" 1 by 1, with the condition i < 5, If the variables i is less than 5 then increase variable, until "i" be equal to 5, we print the result with the line System. out. println (i);
would be:
0
1
2
3
4
Until 4 because the condition is always less than 5, we cannot print 5 because is equal to 5
for (int i = 0; i < 5; + +i) {
System. out. println (i);
}
Comment
Complaint
Link
Pamela Orr
16 December, 14:45
0
What kind of question is this?
Comment
Complaint
Link
Know the Answer?
Answer
Not Sure About the Answer?
Get an answer to your question ✅
“Edhesive 6.1 Code Practice ...”
in 📙 Computers & Technology if there is no answer or all answers are wrong, use a search bar and try to find the answer among similar questions.
Search for Other Answers
You Might be Interested in
Should students be able to use their phones during class
Answers (1)
What processes can move a solute against its concentration gradient?
Answers (1)
Site won't let me log in and is glitching? Is rainly down?
Answers (2)
Which data entry technique uses a software program to transfer printed text into a computer file for editing?
Answers (1)
The component that keeps all other engine parts in line
Answers (1)
New Questions in Computers & Technology
Nancy is formatting a simple Webpage. Her supervisor has directed her to create headings before the second and fourth paragraphs. Which type of HTML elements should Nancy use to accomplish this most efficiently?
Answers (1)
How would you form a team to execute a piece of work? (1 correct answer) 1. An agile team must have the required skills. Team size will depend on scope and budget. 2. An agile team must have the required skills, headcount being less than 12. 3.
Answers (1)
A trait which is formed from a blend of genes represents
Answers (1)
The unauthorized copying of the material support, labels, artwork and packaging is called
Answers (1)
Which of these is the most credible online source? a. a commercial magazine page b. an opinion blog c. a personal webpage d. a university website
Answers (1)
Home
»
Computers & Technology
» Edhesive 6.1 Code Practice
Sign In
Sign Up
Forgot Password?