Access from and output to the register is slow true false​

Answers

Answer 1

Answer:

false

Explanation:

it depends most of time so false


Related Questions

I WILL GIVE BRAINLIEST TO WHO ANSWERS FIRST AND CORRECTLY.
Select the statements that describe working with text in presentation programs.

Working with text in presentation programs requires learning a new set of rules.
Working with text in presentation programs is similar to working with text in other applications.
The alignment of text in placeholders cannot be changed.
Font size and font color can be changed in presentations.
Audience size influences font size.

Answers

Answer:

Your answer is 1, 3, and 4.. Working with text in presentation programs requires learning a new set of rules, The alignment of text in placeholders cannot be changed, and Font sizes and color can be changed in presentations... Hope this helps!

Explanation:

"Currency" is a field data type ,it represents Date or time values
True or false tho?

Answers

Answer:

true

Explanation:

I will brainlist

LEAN manufacturing is mostly used in automobile
manufacturing?

True or False

Answers

Answer:

True

Explanation:

Answer:true

Explanation:

would a interactive book be considered a game?

Answers

[tex]\huge\bold\red{Answer:-}[/tex]

✮With its anthology of Interactive Fiction, Studio Oleomingus creates an interplay of text and built environments.

✮The readers/viewers are given the freedom to tailor the story according to their own sensibilities.

FOLLOW ME ♥️

Answer:

No i wouldn’t say so

Explanation:

Write any four "Change Case" options available in OpenOffice writter

Answers

Answer:

please mark me as a brainliest

Answer:

In OpenOffice Writer you can change any text to sentence case, lowercase, uppercase, capitalize every word, or toggle case by following the steps below.

Highlight the text you want to change.

Once highlighted click Format and then Change Case.

Within Change Case select the type of capitalization you want.

Maisy is an aspiring video game programmer. She has some unique ideas for new video games, but first, she needs to get some computer equipment at home. Currently, she owns a smartphone and tablet, but she wants to invest in a desktop computer and some peripherals.

Write a paragraph suggesting at least five pieces of hardware that Maisy should consider purchasing. Make sure to justify why she needs each piece of equipment by describing what tasks they will perform. Also explain how those different pieces of hardware will be installed.

Answers

Answer:

She does not need a computer all she needs are a good laptop that could handle a game engine and a graphic drawing tablet to make the terrain and characters.

Explanation:

It also depends on what kind of game you want to create

what happened to Ariana grande that took a toll on her mental health and changed her life. (3 answers and its not her being famous)

Answers

Answer:

manchester bombing, death of her ex/bff

Explanation:

Answer:

Drugs

Explanation:

+20 POINTS!!!~~~~~When adding delegates to his mailbox, which role should Joel use if he would like the user to be able to read and create items in a particular folder?

Editor
Publishing Editor
Author
Manager

Answers

Answer:

B) Publishing Editor

Explanation:

Joel should use the publishing editor tool. The correct option is B.

What is a mailbox?

A mailbox is where electronic mail messages found on a remote server or downloaded to the user's hard drive are stored.

In this scenario, the role he should assign to the delegates is the publishing editor. This role grants them the ability to create, read, modify, and delete all items within a given folder, as well as create subfolders.

The other options listed either do not grant access to create/modify existing files or simply grant all of these rights to files created by the user but not to files already present in the folder. As a result, this would be the most appropriate role for Joel's goals.

To know more about mailbox follow

https://brainly.com/question/13276817

#SPJ6

Software as a Service refers to

software that you put on your computer.

software you can access using any device.

a server.

a web browser.

Answers

Answer:a,b,d,e

Explanation: The other top ones are right but it's a multiple choice answer

Why can't you test a program for run-time errors when it has compile-time (syntax) errors

Answers

Answer:

your computer will not allow it

Explanation:

because it is not one of the main dyonostics

types of computer that we use in our daily life​

Answers

Answer:

all coumputers

Explanation:

i just like coumputers

The answer would be all computers
Hope this helps :)

pls go to my account and answer my question

Answers

Answer:ok I couldn’t find the question do you mind maybe copy pasting it and asking it.

Explanation:

Answer:

ok

Explanation:

When posting electronic resumes how is open block form different from a fill in blank form

Answers

When posting an electronic résumé, how is a Open Block form different from a Fill-in-the-blank form? An Open Block form allows you to copy and paste an entire electronic résumé in a space to submit. A Fill-in-the-blank form requires to copy and paste individual sections of a résumé into a space.

How to build aeroplain pls tell me I want to go to amereeca

Answers

Answer:

lol i think it would be cheaper to but a ticket or drive there

A researcher wants to publish the results of a study in an open access journal. Which of the following is a direct benefit of publishing the results in this type of publication?


The researcher can allow the results to be easily obtained by other researchers and members of the general public.




