Complete the sentence with the correct response.

The popularity of operating systems is determined by studying the
share of computer sales worldwide.

Answers

Answer 1

answer:

because by studying the data of computer shares you know from the consumers what they like and don't like about their operating systems!

explanation:

hope this helped <3 also if wouldn't mind could you pls give me brainliest? (im trying to level up) thanks! :)


Related Questions

What the function of a css page

Answers

Answer:

Css is used to define styles for your Web pages including the design layout and variations in display for different devices in screen sizes

Use the file format if you need to create macros in an Excel file.

Answers

Answer:

Use the xlsm file format if you need to create macros in an Excel file.

Explanation:

Answer:

E

Explanation:

xlsm file

Note: For Python 2
The problem says, “Monthly Minimum Payment Calculator that calculates a month’s minimum credit card payment based on the following two parameters; Minimum required percentage and Credit card balance.” (This is what we need to code in Python 2)
Then, there is a resource that can be used to help with the problem, “Credit cards also use fairly simple math, but it may take some legwork to find out which numbers to use. Lenders typically use a formula to calculate your minimum monthly payment. For example, your card issuer might require that you pay at least 2% of your outstanding balance each month. 1 They might also have a dollar minimum of $25 (so you pay whichever is greater). It’s usually wise to pay more than the minimum (ideally, you pay off the entire balance every month), but the minimum is the amount you must pay to avoid late charges and other penalties.”
Then it gives us an example: “Example: Assume you owe $7,000 on your credit card. Your minimum payment is calculated as 3% of your balance:
Payment=MinRequired x Balance
Payment=0.03 x $7,000
Payment=$210

Answers

In python 2:

def monthlypayment(min_required, balance, dollar_minimum):

   if dollar_minimum > min_required * balance:

       return "Your minimum payment is $" + str(dollar_minimum)

   else:

       return "Your minimum payment is $" + str((min_required * balance))

Which application software would a teacher use to compute a student's course percentage?

a. presentation software

b. word processors

c. spreadsheets

d. database

Answers

Answer:

spreedsheet

Explanation:

This would help them easily average grades

describe how technological development has been evolutionary. cite examples of how products have evolved

Answers

Answer:

Technology spawns new generations of products by using existing components, a phenomenon he calls combinatorial evolution. The change in 'species' can thus be quite radical in a short period of time. The rules of Technological evolution thus make a strong argument for accelerating evolution.

Some are The Internet,  Genetic engineering, Digital media, Personal computers, Space flight, Mobile phones, Nuclear power, and Electronic funds transfer.

Explanation:

Evolutionary trend describes the changes undergone by a particular component or phenomenon over a certain period of time.

The concept of evolutionary change can be attributed to the technological changes or development whigh has been witnessed over time as preexisting concept are modified and revamped to increase capability and productivity.

Communication as gone from postal services to fax ; mail and even instant messaging

Transportation as eclipsed from the use of animals to cars ; ships, airplane and now hyperloops on the horizon

Therefore, modification to already existing technological footprints marks evolution.

Learn more :https://brainly.com/question/14563812

How can you drop two eggs the fewest amount of times, without them breaking?

Answers

Answer:Both eggs are identical. The aim is to find out the highest floor from which an egg will not break when dropped out of a window from that floor. If an egg is dropped and does not break, it is undamaged and can be dropped again. However, once an egg is broken, that's it for that egg.

Explanation:

Answer:

the first person is right

Explanation:

it is a logical answer

Which are effective thesis statements? Check all that apply.
In this paper, I will talk about healthy foods.
Adopting a positive attitude can reduce stress, prevent anxiety, and help you lead a better life.
Video games can teach important values such as teamwork, perseverance, and dedication.
This paper will show the many ways technology can help people lead healthier lives.
Electives classes are very popular in high schools.
O Sugary drinks, snacks, and desserts should be avoided.

Answers

Question:

Which are effective thesis statements? Check all that apply.

Options:

In this paper, I will talk about healthy foods. Adopting a positive attitude can reduce stress, prevent anxiety, and help you lead a better life. Video games can teach important values such as teamwork, perseverance, and dedication. This paper will show the many ways technology can help people lead healthier lives. Electives classes are very popular in high schools. Sugary drinks, snacks, and desserts should be avoided.

Answer:

B.) Adopting a positive attitude can reduce stress, prevent anxiety, and help you lead a better life.

