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
slamgirl [31]
2 years ago
14

Liệt kê các lỗi có trong chương

Computers and Technology
1 answer:
Masteriza [31]2 years ago
8 0

Answer:

pls mark my brainiest

Explanation:

Create an object of the File class

 Pass it the name of the file to read in quotes

 Then create an object of the Scanner class

 Pass the constructor the new File object

 Then use Scanner methods such as:

 next()

 nextLine()

 hasNextLine()

 hasNext()

 nextDouble()

 nextInt()...

File inputFile = new File("input.txt");

while (in.hasNextLine())

{

String line = in.nextLine();

// Process line;

}

Scanner in = new Scanner(inputFile);

Text File Output

 Create an object of the PrintWriter class

 Pass it the name of the file to write in quotes

• If output.txt exists, it will be emptied

• If output.txt does not exist, it will create an empty file

PrintWriter is an enhanced version of PrintStream

• System.out is a PrintStream object!

PrintWriter out = new PrintWriter("output.txt");

out.println("Hello, World!");

out.printf("Total: %8.2f\n", totalPrice);

System.out.println(“Hello World!”);

 Then use PrintWriter methods such as:

 print()

 println()

 p

You might be interested in
If a preferred (faster) learned route over a WAN has administrative distance 110 that competes with a static backup (slower) rou
almond37 [142]

The engineer will need to set the distance to 130 for the static link so that it becomes a floating static route.

<h3>What is Floating static routes?</h3>

This is known to be a static routes that is said to have a kind of administrative distance that is also known to be bigger than the administrative distance of any other static route or dynamic routes.

Note that the value 130 stands for the next most logical value, nd as such it is to know that the right route comes first in the steps for administrative distance.

Learn more about WAN from

brainly.com/question/11352260

5 0
2 years ago
Bad Directions You are driving to your friend’s house and are using your smartphone for directions. While approaching your desti
Helen [10]

This could have happened when:

  • Lack of Internet service or failure
  • Wrong application.
<h3>What do you mean by Internet?</h3>

The Internet is seen as a form of a network that helps people to  connects their computers all over the nation.

In this age,  Through the help of the Internet, people are able to  share information and navigate through places.

Note that the problem of bad direction could have happened when:

  • Lack of Internet service or failure
  • Wrong application.

Learn more about Internet from

brainly.com/question/2780939

#SPJ1

6 0
2 years ago
Explain vividly any operating system of your choice stating at least 3 distinguishing features of each version.
rosijanka [135]

Answer:

microsoft windows, macOS, and linux

Explanation:

if you need help let me know

7 0
3 years ago
Read 2 more answers
Help me understand why it does not loop correctly and how to make the converter a continious loop? What am I doing wrong and how
Aleksandr-060686 [28]

Answer:

The control loop responds to

the overcharged VOUT with a skipped pulse to

regulate VOUT to the correct DC voltage. Other

converters may respond differently when the

minimum on-time is violated. For example, the

fSW may begin to decrease or VOUT may become

regulated to a higher voltage

Explanation:

If you are trying to make a loop run a certain number of time in Python, then...

To repeat something a certain number of times, you may:

1. Use range or xrange for i in range(n): # do something here.

2. Use while i = 0 while i < n: # do something here i += 1.

3. If the loop variable i is irrelevant, you may use _ instead for _ in range(n): # do something here _ = 0 while _ < n # do something here _ += 1.

4 0
2 years ago
PLEASE HELP ME ASAP ;(
Pavel [41]

Answer:

It is D

Extra words here

7 0
3 years ago
Other questions:
  • Rachel completed typing an official docment with a word processing program. She wants to make sure that her document has no typo
    15·2 answers
  • The computer stores a program while the program is running, as well as the data thatthe program is working with, in _____.
    10·1 answer
  • What is the maximum transmission speed for bluetooth v3 and v4 devices?
    12·1 answer
  • Consider a company that needs to sort an array of structures of type Customer by balance, with the largest balance first. Here i
    10·1 answer
  • You have answered 4 of 18 questions.
    12·2 answers
  •  How does critically analyzing technology add value to interactions with people in personal and professional contexts?
    7·2 answers
  • Please help! I tried this by myself. But I am not sure if this is right.
    8·2 answers
  • What is the difference between the flip horizontal and the flip vertical option
    8·1 answer
  • Here is the header for a function named computeValue:
    11·1 answer
  • Word can only print documents on one size of paper.<br><br> True or false
    15·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!