The researcher can better anticipate the effect of the results and ensure that they are used responsibly.



The researcher can ensure that any personal information contained in the journal is kept private and secure.


The researcher can prevent copies of the research from being accessed by academic rivals.

Answers

Answer:

A. The researcher can allow the results to be easily obtained by other researchers and members of the general public.

Explanation:

An open access journal can be defined as a publishing model or principles which typically involves publishing scholarly articles or research papers free of charge and devoid of any access barrier to the general public.

The main purpose of an open access journal is to make scholarly articles or research papers available to the general public or other researchers without paying for subscriptions or getting licenses.

In this scenario, a researcher wants to publish the results of a study in an open access journal. Therefore, the direct benefit of publishing the results in this type of publication is that, the researcher can allow the results to be easily obtained by other researchers and members of the general public.

People often publish their works on journals. The direct benefit of publishing the results in this type of publication is that;

The researcher can allow the results to be easily obtained by other researchers and members of the general public.What is open access publication in research?

Open access is known to be a publishing model that is meant for scholarly communication. It is known to makes research information readily available to readers at no cost per charge.

It is different  from traditional subscription model where readers have access to scholarly information only through paying a subscription fee.

Learn more about  open access publication from

https://brainly.com/question/8913038

Help please I’m on a time limit

Answers

Answer:

4, Im pretty sure. but not 100%

Explanation:

4.5 Code Practice


Write a loop that inputs words until the user enters STOP. After each input, the program should number each entry and print in this format:

#1: You entered _____
When STOP is entered, the total number of words entered should be printed in this format:

All done. __ words entered.

Sample Run
Please enter the next word: cat
#1: You entered cat
Please enter the next word: iguana
#2: You entered iguana
Please enter the next word: zebra
#3: You entered zebra
Please enter the next word: dolphin
#4: You entered dolphin
Please enter the next word: STOP
All done. 4 words entered.

Answers

In python 3:

i = 0

while True:

   word = input("Please enter the next word: ")

   if word == "STOP":

       break

   i += 1

   print("#{}: You entered {}".format(i, word))

print("All done. {} word(s) entered.".format(i))

I hope this helps!

The program is an illustration of loops.

Loops are used to perform repetitive operations.

The program in Python, where comments are used to explain each line is as follows:

#This gets input for the first word

word = input("Please enter the next word: ")

#This initializes count to 0

count = 0

#The following iteration is repeated until the user enters "STOP"

while word != "STOP":

   #This prints the word entered

   print("You entered",word)

   #This increments count by 1

   count += 1

   #This gets input for the next words

   word = input("Please enter the next word: ")

   

   

#This prints the count of all words

print("All",count,"words entered!")

At the end of the program, the number of valid inputs is printed.

Read more about similar programs at:

https://brainly.com/question/18283451

Part 2: Code the Program Use the following guidelines to code your program. 1. Use the Python IDLE to write your program. 2. Using comments, type a heading that includes your name, today’s date, and a short description. 3. Set up your def main(): statement. (Don’t forget the parentheses and colon.) 4. Use at least two variables and two print statement to display your message to the screen. 5. Conclude the program with the main() statement. 6. Follow the Python style conventions regarding indentation in your program. 7. Run your program to ensure it is working properly. Fix any errors you may observe. Example of expected output: The output below is an example of a “Favorite TV Show” message. Your specific results will vary depending on the choices you make about your message. Output My favorite TV show is MythBusters. I like it because I learn a lot and they do crazy experiments. When you've completed writing your program code, save your work by selecting 'Save' in the Python IDLE. When you submit your assignment, you will attach this Python file separately.

Answers

# Replace this with your name, date, and a short description

def main():

   x = "My favorite book is python for dummies."

   y = "I like it because it introduces new python topics."

   print(x)

   print(y)

if __name__ == "__main__":

   main()

what is the 3rd streak fun fact from brainly

Answers

Answer:

it is something like you life time saliva can fill up two swimming pools i think

Answer:

During your lifetime, you will produce enough saliva

Complete the sentence.
use only apps acquired from app stores.
PLEASE HELP

Answers

Answer:

that's a hard one maybe u should email ur teacher bc the punctuation on that is fine and it's not an incomplete sentence

Ccccccccccccccccccccccc

Which of the following are personality tests? Check all of the boxes that apply.

A- the big five personality test

B- the Myers-Briggs Type Indicator

C- the Rorschach inkblot test​

Answers

the answers are:

- the big five personality test

- the myers-briggs type indicator

- the rorscharch inkblot test

(basically all of them)

The following are personality tests:

the big five personality test

the Myers-Briggs Type Indicator

the Rorschach inkblot test​

Thus option (a), (b), and (c) are correct.

What  is the personality test?

The personality test is a means of assessing or evaluating human personality. The most of the tools for evaluating the personality are of subjective self-report questionnaire measures or reports from life records such as grade scales.