C.) Video games can teach important values such as teamwork, perseverance, and dedication.

D.) This paper will show the many ways technology can help people lead healthier lives.

Explanation:

I just did the assignment on edge 202 and got it right!

The effective thesis statements are :

The adopting of the positive attitude can reduce the stress, Video games can teach us important values such as teamwork,technology can help people lead healthier lives. What is a thesis?

A thesis or a dissertation is research that is done by the candidate for taking an academic degree.

The research is usually done to find a solution to the problem or the hypothesis. The thesis is thus a work of art that explains the details of reaserach.

The above statement tells us that a positive attitude can reduce stress. Video games teach us teamwork and technology is making lives healthier.

Find out more information about the thesis.

brainly.com/question/17915079

Add my ps4 account FG_Colut_ ωωω

Answers

free points ?
jfkdhsjfka

Answer:

i will

Explanation: for points on here bro

A chatbot is a computer program designed to emulate human conversation. For this program, you will use if statements, user input, and random numbers to create a basic chatbot.

The Scenario
You have decided to start a website and are creating a chatbot prototype to show investors so you can raise money and launch your website.

Your chatbot should ask the user the following (minimum requirements for the grader) and then give answers depending on the answers the user inputs:

at least 5 questions
at least 2 if-elif-else statements
the use of the random module and randomly generated numbers
Based on these criteria, some responses will be based on what the user types and some will be based on random numbers.

For example, if the chatbot asks how the user is doing, your chatbot might respond I’m sorry to hear that. in response to a user input of sad, or That's great! in response to a user input of happy.

Additionally, you could also have a random number generated between, say, 1 and 3 and have a corresponding response depending on the number to randomly answer with That is great to hear. or So interesting., and so on.

Sample Run
Please note that due to the infinite possibility of questions that can be asked, your program will be different—this is only one example.

What is your first name?

Pascal

What is your last name?

Smith

Hi there, Pascal Smith, nice to meet you!


How old are you?

17

17 is a good age.

You are old enough to drive.


So, Pascal, how are you today?

Happy

You are happy.

That is good to hear.

Tell me more.


I am just happy.

That's good to hear.


Well, Pascal, it has been nice chatting with you.

Answers

In python:

import random

good_responses = (["That's cool!", "Wow!", "That's great to hear!", "Tell me more"])

bad_responses = (["I'm sorry", "That sucks!"])

first_name = input("What's your first name? ")

last_name = input("What's your last name? ")

print(f"Hello {first_name} {last_name}, nice to meet you!")

age = int(input(f"How old are you, {first_name}? "))

if age > 17:

   print("Wow, you're old enough to vote!")

else:

   print("Quite young, aren't you.")

color = input("What's your favorite color? ")

print(good_responses[random.randint(0,3)])

feeling = input("How are you feeling? (sad/happy) ")

if feeling == 'sad':

   print(bad_responses[random.randint(0,1)])

else:

   print(good_responses[random.randint(0,3)])

print(f"It's been nice chatting with you, {first_name}!")

I hope this helps!

In this exercise we have to use the knowledge of computational language in python to write the code.

This code can be found in the attached image.

To make it simpler the code is described as:

import random

good_responses = (["That's cool!", "Wow!", "That's great to hear!", "Tell me more"])

bad_responses = (["I'm sorry", "That sad"])

first_name = input("What's your first name? ")

last_name = input("What's your last name? ")

print("Hello {first_name} {last_name}, nice to meet you!")

age = int(input(f"How old are you, {first_name}? "))

if age > 17:

  print("Wow, you're old enough to vote!")

else:

  print("Quite young, aren't you.")

See more about python at brainly.com/question/22841107

I WILL MARK BRAINLIEST PLZ ANSWER

Answers

A string is used to hold words and phrases, therefore, Maria should use a string variable.

Spend some time exploring the components inside of a computer by performing online research into the topic. You can begin with this link, What does the inside of a computer look like?, and then continue to explore other websites of your own finding to answer the questions below, if needed.
How do you think the computer components would change if you were looking at a tablet computer or a smartphone?
What is one major component that would not be found in a tablet or phone, and how has modern computing made that component less important?
What component is in a tablet or phone that wouldn’t have been in a desktop (remember, you can search online for ideas)?

Answers

Answer:

1.         Chassis (case)

