Jacob has a text file open, and he is typing on the keyboard. What is the best description of how the
changes are being implemented?
The original file is temporarily changed; the changes become permanent when he clicks "save."
The new version is kept in a special virtual space; the file is only changed when he clicks "save."
The information is stored on the clipboard:
O A copy is created with a new filename, which will overwrite the old one when he clicks "save."

Answers

Answer 1

Answer:

The new version is kept in a special virtual space; the file is only changed when he clicks "save."

Answer 2

The new version is kept in a special virtual space; the file is only changed when he clicks "save." this is the best description of how the changes are being implemented. Thus, option B is correct.

What is a keyboard?

Using a keyboard, users can input characters, symbols, and integers into the device. Whenever you write, you hit each key located on the keyboard separately.

As she is changing the files or editing the file she is editing the file and the changes are definitely being made in the same but that does not mean that the whole file is edited and when you open it will be changed.

This process is being done in a virtual space. It will only be secured after she has saved the document on which she is working.

Therefore, option B is the correct option.

Learn more about the keyboard, here:

https://brainly.com/question/14313428

#SPJ2


Related Questions

How can templates be made available to other users? your user profile directory a shared network location an intranet SharePoint document library none of the above​

Answers

Answer:

b. a shared network location

Explanation:

A templates can easily be made available to other users through a SHARED NETWORK LOCATION reason been that shared network location allow other computer users on a computer network to easily and quickly access templates, stored files and to share files with one another or from one computer to another computer.

Therefore with SHARED NETWORK LOCATION templates can be made available to other users.

Answer: B

Explanation:

What is a central idea for 3 Despite this lack of precision, Galileo had constructed a wonderful invention. Yet, he considered it to be a useless toy and even called it a “little joke.” As far as anyone knows, the famous physicist, mathematician, and astronomer never tried to adapt the thermoscope into a device to measure the temperature of the human body.

Answers

Answer:

Main Idea of Despite this lack of precision, Galileo had constructed a wonderful invention. Yet, he considered it to be a useless toy and even called it a “little joke.” As far as anyone knows, the famous physicist, mathematician, and astronomer never tried to adapt the thermoscope into a device to measure the temperature of the human body.

Explanation:

which is the best video games​

Answers

Answer:

overwatch and dead by daylight

Answer:

GTA V and COD

Explanation:

Which are benefits of group discussions? Check all that apply. Learning becomes more interesting. Students engage in learning. Learning involves less work. Less preparation is required. Preparation is encouraged.

Answers

Answer:

1st and 3rd one

Explanation:

because it's right

Answer:

im preety sure its the first, 2nd and 4th one but im not completely sure

Explanation:

A company decides to design and produce a new type of ice skate. Which of the following should the company do first?

Answers

What is the options

Since the company have decided to design and produce a new type of ice skate, the company need to test the design of their new skates.

The testing of the skates design is necessary to know how safe or efficient, the skates will be when produced.

In conclusion, because the company have decided to design and produce a new type of ice skate, the company need to test the design of their new skates.

Read more about product design

brainly.com/question/25886641

PLZ! What is an example of a current board game that involves moving pieces around and taking risks? 10 POINTS!

Answers

Answer:

Easy, Risk

Explanation:

a current board game that involves moving prices around and taking risks would be, chess

A _____ is relatively inexpensive to install and is well-suited to workgroups and users who are not anchored to a specific desk or location.​
A) local area network (LAN)
B) wireless local area network (WLAN)
C) metropolitan area network (MAN)
D) storage area network (SAN)

Answers

Answer:

B) wireless local area network (WLAN)

Explanation:

WLAN which fully meaning is WIRELESS LOCAL AREA NETWORK is a network provider that enables two or more mobile phone user , desktop or computer user to connect and have access to the internet by simply connecting to the local area wireless network and this type of wireless network are more cheaper to install.

Example of where WIRELESS LOCAL AREA NETWORK can be found are : School building, Office building, School campus, home, among others.

Which of the following types of software applications would open a txt file?
A. Image editor
B. Database
c. Media player
D. Word processor

Answers

Answer:

database or word proccessor

Explanation:

A.

Answer:

Word Processor

Explanation:

A-p-e-x

Which term refers to testing that your software still works as intended once it is connected to other systems?
a
stress testing
b
regression testing
c
user acceptance testing
d
load testing

