Linux is a powerful and free OS®️
-True
-False

Answers

Answer 1

Answer:

TRUEE

Explanation:

Answer 2
It’s is true that Linux is powerful and free

Related Questions

Choose the term that describes each step of the cycle.

------- : gets next instruction

---------- : interprets instruction

----------- : carries out instruction

------------ : saves result of instruction

Answers

Answer:

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

Explanation:

This question is about to tell the best and suitable terms for the given descriptions in the question.

As we know that a computer program is based on sets of instructions. The CPU carries out the processing using the fetch decode and execute cycle.

It is responsible for implementing a sequence of instructions called a computer program that takes input, processes them, and outputs the result based on processing.

A CPU mainly has three components such as control unit, Arithmetic logic unit,  and register.

The control unit controls all parts of the computer system. It manages the four basic operations of the Fetch Execute Cycle such as Fetch, Decode, Executes, and Storage.

So the correct terms of this question are:

Fetch: Gets next instruction

Decode: interprets the instruction

Execute: Carries out instruction.

Store: Save results of instruction.

Answer:

A). Fetch : gets next instruction

B). Decode : interprets instruction

C). Execute : carries out instruction

D). Store : saves result of instruction

Explanation:

I just did the Test on EDGE2020 and it's 200% correct!  

Also, heart and rate if you found this answer helpful!! :) (P.S It makes me feel good to know I helped someone today!!)  :)

