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
Thepotemich [5.8K]
3 years ago
11

Edhesive 6.1 Code Practice

Computers and Technology
2 answers:
Mariulka [41]3 years ago
6 0

What kind of question is this?

Katyanochek1 [597]3 years ago
5 0

Answer:

Explanation:

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);

}

You might be interested in
Can you install Ubuntu on a hard drive by porting from the folder to the HDD?
Len [333]

No you can not. It will not allow you to

8 0
3 years ago
Write code that uses the input string stream inSS to read input data from string userInput, and updates variables userMonth, use
Lostsunrise [7]

The Code Looks Like this :

import java.util.Scanner;
public class StringInputStream {
public static void main (String [] args) {
Scanner inSS = null;
String userInput = "Jan 12 1992";
inSS = new Scanner(userInput);
String userMonth = "";
int userDate = 0;
int userYear = 0;
/* Your solution goes here */
inSS.useDelimiter(" ");
userMonth=inSS.next();
userDate=inSS.nextInt();
userYear=inSS.nextInt();
System.out.println("Month: " + userMonth);
System.out.println("Date: " + userDate);
System.out.println("Year: " + userYear);
return;
}
}

Out Put:

Month: Jan

Date: 12

Year: 1992
3 0
4 years ago
Describe the general process of creating a DataFlow Diagram (DFD)
PIT_PIT [208]

 Answer:

General process of creating a data flow diagram:

  Data flow diagram are used to represents the flow of data graphically and it is divided into physical and logical parameters. For creating the data flow diagram the steps involved are:

  • Select the data and name the DFD.
  • In DFD add the entity for start the process and add that process in data flow diagram.
  • Add a data store and continuous adding that data into DFD.
  • Now, adding the data flow in DFD and name the data.

 

3 0
4 years ago
Name the functional arms of MSDE.
fgiga [73]

Answer:

It is aided in these initiatives by its functional arms – National Skill Development Agency (NSDA), National Skill Development Corporation (NSDC), National Skill Development Fund (NSDF) and 33 Sector Skill Councils (SSCs) as well as 187 training partners registered with NSDC.

3 0
3 years ago
The process of changing data from their original form to a format that more closely fits the research objectives of the research
lys-0071 [83]

ANSWER- True


Data transformation is defined as the process of converting data or information from one format to another. Usually, the data or information is changed from the original format (The format of a source system) into the required format of a new destination system; a format that fits the objectives of the research/study.

8 0
3 years ago
Other questions:
  • How do u determine the voltage across diode
    15·1 answer
  • When CPU failed what will happen?
    10·1 answer
  • In ssl/tls, a specific set of protocols that a particular cryptographic system will use to provide protection is called a ______
    5·1 answer
  • You can use the results from a search on a database in all of these ways except to ____.
    11·2 answers
  • Write the definition of a function printDottedLine, which has no parameters and doesn't return anything. The function prints to
    10·1 answer
  • What computer is designed to meet the computing needs of several people simultaneously in a small to medium-size business enviro
    5·1 answer
  • The stack pop operation
    10·1 answer
  • Examples of email use that could be considered unethical include _____.
    14·2 answers
  • Select the correct answer from each drop-down menu.
    8·1 answer
  • Difference between electrical and electronic devices
    15·2 answers
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!