The big five theory of personality suggests that personality is composed of five broad dimensions: extroversion, agreeableness, conscientiousness, neuroticism, and openness.

The following are personality tests:  the big five personality test; the Myers-Briggs Type Indicator and  the Rorschach inkblot test​. Therefore, option (a), (b), and (c) are correct.

Learn more about personality test here:

https://brainly.com/question/29501903

#SPJ5

Computer hardware is best described as

Answers

Computer hardware is best described as any physical component of a computer system that contains ICs, Circuit boards , or any other type of electronic.

Mihaela I. Croitoru – Utilizarea calculatorului personal Microsoft Word dau coroana

Answers

Answer:

what is this?

State The function
of floppy disk​

Answers

Answer:

A floppy disk drive (FDD) is a small disk drive used in computers for data transfer, storage and backup of small amounts of data, as well as installation of programs and driver updates. A floppy disk drive accesses data recorded on small, removable diskettes known as floppy disks.

Jack follows the steps below.
Step 1: He clicks the Design tab on the ribbon.
Step 2: He navigates to the Document Formatting command group.
Step 3: He clicks the Themes icon.
Step 4: He clicks the Office Theme option in the themes gallery.

Which task is Jack trying to do?
A. He is sharing the Office theme with others.
B. He is creating a new theme for his document.
C. He is saving an existing theme to the themes gallery.
D. He is applying an existing theme to his document.

Answers

Answer:

D is my answer to this question.

Answer:

D, He is applying an existing theme to his document.

Explanation:

got the answer correct on edge.

A family member who hasnít worked with computers before has decided to change jobs. Youíve been asked to explain some of the basics. You begin by explaining the basic idea of word processing software, spreadsheets, databases, and presentation software. You sense that the following question is coming: ìWhy so many different things? Why canít there just be one software that you could use for everything?î How would you answer?

Answers

There are too many diverse forms of media. For all of them to be suited under one program would make every server monotonous and pretty much the same. With different programs, different forms of diverse media are created.

um can anyone who is really into science and physics answer this question

Answers

Answer:

What question?

Explanation:

URGENT PLEASE HELP!!!!!
Which rule of composition gives an illusion of movement or context?
A. the rule of odds
B. the rule of three
C. the rule of space
D. simplification

Answers

Answer:

The answer is NOT D. simplification. I took the test and got this wrong, my next guess of what it could be would be C. the rule of space. I hope that this was helpful to you! :)

Maria has designed an app for a shopping mall. She is planning to use Google’s cloud testing facility. What will this facility do?
A.
It will offer actionable insights about users.
B.
It will enable her to manage a staged rollout.
C.
It will test the app on a wide range of physical devices.
D.
It will help her acquire new users.

Answers

Answer:

C I think

Explanation:

What process should be followed while giving a reference?
sam

Answers

Keep the information factual. Avoid opinions about issues such as personal conflicts
Qualify what you say. For example, “It was our experience or “In this situation
Make your praise specific. ...
Refer to specific tasks or projects
Avoid examples that highlight a candidate's weaknesses.
Other Questions
Write the equation of the line through the points (4, 5) and (12, 9) Write 0.00034 as a multiple of a power of 10. pls respond ... 30 points :) solve for mY=Mx+bWith explanation A family bought a total of 16 adult and child tickets to a magic show. Adult tickets are $10.50 each and child tickets are $7.50 each. The family paid a total of $141. How many of adult tickets, a, and child tickets, c, did they buy? What is the conflict of Pip | A short animated film Can someone help me write an essay about an memorable moment in your life ( it can be about you) People should consult the Food Guide Pyramid when determining what consumption levels arerecommended for each food group.FalseTrue Q. Explore the character of Mc Ginty by giving two contextual evidences .The Valley Of Fear How did trade after the Crusades influence culture in Europe? IM TIMED HELP MEEEEEEE!!! During a special sale, all video games cost $26 and all movies cost $14. Derrick plans to spend some or all of his $220 in birthday money on these movies and video games. Let "x" represet the number of games Derrick can buy and "y" represent the number of movies he can buy. Write the inequality that describes this situation in standard form. In the cell cycle which phase follows S phase, or DNA replication ? Solve the given system using the method of Example 3.25. x1 x2 = 1 3x1 + x2 = 3 x = 1 0 Correct: Your answer is correct. What is a better response than noise, silence, or revenge when one is wronged by another? What has the us emerged too Which part of the plot is most clearly the rising action Write a personal narrative about a hero in your life. The story should tell about an experience that shows why this person is a hero to you 50 POINTS pls need this nowwww!!!!!!! Help me! What is the value of x in the matrix equation below? Which of the following indicates that an endothermic reaction has occurred?O Heat is releasedO water is formedO Salt is producedO Temperature decreases See attachment the problem can be found in there