Help pweeze this is due today :(

I will give u brainliest just pweeze, I need this answer :(

Answers

Answer:

just go in a website and see why important to them

Explanation:

and why the share with more people

Which of the following is true of functions? * 2 points A. Programs written with functions run more quickly B. Functions can help remove repeated code from a program C. Replacing repeated code with a function will reduce the number of commands the computer needs to run D. Functions are called once but can be declared many times

Answers

Answer:

I’m sure if I remember that this is “B.”

Explanation:

I have taken computer science class before so I remembered!

The option that is true of functions is B. Functions can help remove repeated code from a program.

It should be noted that the fact that programs are written with functions doesn't mean that they will run quickly.

Functions can help remove repeated code from a program. Also, replacing repeated code with a function doesn't reduce the number of commands the computer needs to run.

Read related link on:

https://brainly.com/question/17691320

Which precaution should you take while working on a computer

Answers

Answer: Maintain a cool temperature to avoid sweating

Explanation:

What are the lines of communication on a motherboard?

Answers

Answer:

buslines

Explanation:

hybfndndndjdkd

What is the output?
>>> phrase = "hello mom"
>>> phrase upper()

Answers

Answer:

The iutput would be nithing since nothing is printed out, how ever, the output of

>>> phrase = "hello mom"

>>> print(phrase.upper())

would be "HELLO MOM".

You would get the same results from this code,

>>> phrase = "hello mom"

>>> phrase = phrase.upper()

>>> print(phrase)

Answer:

The answer is HELLO MOM

Explanation:

I hope this helps, have a wonderful day!

A collection of computers, printers, routers, switches, and other devices
that can communicate with each other over some transmission medium
O network
O host part
subnet part
subnet

Answers

ermano envia foto de lo que necesitas yo te ayudo

write the seven tasks of previntng maintenance?​

Answers

Answer:

These are testing, servicing, calibration, inspection, adjustment, alignment and installation. Every maintenance team member should be conversant with and apply them accordingly. A preventive maintenance is a crucial component of every company's TPM program.

Jon wants to set up a trihomed DMZ. Which is the best method to do so? A. use dual firewalls B. use a single firewall with only two interfaces C. use a single three-legged firewall with three interfaces D. use dual firewalls with three interfaces

Answers

Answer:

The correct option is C) Use a single three-legged firewall with three interfaces

Explanation:

DMZ is an acronym for a demilitarized zone.

A DMZ network is one is situated between the internal network and the Internet. It is supported by an Internet Security and Acceleration (ISA) server.

The interfaces you'd get with the DMZ network are

A public network (Internet Protocol-IP) address  with a public interfaceAn internal network interface with a private network (IP) address  A DMZ interface with a public network (IP) address  

Unlike the back-to-back DMZ settings, a trihomed DMZ is unable to use private IP addresses. To use the trihomed DMZ, public IP addresses are a must suitable requirement.

Cheers!

It means fruit- trees garden.

Answers

Answer:

What does?

Explanation:

Do you have a question?

please respond not with answer but with comment.

Answers

Answer:.I used to play it but now I don’t;—;

Explanation:

How do commands inside an onEvent run different from commands outside?

Answers

Answer:

This is probably the most important reason. In an event-driven architecture, there can be no question that an event raised represents something that has happened.

Now, because Commands are something we want to happen, and Events are something that has happened, we should be using different verbs when we name these things. This drives separate representations.

Which of the following statements are true regarding Moore’s Law?
states that storage capabilities will triple every two years

is a purely abstract concept that does not clearly apply to the computing industry

was described by Gordon Moore in the early 2000s to predict growth in the fiber optic industry

relates to increases in processing power of computers and has been quite accurate since it was introduced in 1965

Answers

Answer:

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

Explanation:

The question is about Moore's Law.

The given options in this question are:

states that storage capabilities will triple every two years is a purely abstract concept that does not clearly apply to the computing industry was described by Gordon Moore in the early 2000s to predict growth in the fiber optic industry relates to increases in processing power of computers and has been quite accurate since it was introduced in 1965

The correct option to this question is 4. i.e:

Moore's Law related to increases in the processing power of computers and has been quite accurate since it was introduced in 1965. This law was based on a prediction and made by American engineer Gordon Moore in 1965. And it states that the number of transistors per silicon chip doubles every year.

While the other options are not correct because:

It does not state the storage capabilities that will triple every two years, but this law state that computing power and transistors on chips become double every year. It is not a purely abstract concept but it is applied in computing and this law become more famous due to its value. This law was presented in 1965.

Answer:DExplanation:

relates to increases in processing power of computers and has been quite accurate since it was introduced in 1965

Identify the parts of a spreadsheet by using the drop-down menus to select the part that corresponds to the labeled diagram to the right.

A

B

C

D

E

Answers

I believe d is the answer !

Answer:

A- Row

B- Column

C- Workbook

D- Cell

E- Sheet

Explanation:

Got a 100% on this, the person above is incorrect.

8.6 Code Practice: Question 1
Write a function named buildArray that builds an array by appending a given number of random two-digit integers (10-99). It should accept two parameters — the first parameter is the array, and the second is an integer for how many random values to add, which should be input by the user.

Print the array after calling buildArray

Answers

In python 3.8:

import random

def buildArray(arr, nums):

   i = 0

   while i < nums:

       arr.append(random.randint(10,99))

       i+=1

arr = []

numbers = int(input("How many values to add to the array:\n"))

buildArray(arr, numbers)

print(arr)

I hope this helps!

The function named buildArray that builds an array by appending a given number of random two-digit integers (10-99) and accept 2 parameters is represented below

import random  

def buildArray(array, integer):

   i = 0

   while i < integer:

       array.append(random.randint(10, 99))

       i += 1

   return array

print(buildArray([], 12))

The code is written in python.

A function is declared called buildArray. This function accept 2 parameters which are arrays and integer.

i is use to declare a variable assigned to zero.

while i is less than the integer(one of the parameter), random number between 10 and 99 is appended to the parameter array.

The value of i keeps on increasing until it becomes less than the integer.

The filled array is returned.

Finally, we call the function with the required parameters.

The bolded portion of the code are keywords in python.  

read more: https://brainly.com/question/18612252?referrer=searchResults

Which of the following statements best compares and contrasts the role of editors in a television news room and editors at a newspaper?

a.) Both television and print editors work to ensure the quality of production; however, television editors must have a background in film media.
b.) Both television and print editors must make sure content is accurate and appropriate; however, print editors must also consider the length of the content.
c.) Both television and print editors must make sure their sources are reliable; however, fewer people read print news, so fewer would know if a print editor makes a mistake.
d.) Both television and print editors work under tight deadlines, which cause a great deal of stress; however, print editors finish their work sooner than television editors.
Need this now please, thank you!!!!

Answers

Answer: It is A

Explanation:

HURRY IM TIMED the ability for search engines to return search results in relevancy ranking in an evolving capability true or false

Answers

Answer:

The answer is True

Explanation:

I took the quiz and got it right.

Someone help its about LA Doña 2

so basically I just wanted to know who has seen it all and where i can watch it

Answers

Answer:

If you look on Just watch it will show you the different people that currently have it right now it is sadly not on Netflix from what I could find out but it will probably be added later on.

Explanation:

Netflix sometimes takes its time adding shows which is sad but that is just how they work. I would recommend maybe trying it on a website that Just watch list or just buy the disc from eBay. either way, I wish you luck!