Data cable: (IDE, SATA)

Disc drive: CD-ROM, CD-RW, DVD-ROM, or Blu-ray.

Expansion card (ISA, PCI, AGP, and PCI Express).

Fan (Heat sink)

Floppy drive

Hard drive: HDD, SSD

Memory (RAM)

Motherboard

Power cable (Molex)

Power supply (PSU)

Processor (CPU)

The expansion cards are often devices such as your video card, sound card, network card, etc.

It is common for a computer today to have these components built into the motherboard, also referred to as integrated components.

Network card

Sound card

Video card

What parts are needed for a computer to work?

CPU (processor)

Memory (RAM)

Motherboard

Storage device (e.g., hard drive)

2.         Smartphones and tablets have less storage capacity than a computer, and their components cannot be modified like a desktop computer's can. Desktop and laptop computers can run more powerful software than a smartphone or tablet due to their size, components, and less restrictive power requirements.

3. A hard drive

Since tablets and phones are compact, they are better off not having a big, giant, bulky storage device like hard drives. Modern computing made hard drives less important by developing Solid-State Drives (SSDs) and extremely dense (512 bit) storage that can provide the same if not more storage than a traditional hard drive at the fraction of the size.

4.  Since tablets and phones are mobile devices, they would be outfitted with a GPS (Global Positioning System) so that location services would work with them. Desktops do not usually have GPS components.

Explanation:                            / \

I already explained up above. |

The parts that are needed for a computer to work are:

CPU (processor)Memory (RAM)MotherboardStorage device (e.g., hard drive)

What is a computer?

A computer is an electronic device for storing and processing data according to instructions given to it in a variable program.

It is common for a computer today to have these components built into the motherboard, also referred to as integrated components.

Desktop and laptops can run more powerful software than a smartphone due to their size, components, and less restrictive power requirements.

Learn more about computer on:

https://brainly.com/question/24540334

#SPJ2

What is an object?

a. An element on a Web page that contains data and procedures for how that item

will react when activated

b. An element on a Web page that expedites the downloading of Web pages

c. An element on a Web page that condenses the amount of space the page uses in

a computer's cache

d. An element on a Web page that interacts with all programming languages and

enables them to function universally with all browsers

Answers

Answer: I believe the answer is A.

yall how do you tell someone you like them
(I'm in high school so like)

Answers

Answer:

Write it down on paper and tell them or just hang out with them and flirt and maybe hint at them that you like them. That maybe will help if not tell me.

Explanation:

What are some real-world situations that involve infinite loops, for loops, and while loops?

Answers

Answer:

We work hard to get paid at the end of each month. Another could be the water cycle.

Explanation:

There aren't many things that can never end. The sun will eventually get chilly and all life on earth will cease to exist since the earth is not limitless.

There is nothing that can measure an infinite thing that extends for countless light years; space and time are the only truly limitless things. Nobody actually knows how long the planet has existed for; time never ends. Long before the alleged huge boom, the cosmos could have been created. God is the limitless thing that existed long before the universes were created. He created the universe and everything inside your head. You would not have ever been born without him.

Time and space are examples of an infinite loop, but I would also include human life. Why? You will be revived and reincarnated once you die, and you will then live forever.

The water cycle is an example of a while loop since it will continue as long as the earth and water do. But the planet Earth probably won't last forever.

For loop: As the previous commenter noted, someone who works hard every month would be regarded as a for loop.

To learn more about infinite loop ,for loops, while loops refer to:

https://brainly.com/question/13148070

#SPJ2

The first Tacoma Narrows Bridge in Washington crossed over a strait in Puget Sound. At the time the suspension bridge was built, construction workers noticed that it moved up and down in the wind. Measures to stop the bridge's movement were ineffective, but the bridge was opened to the public on July 1, 1940. The bridge collapsed on November 7, 1940. Luckily, no people were seriously injured. Determine which technological design criteria the Tacoma Narrows Bridge did and did not meet. Explain your answer.

Answers

Answer:

They failed to create, test, and retest a model.

Explanation:

Technological design refers to the series of steps involved in developing a technology for use. Steps involved in the technological design include; identifying the problem, making research on it, proffering certain solutions, and choosing the best, developing a model, testing and refining the model, and then presenting the final solution.

The construction workers opened up the bridge even when they knew that the measures were ineffective. They did not create a model and test it thoroughly to confirm that it would work and was effective before launching the final solution. This oversight led to the collapse of the bridge.

Answer: explained

Explanation:

Technological design refers to the series of steps involved in developing a technology for use. Steps involved in the technological design include; identifying the problem, making research on it, proffering certain solutions, and choosing the best, developing a model, testing and refining the model, and then presenting the final solution.

The construction workers opened up the bridge even when they knew that the measures were ineffective. They did not create a model and test it thoroughly to confirm that it would work and was effective before launching the final solution. This oversight led to the collapse of the bridge.

Do you think more devices connect to the internet wirelessly or wired? Why?

Answers

Answer:

yes morr devices connect to the internet wirelessly b cos no wire in BTW dat can cos destruction like if d wire has been peeled

Explanation:

plz give me brainiest

Pleaseee Help!!!!

What industry holds a significant place in the commercial phere of economies all over the world due to factors such as the growing variety of game hardware and peripheral devices, emerging markets, and increasingly diversified demographics?

A)The Medical software industry

