Sign In
Ask Question
Yaretzi Osborn
Computers & Technology
11 September, 12:28
Edhesive 6.1 Code Practice
+4
Answers (
2
)
Donna Mack
11 September, 12:32
0
What kind of question is this?
Comment
Complaint
Link
Maia Potts
11 September, 12:57
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
Know the Answer?
Answer
Not Sure About the Answer?
Find an answer to your question 👍
“Edhesive 6.1 Code Practice ...”
in 📗 Computers & Technology if the answers seem to be not correct or there’s no answer. Try a smart search to find answers to similar questions.
Search for Other Answers
You Might be Interested in
Which architect designed the Guggenheim Museum in New York? A) Dankmar Adler B) Louis Sullivan C) Frank Lloyd Wright
Answers (2)
What is pheripheral
Answers (1)
Software design and implementation are interleaved activities. The level of detail in the design depends on the type of system being developed and whether you are using a plan-driven or agile approach. True or false?
Answers (1)
What kind of skills does an electronics engineering tech need as requirement in the workplace?
Answers (1)
Which of the following organizations is a part of the scouting movement? Junior Achievement Girl Guides 4-H
Answers (1)
New Questions in Computers & Technology
Is there a link between the fields of multimedia and animation?
Answers (1)
What advantage does a j-k flip-flop have over an r-s flip-flop? it has only one output. it does not require a clock input. it has no invalid states. it has fewer gates?
Answers (1)
Which of the following is NOT an example of a font style? a. Bold b. Italic c. Underline d. 18 pt
Answers (1)
Information Governance (IG) consists of? A. the overarching policies and processes to optimize and leverage information while keeping it secure and meeting legal and privacy obligations in alignment with organizationally stated business objectives;
Answers (1)
How to see how long you've been subscribed to someone on twitch?
Answers (1)
Home
»
Computers & Technology
» Edhesive 6.1 Code Practice
Sign In
Sign Up
Forgot Password?