Question # 6 Fill in the Blank You designed a program to create a username using the first three letters from the first name and the first four letters of the last name. You are testing your username program again for a user whose name is Paula Mano. The output should be

Answers

Its PuaMano

Explanation:

got it wrong and it shows this answer for edge

You want to copy data from one cell or range to an adjacent cell or range in your spreadsheet, without using a shortcut key. Which of the following can you drag on your spreadsheet to do this?

Answers

How can you insert a new row into your data without disturbing an adjacent set of data on the same sheet? Highlight only the data where you'd like to insert a row. Right-click > Insert > Shift cells down.

After adding an image to her flyer, Danica played around to see which layout would look the best. At one point, her text was on top of her image. Which features can Danica use to fix the issue? Check all that apply. Position feature Wrap text feature Picture dialog box Insert tab Picture tools

Answers

Answer:

Position feature

Wrap text feature

Picture tools

Explanation:

Answer:

A.) Position Feature

B.)Wrap text feature

E.)Picture tools

Explanation:

Which of the following is NOT an example of application software?
Internet Explorer web browser
Photoshop image editing program
Microsoft PowerPoint presentation software
Windows operating system

Answers

Application software is a type of software that also carries out another personal, educational, and business function, and its further discussion can be defined as follows:

Each application is designed to support the user in a particular process that could be associated with productivity, creativity, and communication.In this question except for Windows all "web browser,  Photoshop, and presentation software" is a type of Application software, that is run on OS.  Windows is a software accumulation known as just an OS that controls a PC (personal computer).

Therefore, the final answer is "Windows operating system ".

Learn more:

brainly.com/question/2949220

HELP!!!!!
Your colleague has made a suggested change to an important document you are both working on. You disagree with their suggested change. They will be reviewing the changes you make before the final version of the document is submitted to your boss. You both work remotely and are in radically different time zones. What is the best step to take next?

Answers

Leave the room and let someone else figure it out!

Computer identity theft differs from theft in the real world in what major way?
A. Identity theft puts you in more physical danger.
B. Identity theft can affect your credit without your knowledge.
C. The banks will not assume your losses due to fraud.
D. Banks will replace your credit cards more quickly with identity
theft.

Answers

Computer identity theft is different from theft in the real world because B. Identity theft can affect your credit without your knowledge.

Computer identity theft simply means the use of someone's else private information by another person. It should be noted that identity thieves usually apply for loans by using an individual's credit card.

Computer identity theft is different from theft in the real world because identity theft can affect your credit without your knowledge. Identify thieves can also open bank accounts and use the credit cards in other people's names.

Learn more about theft on:

https://brainly.com/question/20609642

Answer:

B. Identity theft can affect your credit without your knowledge.

Explanation:

When you are brainstorming, what should you be careful to avoid?
A. Editing your ideas as you go
B. Setting boundaries for your session
C. Writing down all your ideas D. Setting a time limit for your session

Answers

It's most likely B. Setting boundaries for your session

reason: Brainstorming is supposed to be coming up with q bunch of creative ideas. setting to many boundaries may make it harder to come up with new stuff.

i need help with the rest also

Answers

Answer:

??? blackkkkkkkkkkkkkkkkk

Which entity might hire a Computer Systems Analyst to help it catch criminals?

a law enforcement agency controlled by the government
a private investigator who used to work for the government
a credit card company that does business with the government
a financial management firm with ties to the government

Answers

Answer:

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

Explanation:

The correct answer to this question is:

A law enforcement agency controlled by the government might hire a Computer System Analyst to help it catch criminals.

Because only law enforcement agency that is under control of government allows in any country to catch criminals. So, in this context the first option is correct.

While other options are not correct because:

A private investigator who used to work for the government does not need the services of a computer system analyst, because he may be assigned only one assignment. And, his purpose is to perform duty and complete the assignment. A credit company also does not allow the Government in any country to catch the criminal. A financial management firm also not allowed to catch the criminal, so in this context, only a law enforcement agency controlled by the government is allowed to catch the criminal. So, the first option of this question "a law enforcement agency controlled by the government" is correct.

Answer:

A

Explanation:

Select the correct answer. Which option correctly describes a DBMS application? A. software used to manage databases B. software used to organize files and folders C. software used to develop specialized images D. software used to create effective presentations

Answers

Answer:

oftware used to manage databases