Answers

Answer:

c

user acceptance testing

please I need help.
Select the correct answer. of the four email features listed below, which is the most important?
O A. the To address
O B. the Bcc address
OC. the attachments
O D. the domain name

Answers

Answer:

The answer is the "TO address"

Explanation:

i just took the test and got it right sooooooo

Answer: A “The To adress”

Explanation:

got it right

Illustrator : how do you edit a swatch ?​

Answers

Answer:

To edit an existing pattern, double-click the pattern in the pattern swatch, or select an object containing the pattern and choose Object > Pattern > Edit Pattern

Based on the details in The Riddle of the Rosetta Stone, how did the career of Jean-Baptiste Fourier differ from that of Jacques-Joseph Champollion?

Unlike Champollion, Fourier studied in Paris with Sylvestre de Sacy.
Unlike Champollion, Fourier cared more about non-Egyptian articles.
Unlike Champollion, Fourier studied and learned many languages.
Unlike Champollion, Fourier accompanied Napoleon to Egypt.

Answers

Answer:

D

Explanation:

Answer:

d

Explanation:

What should you do if you do not understand the directions on a test?

Answers

Answer:

ask your teacher for a little guidence.

Explanation:

even though you may not get the answer you need they might give you some assitance

what does he put the cd drive

Answers

Answer:

a disk drive duh

Explanation:

Write a program that uses a scanner to report some statistics about words in an input sentence ( see Section 7.8). The outputs should be the number of words in the sentence, the average word length, and the length of the sentence.

Answers

import java.util.Scanner;

public class JavaApplication77 {

   

   public static void main(String[] args) {

       Scanner scan = new Scanner(System.in);

       System.out.println("Enter a sentence:");

       String sentence = scan.nextLine();

       String [] arr = new String[sentence.length()];

       arr = sentence.split(" ");

       System.out.println("There are "+arr.length+" words in the sentence.");

       int count = 0;

       for(int i = 0; i < arr.length; i++){

           count += arr[i].length();

       }

       System.out.println("The average length of a word in your sentence is "+(count/arr.length)+" characters");

       count = 0;

       System.out.println("Your sentence is "+sentence.length()+" characters long.");

       

   }

   

}

For the length of a sentence, I included spaces as characters but I did not do this for the length of a word. I hope this helps!

Write a Java program called Decision that includes a while loop to prompt the user to enter 5 marks using the
JOptionPane statement and a System.out statement to output a message inside the loop highlighting a pass
mark >= 50 and <= 100. Any other mark will output a messaging stating it’s a fail.
Example of the expected output is as follows:
55 is a pass
12 is a fail

Answers

Answer:

Written in Java

import javax.swing.JOptionPane;

public class Decision{

public static void main(String[] args) {

    int i = 1;

    while(i<=5){

    String score = JOptionPane.showInputDialog("Input <score>");

    int mark = Integer.parseInt(firstNumber);

    if(mark >= 50 && mark <= 100) {

        JOptionPane.showMessageDialog(null, mark, " is a pass", JOptionPane.PLAIN_MESSAGE);

    }

    else{

        JOptionPane.showMessageDialog(null, mark, " is a fail", JOptionPane.PLAIN_MESSAGE);

    }

    i++;

    }

}

}

Explanation:

This initializes the a counter variable i to 1

    int i = 1;

The following iteration is repeated as long as i is less than or equal to 5

    while(i<=5){

This prompts user for input

    String score = JOptionPane.showInputDialog("Input <score>");

This converts user input to integer

    int mark = Integer.parseInt(firstNumber);

This checks if input is within 50 and 100 (inclusive)

    if(mark >= 50 && mark <= 100) {

This prints pass

        JOptionPane.showMessageDialog(null, mark, " is a pass", JOptionPane.PLAIN_MESSAGE);

    }

If otherwise

    else{

This prints fail

        JOptionPane.showMessageDialog(null, mark, " is a fail", JOptionPane.PLAIN_MESSAGE);

    }

This increments the counter variable by 1

    i++;

    }

A typical computer user will never come across most of the computer's files; the majority of files on a
computer are only relevant to the computer itself or a developer.
True
O False

Answers

Answer:

True

Explanation:

Answer:

The answer to this question is given below in the explanation section

Explanation:

The answer to this question is True. As you know that a typical computer user doesn't use most of the computer's files, because the majority of the computer's files on the computer are only relevant to the computer itself or a developer.

For example, a typical computer user can use internet explorer to search for something online on the internet. He/she can't come across to change the firewall, inbound and outbound net setting, etc. For example, A typical user will not use IIS and comes across its related files but a developer who is developing the web application can use and change setting in IIS.

A typical user can not change the environment variable but the developer can change the environment variable and computer registry setting.

Also a typical user does not change the windows setting and come across all files related to windows setting but developer can change.

Matt creates a Java class as part of his college assignment. He wants this class to be accessible within the current package only. Which access specifier should Matt use?

Matt has another Java assignment with multiple classes. In this assignment, there is a general class. A few subclasses outside the package use methods from this general class. Which access specifier should Matt use for the general class?

Matt should use the (blank) access specifier for the first class.

A. Protected
B. Default
C. Private
D. Public

He should use the (blank) access specifier for the general class.

A. Protected
B. Public
C. Default
D. Private

Answers

Answer:

first use Default as

a class with the default access modifier in a package, only those classes that are in this package can access this class. No other class outside this package can access this class.

general uses protected to make itself accecible to the subclasses.

What is the function of a breadcrumb trail in a website?

Answers

It lets users keep track of what they’re doing

Answer: traces between homepage and current web page

Explanation:

Draw a concept map that shows how the STEM careers are connected.

Answers

Answer:

attached below is the concept map needed

Explanation:

STEM : science technology engineering and mathematics

attached below is the concept map

from the map we can make an example on how this careers are connected

example : Production of chemical substance

science ; gives the chemical combination neededtechnology ; helps keep people safe from its hazardsengineering ; produces the chemical substancemathematics ; provides accurate measurement

what is the coefficient in 2m³n​

Answers

Answer:

i think it's '2'

Explanation:

cause coeffecient is the numerical factor of a term.

Choose the best collection for each situation.
You need to keep a record of the ages of the last 50 customers visit a restaurant. As new customers come in you delete the age that has been in the list the longest.

You need to store the GPS coordinates of the hospitals in a state in order to find the nearest hospital for ambulance helicopters.

You write a loop to save anywhere from 10 to 100 values from a user. You will pass the collection to a function to find the average.

Answers

Answer:

Deque: You need to keep a record of the ages of the last 50 customers visit a restaurant. As new customers come in you delete the age that has been in the list the longest.

Tuple: You need to store the GPS coordinates of the hospitals in a state in order to find the nearest hospital for ambulance helicopters.

List: You write a loop to save anywhere from 10 to 100 values from a user. You will pass the collection to a function to find the average.

Explanation: Just got the results back no thanks to the guy above

The best collection for the situations will be deque, tuple, and list.

A deque refers to the ordered collection of items that is similar to the queue. It has two ends and the items remain in position in the collection.

A tuple refers to the finite ordered sequence of elements. It is a data structure that is used in storing an ordered sequence of values.

Since the last 50 customers visit a restaurant, deque will be utilized. Tuple will be used when one needs to store the GPS coordinates of the hospitals in a state in order to find the nearest hospital for ambulance helicopters.

Read related link on:

https://brainly.com/question/17483083

Select one among the the main categories of computer software, which one is not a category
of Computer software? (1 mark) US
Application
Programs
Utilities
Systems​

Answers

Answer:

utilities

Explanation:

the other 3 are Cs programs

Which software programs should students avoid using to create and submit course work? (Choose all that apply).


Word


Pages


Numbers


Keynote

Answers

Keynote, pages, numbers

Effective communication in our relationships with others has several practical functions, including preventing unwanted problems, and strengthening levels of trust, honesty, respect, and morale.

Answers

Answer:

True.

Explanation:

Communication can be defined as a process which typically involves the transfer of information from one person (sender) to another (recipient), through the use of semiotics, symbols and signs that are mutually understood by both parties.

An effective communication can be defined as an act that typically involves conveying or disseminating information efficiently and effectively from an individual (sender) to another (recipient) without any redundancy. Thus, effective communication ensures that messages or information are transmitted properly, guarantees a feedback, lacks the use of harsh tones, ensures both parties are well understood, gives room for clarity etc.