B)The video game industry

C)The graphic artistry industry

D)The international travel industry

Answers

Answer: B
Hope this helps!!
And do you want an explanation?

answer is A and D if not try something else

Answers

did you mean to answer someone's question

Who is the entity responsible for keeping a record of employee injuries and illnesses?
a. The federal government
b. The employer
c. The employee
d. The state government

Answers

Answer:

B. the employer

Explanation:

Hope this helped. Hav an amazing day/night!!

Answer:

B.The employer

Explanation:

I got it right on edgen

Hello, Anyone bored and want to finish my edu typing for online school? my teacher says it's
a grade to TYPE on a keyboard?! I just don't have the energy to do that. The website is called edu typing. Let me know if you want to help with my homework, I'll give you my account password and information (it's a school account, not important) Please do it correctly don't get me in trouble xD. you have to finish "Alphabetic keys and symbols" and "Number & Symbols" you'll see them at the bottom left of the screen. I LOVE YOU IF YOU DO THIS FOR ME no cap​

Answers

Answer:

ok

Explanation:

How t f did i get this wrong

Answers

Answer: #3 is 3/4, just subtraction I believe, and for #4, triangles aren't my strong pint, but I think 2.625. Again, you may need to double check

In a computer instant messaging​ survey, respondents were asked to choose the most fun way to​ flirt, and it found that ​P(D)equals0.660​, where D is directly in person. If someone is randomly​ selected, what does Upper P (Upper D overbar )​represent, and what is its​ value?

Answers

Answer: 0.340

Explanation:

If someone is randomly​ selected, what does Upper P (Upper D overbar )​represent an individual who doesn't flirt directly in person.

Since P(D) = 0.660

Upper P (Upper D overbar )​ will be:

= 1 - 0.660

= 0.340

WILL MARK BRAINLIEST PLZ ANSWER WITH EXPLANATION.

Answers

The best possible search option will be integrated development environment.

In the software world, we shorten integrated development environment with the acronym, IDE. We use IDE's to develop software.

what human-readable data

Answers

Explanation:

what?? there is no question

Answer: A human-readable medium or human-readable format is any encoding of data or information that can be naturally read by humans.

Keeping your lens clean will help you avoid smudges or spots on your photographs

Answers

Answer:

use a towel

Explanation:

Answer:

Yes the wipe should help on cleaning it and it will remove spots.

Explanation:

Leila was writing an article in which she used stock market data extracted from Yahoo Finance. She was about to complete it. She has mentioned in the article that she extracted data from Yahoo finance. If she sends it to some journal for publication, then will it be necessary to get permission letter from Yahoo? Is it against the copyright rules? Explain your answer​

Answers

Reusing Yahoo's data is not a violation of copyright, especially when applied under a "fair use" case like Leila's paper (because it is merely citing a previous work and creating an original response to it). However, even if her paper did not fall under fair use guidelines, data is not copyrightable because it does not meet the US copyright threshold of "creativity and originality." In fact, even if she used bar charts or other data visualizations from Yahoo Finance, these are not original enough to give Yahoo any sufficient claim of copyright ownership, so Leila need not ask for permission.

Please mark as Brainliest.

In computer programming, what is a conditional?

Answers

Answer:

In computer science, conditional statements, conditional expressions and conditional constructs are features of a programming language, which perform different computations or actions depending on whether a programmer-specified boolean condition evaluates to true or false. Apart from the case of branch predication, this is always achieved by selectively altering the control flow based on some condition.

Explanation:

Conditional (computer programming) In computer science, conditional statements, conditional expressions and conditional constructs are features of a programming language, which perform different computations or actions depending on whether a programmer-specified boolean condition evaluates to true or false.

Conditionals essentially test for true and false.

For instance, in python:

if 1 > 0:

   the code does something.

Since 1 is greater than 0 the conditional is true, but if the if statement is false, for instance:

if 1 < 0:

   the code does something

else:

   the code does something else

The if statement is skipped because 1 is not less than 0 and the else statement runs.

Which of the following would be studied using an Earth-observing satellite?
tracking changes in land used for corn production
tracking heat and energy being released by the earth
O tracking atmospheric changes resulting from volcanic eruptions
tracking cloud cover and its relationship to global warming
Help plz will give BRAINLYIST

Answers

Answer:

climate is what you expect and weather is what you get. More formally, climate is the long-term average of temperature, precipitation, and other weather variables at a given location

Explanation:

Answer:

Geography

Explanation:

The system tray contains

the operating system

the computer's hard drive

the battery life

Quick Launch


Please answer quickly, will give brainliest when I can.

Answers

Answer:

Quick Launch

Explanation:

The system tray contains Quick

Launch

I hope you will give brainliest

Answer:

Quick Launch

Explanation:

Binary number 10101001

Answers

The number would be 169!
Other Questions
can you guys help me, pleaseWhy is it necessary for living organisms to have enzymes to speed up chemical reactions? What particle is emitted during the following transmutation: 6729Cu6730Zn+____?A.beta particle,01eB.positron,01eC.alpha particle,42HeD.gamma particle,00 A pass at a water park is $58. Halfway through the season, the pass is discounted by 20%. What was the discounted price? Human skin has a thickness of about 5 * 10-3 meter. Agrain of sand has a thickness of about 1* 10-3 meter.About how many grains of sand would it take to match the thicknessof human skin?Grains of SandHuman Skin(1 x 10)(5 x 10-) What factor influence how people use money? In 1952, who discovered the spiraling shape of DNA? a.Rosalind Franklin b.James Watson c.Francis Crick d.Gregor Mendel Which is NOT an example of the three trigonometric reciprocals of sine, cosine and tangent?A. Cosecant B. secantC. theoremD. cotangent The heart gets its own blood supply through the______ circulation PLS HELP ME Griddling is cooking a food item on a _______, ________________ surface (known as a griddle) or in a relatively dry, ___________________-bottomed fry pan or _________________________________________. This body of water can be described as: The part of the mouth of a stream in which the water level is influenced by the lake or sea into which the stream flows. This is where fresh river water mixes with ocean water. A. estuary B. mangrove swamp C. salt marsh D. watershed Read this excerpt from "The All-American Slurp." Mother's approach was to memorize lists of polite phrases that would cover all possible social situations. She was constantly muttering things like "I'm fine, thank you. And you?" Once she accidentally stepped on someone's foot, and hurriedly blurted, "Oh, that's quite all right!" How does this excerpt support the main conflict of the story? It illustrates the challenges of understanding a new language and culture. It proves that mothers and daughters disagree about how to study. It suggests that careless behavior can cause injuries to others. It demonstrates the importance of manners in all cultures. 3. In the human body, food is transformed into various kinds of energy. The nervous system consists of many cells called neurons. These neurons send electrical signals across the body. This means that in some parts of the human body, the energy transformation is:Electrical to chemicalChemical to electricalRadiant to chemicalRadiant to electrical -6n - 20 = -2n + 4(1 - 3n) which is the function represented by the table? What is a controlling image? The temperature in Bloomington on Sunday was 32.6C. On Monday, the temperature changed by -8.25C. What was the temperature on Monday?A. -40.85CB. -24.35CC. 24.35CD. 42.25 please answer this for me Read this sentence by Ralph Ellison:When I discover who I am, I'll be free.The author uses the word discover to emphasize which idea about freedom?A. It requires a journey of self-knowledge.B. It's made possible through education.C. It means following a set path.D. It's an impossible task for everyone. The transport of an ion across a membrane against its concentration gradient can be accomplished by: milkweed What are black pearls and why were they valuable?