Explanation:

Answer:

A. software used to manage databases

Explanation:

This is correct on plato

HOW CAN A PERSON GET BENEFITTED BY THE ICT BASEDSERVICES PROVIDED BY GOVERNMENT

Answers

Answer:

Explanation:

It aims to transform the entire ecosystem of public services through the use of information technology.ICT holds particular promise in areas of governance and public participation.  Age can use information to reduce corruption and increase government transparency, accountability, efficiency and so finally gud night guys and take care.

plz mark as brainliest

why is it when you put earbud aux cords in a phone or computer they sound weird until you move the aux cord? Then it is somehow clear. Why?

Answers

Answer:

that might just be the headphone cord itself or it might be the port on the pc/phone

Explanation:

i had this happen with my old droid razr hd i thought it was the aux cord on my speaker and head phones but i used the same things on a friends phone and they worked just fine and this might be do to an old  or broken port on the phone /c my phone headphone port got used almost everyday and it was just the port you can replace this on some tech or you could just use bluetooth if the tech doesent have it buy and adapter.

            hope this helps!!!

Other Questions
Uniform Circular Motion: You need to design a wheel for testing purposes such that its rim will have an acceleration of 1.5 g when the rim is moving at 37 m/s while spinning. What should be the diameter of this wheel? Find the values of x and y by writing two equations and solving the system of equations. jaleia borrows $1500 from the bank. To pay back the loan this year, she will pay the bank the amount she borrowed plus 12% simple interest. Jaleia wants to know the total amount she will pay back[tex]y \\ [/tex] how do you write 564,000,000 in scientific notation A mid-ocean ridge separates the Pacific plate and the Nazca plate off the western coast ofSouth America.PacificplateNazcaplateSouthAmericaNMid-ocean ridgeW-O-ESWhich statement best describes the relative motions of the Pacific and Nazca plates?aThe Pacific and Nazca plates are both moving to the west.The Pacific plate is moving to the west and the Nazca plate is moving to the east.The Pacific and Nazca plates are both moving to the east.The Pacific plate is moving to the east and the Nazca plate is moving to the west.d Which star may have once been similar to our sun in mass and luminosity?A. DenebB. SpicaC. Procycon bD. Proxima centauri Scientists have successfully inserted the human gene for insulin into bacteria.The resulting bacteria are able to produce human insulin as shown above. Which ofthe following best explains why this is possible? what is the measure of the larger angle in this degree? How do you do these two questions? Which of the following statements is true about a story's narrator? a. The narrator is usually the author so that he or she can tell you what all of the characters are thinking or feeling at any time. b. The narrator controls what information your reader receives about events in the story and what the characters are thinking. c. The narrator is usually one of the characters in the story who knows everything about what the others are thinking and feeling. d. The narrator controls only the information that the main character is aware of and so is limited by that character's experiences. Please answer! Biology stuff... What types of laws are there in the world? Human activities can have an impact on natural disasters. t or f Write code which takes inputs and creates two Rectangle objects (using the edhesive.shapes.Rectangle class) and compares them using the equals method.JAVA!! some one plz help me asapp I will give brainliestwhat conclusion can you make regarding how humans affect biodiversity? use evidence from the graph to support your answer After the semester is over, you discover that the math department has changed textbooks (again) so the bookstore won't buy back your nearly-new book. You and your friend Anna decide to get creative. You go to the rook of a five-story building and look over the edge to the reflecting pool 60 feet below. You drop your book over the edge at the same instant that Anna chucks her book straight down at 30 feet per second. By about how many seconds does her book beat yours into the water (approximately)? Your function is s(t)=16t2+60 Anna's function is s(t)=16t230t+60 I will mark you brainliest A driver receives -25 points for a rule violation. What integer represents the change in points after four rule violations? 1. Marisol es la ___________ nica de Carlos y Lucia.2. Los _______________ de Marisol son Jos Alberto y Josefina.3. Jos Alberto y Josefina tienen dos ________________ y cuatro ____________.4. Laura, la ____________ de Carlos, es la _____________ de Marisol.5. Pablo, Sofa y Rubn son los ______________ de Carlos y los ____________ deMarisol.6. La __________ de Carlos es Lucia. Ella es la ____________ de Marisol. Ammonia's unusually high melting point is the result of:__________ a. dipole-dipole forces. b. London dispersion forces. c. hydrogen bonding. d. covalent bonding. e. ionic bonding.