Hence, effective communication in our relationships with others has several practical functions, including preventing unwanted problems, and strengthening levels of trust, honesty, respect, and morale.

2. Answer true or false.
An alien may become a citizen by birth or wealth.
false
true

Answers

True - because you cant deny somebody who was legally born where you automatically become a citizen if you were born in that place.

Answer:

True

Explanation:

The primary benefit of digital distribution is that more audiences are able to purchase and view a film
True or False?

Answers

Explanation:

The answer could be either-or. At the moment True because people are in quaritine and can't go to movie theaters or go buymovies from a store. It could also be false because not everyone owns a computer or has access to the internet. Also, the number of family houses that have internet are growing.

It all depends on the context I guess. You could say true becuase the number of families with wifi is growing and we're all being quarantined or you could say false because not everyone has access to the internet.

Challenge activity 7.6.1: Constructor overloading.Write a second constructor as indicated. Sample output:User1: Minutes: 0, Messages: 0User2: Minutes: 1000, Messages: 5000#include using namespace std;class PhonePlan{public:PhonePlan();PhonePlan(int numMinutes, int numMessages);void Print() const;private:int freeMinutes;int freeMessages;};

Answers

Answer:

#include

using namespace std;

class PhonePlan{

public:

PhonePlan();

PhonePlan(int numMinutes, int numMessages);

void Print() const;

private:

int freeMinutes;

int freeMessages;

};

PhonePlan::PhonePlan() { // Default constructor

freeMinutes = 0;

freeMessages = 0;

return;

}

PhonePlan::PhonePlan(int numMinutes, int numMessages) {

freeMinutes = numMinutes;

freeMessages = numMessages;

return;

}

void PhonePlan::Print() const {

cout << "Minutes: " << freeMinutes << ", Messages: " << freeMessages << endl;

return;

}

int main() {

PhonePlan user1Plan;

PhonePlan user2Plan(1000, 5000);

cout << "User1: ";

user1Plan.Print();

cout << "User2: ";

user2Plan.Print();

return 0;

}

Explanation:

The C++ source code has a defined class called "PhonePlan" with a default constructor which initializes the phone time and messages of a user to zero and another constructor method which assigns the "numMessages" and "numMinutes" to the user messages and minutes and displays it in the console.

The code that includes a second constructor is coded below.

Source code:

#include <iostream>

using namespace std;

class PhonePlan {

public:

   PhonePlan();

   PhonePlan(int numMinutes, int numMessages);

   void Print() const;

private:

   int freeMinutes;

   int freeMessages;

};

PhonePlan::PhonePlan() {

   freeMinutes = 0;

   freeMessages = 0;

}

PhonePlan::PhonePlan(int numMinutes, int numMessages) {

   freeMinutes = numMinutes;

   freeMessages = numMessages;

}

void PhonePlan::Print() const {

   cout << "Minutes: " << freeMinutes << ", Messages: " << freeMessages << endl;

}

int main() {

   PhonePlan user1;

   PhonePlan user2(1000, 5000);

   cout << "User1: ";

   user1.Print();

   cout << "User2: ";

   user2.Print();

   return 0;

}

In this code, the `PhonePlan` class has two constructors.

The first constructor `PhonePlan()` is the default constructor that sets `freeMinutes` and `freeMessages` to 0.

The second constructor `PhonePlan(int numMinutes, int numMessages)` is an overloaded constructor that takes two parameters `numMinutes` and `numMessages`. It assigns the provided values to `freeMinutes` and `freeMessages`.

The `Print()` function is used to display the values of `freeMinutes` and `freeMessages` for each `PhonePlan` object.

In the `main()` function, we create two `PhonePlan` objects: `user1` using the default constructor and `user2` using the overloaded constructor with values 1000 and 5000 for minutes and messages, respectively. We then call the `Print()` function for each object to display the minutes and messages for each user.

Sample Output:

User1: Minutes: 0, Messages: 0

User2: Minutes: 1000, Messages: 5000

In the output, `user1` has 0 minutes and 0 messages, while `user2` has 1000 minutes and 5000 messages, as initialized by the overloaded constructor.

Learn more about Constructor overloading here:

https://brainly.com/question/13267120

#SPJ4

JPG is considered a lossy file format. What does this mean?
O JPG files are insecure.
O JPG files compress efficiently but have compromised quality.
O JPG files are easy to delete.
O JPG file compression can be reversed.
PLEASE HELPPPPP!!!!!

Answers

Answer:

either a or b

Explanation:

Answer:

A it files are insecure

Explanation:

Zoe has been asked to identify the external links that exist in a workbook that has primarily been managed by
another employee.
Which feature should she use?

Answers

Answer:

Data tab and external links group.

Explanation:

I'm not 100% sure but it makes the most sense

Answer:data tab and external links group

Explanation:

Other Questions
Read this passage "Primary Lessons" from Silent Dancing: A Partial Remembrance of a Puerto Rican Childhood.I made one last desperate effort to make my mother see reason: Father will be very angry. You know that he wants us to speak good English. My mother, of course, ignored me as she dressed my little brother in his playclothes.What does this excerpt illustrate about the narrator's mother?She is angry with the narrator for overreacting about going to school. She is more concerned with the needs of her children than those of her husband. She tends to ignore her children when they complain about doing as they are told. She will not allow the narrator to use guilt to make her change her mind about going to school. Naomi has a toy car collection of 300 toy cars. She keeps 243 of the toy cars on her wall. What percentage of Naomi's toy car collection does she keep on her wall? In choosingit, I hoped for greater gain than loss; but of this I was not entirely confident...Yours truly,A. LincolnWhat does President Lincoln express in the line in bold? (4 points)AngerCertaintyDoubtMisery Could someone help me?Why does x^4 * x^-4 = 1? Which action would shift this reaction away from solid calcium fluoride and toward the dissolved ions?a) adding calcium ionsb) adding fluoride ionsc) removing fluoride ionsd) removing calcium fluoride what is dislocation When is national chocolate chip cookie day? What is the solution to the following equation?5(2x - 6) + 20 = 109Ob53Od2 "A farmer needs to get hay to cows in a frozen field. Using an airplane flying 40 m/s, at a height of 280 m, how far from the cow would she have to release the hay in order to hit the cow?" What is the horizontal velocity you would use to solve this problem? Please helpppppppppppppp If I go out to eat and my food is $20.98 and the tax is 8.6% and I give the waiter a 15% tip how much would it be all together? Who ever answers fastest and correctly I will make brainliestPlease answer ASAP 1. Which of these is true of all animals?O A. They are producers.B. They are unicellular.C. They are multicellular.D. They reproduce asexually.Other: what is measurement of Questions1. There are 12 pieces of fruit in a bowl and 2 of them areapples. What percentage of the pieces of fruit in the bowl areapples?AnswersHighlight the number that represents the percentage of pieces of fruitin the bowl that are apples. (1 point)A.0.02%B.0.17%C.2%D.17%2. Lin's family has completed 30% of a trip. They have traveled60 miles. How far is the trip? (Hint: You can use a tape diagram,Highlight the answer that shows how far Lin's family trip is. (2 points) Which of the following expressions represents the statement One half the sum of x and y? a. 0.5(x=y) b. 1/2(x+y) c. x+y/2 The Beryllium (Be) atom is smaller than the Barium (Ba) atom. Choose the evidence statement that best supports this claim. A Beryllium (Be) atom has 2 electron shells, whereas a Barium (Ba) atom has 8 electron shells. A Beryllium (Be) atom has 2 electron shells, whereas a Barium (Ba) atom has 8 electron shells. A Beryllium (Be) atom has 3 electron shells, whereas a Barium (Ba) atom has 8 electron shells. A Beryllium (Be) atom has 3 electron shells, whereas a Barium (Ba) atom has 8 electron shells. A Beryllium (Be) atom has 2 electron shells, whereas a Barium (Ba) atom has 6 electron shells. A Beryllium (Be) atom has 2 electron shells, whereas a Barium (Ba) atom has 6 electron shells. A Beryllium (Be) atom has 1 electron shells, whereas a Barium (Ba) atom has 6 electron shells. The King favored Mercantilism since it was a trade system that would ensure wealth for England. True or false I mow 6 lawns in 4 hours. How many lawns can I mow in 20 hours Item 3 Find the distance from the point (-2,6) to the line y=x-8 . Round your answer to the nearest tenth help pls. i had this question in my spanish note taking guide