Focusing on the general characteristics of a problem or object, while ignoring the details, is a technique called
O refinement
O abstraction
O decomposition
O pattern recognition

Answers

Answer 1

Answer:

Abstraction

Explanation:

In computer science, abstraction has a similar definition. It is a simplified version of something technical, such as a function or an object in a program. The goal of "abstracting" data is to reduce complexity by removing unnecessary information. At some level, we all think of computers in abstract terms.


Related Questions

If you set up a network in your home to share your internet connection with several laptops, what type of network have you create? p2p, client server, VPN, or firewall

Answers

Answer:

P2P

Explanation:

Originally stood for "Peer to Peer." The "colleagues" are computers in a P2P network that are linked via the Web to each other. By having a central server, files can be exchanged directly among devices on the network. In other words, any machine on a Distributed system becomes both a file server and a client.

Which line is most likely an error? A-“hello” B-hello C-“100” D-100

Answers

Answer: I think it is c

Explanation:

The error is most likely C. Hello quoted is proper. ("Hello") Eliminate A. Hello is proper as well so eliminate B. Now, we are at C. I Believe this is the answer since it is 100 quoted ("100"). 100 quoted does not make since unless used in a sentence such as "I bought 100 apples today for a good price!" D cannot be the answer since it is 100 all by itself. Thus, your answer should most likely be C, "100".

Microsoft Word, Google Chrome, and Windows Media Player are examples of

Answers

Answer:

They are all examples of software.

Windows Rights Management Services gives the user which ability?

Answers

It gives the ability to print, copy, edit and forward and also encrypted information in the operating system so your personal data is kept safe.

look at the picture lol

Answers

Answer:

Zoom in more please and than i can help

Explanation:

Answer:

I would go with the first blue highlighted one... but i could be wrong

i hope i helped

if i didn't... i am sorry, i tried.

you are working on creating a business document with two other co-workers. Based on just information, which of the following pre-writing strategies would be the best for you?(A.P.E.X.)

Answers

Brainstorming, Rationalizing, and Rough Drafts.

Explain two options you have in order to abide by the move over law??? PLEASE HELP ME ASAP!! ​

Answers

Answer:

you can either move over if on an interstate into a different lane safely. if there is only one lane you must reduce your speed

what are some tips to stay focused in school, and to complete work faster? ​

Answers

Answer:

Sometimes listening to music or chewing gum.

Explanation:

When I need to focus, I like listening to music and sucking on a hard candy or chewing gum.

Pls give Brainliest!!

Answer:

What I do to focus in school is to try and ignore everything that is going on around you. ( what your classmates are doing ) Drown out the noise with music if your allowed to listen to music. Ask the teacher is you can go somewhere quieter

Explanation:

Hope this helps, Have a Wonderful Day!!

Write a code in Python that will can accept grades with decimals and convert them to their equivalent letter grade in the grading scale:
A: 90 - 100
B+: 87-89
B: 80-86
C+: 77-79
C: 70-76
D+ : 67-69
D: 60-66
F: 0-59
Z: Incomplete

Answers

grade = float(input("Enter your grade: "))

if 89 < grade < 101:

   print("A")

elif 86 < grade < 90:

   print("B+")

elif 79 < grade < 87:

   print("B")

elif 76< grade < 80:

   print("C+")

elif 69 < grade < 77:

   print("C")

elif 66 < grade < 70:

   print("D+")

elif 59 < grade < 67:

   print("D")

elif -1 < grade < 60:

   print("F")

else:

   print("Z")

I hope this helps!

To uncompress the data back into its original binary state, you simply reverse the process. This technique is an example of what type of compression?

Answers

Answer:

losless compression

Explanation:

how many ones dose it take to get 9 tens

Answers

It takes 90 ones to get 9 tens
The answer would be 90:)

Explanation: there are 10 ones in one 10 so if you multiply 10 times 9 it’s 90

what is 2D thinking and 3D thinking? i literally don't understand

Answers

Answer:

Two dimensional thinking implies concepts that are flat or only partially representative of the whole. Three dimensional thinking implies the first part of 2d thinking conjoined with intersecting dimensions rendering a deeper field of meaning.

Explanation:

Choose all items that represent essential features of excellent navigation menu design.

uses clearly and simply labeled links

is consistently styled and located

contains a link to a site map

is intuitive and easy to use is available on all pages

in the site employs a drop-down list​

Answers

Answer:

A,B,D,E

Explanation:

Answer:

A- uses clearly and simply labeled links

B- is consistently styled and located

D- is intuitive and easy to use

E- is available on all pages in the site

What are three print output options available in PowerPoint?
A. Handouts, Slides, Speaker Notes
B. Outline, Kiosk, Overheads
C. Overheads, Handouts, Slides
D. Kiosk, Handouts, Computer

Answers

Answer: .A

Explanation: i got it right

Answer:

'A' on edge 2020

Explanation:

Just took the test

What are the steps to customize a slide show?

Go to Slide Show tab, select Hide Slide, select the slides to hide, and save.
Go to Slide Show tab, select Set Up Slide Show, select show type Custom, and save.
Go to Slide Show tab, select Custom Slide Show, select slides to be shown, and save.
Go to Slide Show tab, select Custom Slide Show, select Record Slide Show, and save.

Answers

Answer: Third one

Explanation: I got it right

Answer:

Third one

Explanation:

Imagine yourself writing computer programs in the future. Which do you think would be generally more important to your programming goals: ease of programming or speed of computation? Why do you think this would be more important? Describe a situation for which the other goal would be more important.

Answers

Answer:

to make sure ur comsters are satified

Explanation:

people can use social media responsibly by what​

Answers

Answer:

spread love not hate n password diligent

By limiting their time on social media

Explanation:

WILL MARK CORRECT ANSWER AS BRAINLIEST PLSSSS HELP!

Cecilia is thinking about studying at the table in her kitchen. She wants to make sure she would be choosing a good study environment, so she quickly looks around the room. She decides to study somewhere else after determining that it is a poor study environment. Which factors most likely made Cecilia's kitchen a poor study environment? Check all that apply.

Her little brother was playing with toys on the kitchen floor.
There was a large lamp next to the kitchen table.
There was a pile of magazines and papers on the kitchen table.
There was music playing loudly in the background.
There was a vase filled with flowers by the kitchen sink.

Answers

Answer:

there was music playing loudly at the background

Answer:

Her little brother was playing with toys on the kitchen floor.

There was a pile of magazines and papers on the kitchen table.

There was music playing loudly in the background.

brainliest PLZ:)

4.8 Code Practice: Question 1
Instructions
Write a for loop to print the numbers 5, 10, 15 … 75 on one line.

Expected Output
5 10 15 20 25 30 35 40 45 50 55 60 65 70 75

Answers

I included my code in the picture below. Best of luck.

Loops are used to perform repetitive operations.

The for loop in Python is as follows:

for i in range(5,76,5):

   print(i,end =" ")

The syntax used for the range in for loop is: (start,end+1,increment)

The start represents the first value to be printed.

So: start = 5

The end represents the last value to be printed.

So: end = 75

Because the end value will not be inclusive, the value is incremented  by 1

The increment is 5

Read more about similar programs at:

https://brainly.com/question/21298406

A battery is connected to a light bulb in a circuit. There is a current of 2 A in the light bulb. The voltage of the battery is 1.5 V. What is the resistance of the light bulb?

Answers

Answer:

The current in a circuit is directly proportional to the electric potential difference impressed across its ends and inversely proportional to the total resistance offered by the external circuit. The greater the battery voltage, the greater the current.

Explanation:

PLEASE HELP ME ASAP!!! Looking at the misty rain and fog (pictured above) Explain at least two defensive driving techniques you would utilize to adjust your driving and lower your risk?? ​

Answers

1.Slow down 2. Break earlier

How do I write my name in binary code?

Answers

Answer:

qUE

wHAT CODE

Explanation:

How does Python recognize a tuple?

Answers

Answer:

Tuples can be recognized like this,

tuple = 'hello', 'world'

or tuples can be recognized like this

tuple = ('hello', 'world')

you can see the value of a tuple by simply printing it out like so,

print(tuple)

Answer:

Tuples can be recognized like this,

tuple = 'hello', 'world'

or tuples can be recognized like this

tuple = ('hello', 'world')

you can see the value of a tuple by simply printing it out like so,

print(tuple)

Explanation:

Which command is located in the Action Settings dialog box that allows a user to set a linked or embedded object as a trigger to perform an action?

Object action
Hyperlink to
Run action
Highlight click

Answers

Answer:

Object action was the answer.

Explanation:

Answer:

Object action is the answer

Explanation:

I got it right on the unit review

The ideal hash function:

A. Should be unfeasible to find two inputs that map to the same output
B. Should be unfeasible to learn anything about the input from the output
C. Basically we don’t want people to figure out what was said
D. All the above

Answers

I believe the answer is A
Hope this helps

1. You are designing a program that will keep track of the boxes in a doctor’s office. Each box will have three attributes: date, contents, and location. Write a class that will consist of box objects.

Answers

Answer:

Public class Box

{

private String myDate;

private String myContents;

private String myLocation;

public class Box(String date, String contents, String location)

{

myDate = date;

myContents = contents;

myLocation = location;

}

}

Hope this is what you're looking for! If not, let me know and I can try to help more. :)

Each box will have three attributes: date, contents, and location. It is class box.

What is class box?

There is a method in the box class of this program. Box is a brand-new data type for the class.

Box is used to declare objects of this type as having double height; Class declaration just generates a template; it does not generate any actual objects. None of the objects of type are affected by this code. Box void volume

Therefore, Each box will have three attributes: date, contents, and location. It is class box.

To learn more about class box, refer to the link:

https://brainly.com/question/14427083

#SPJ2

What do the different top level domain names signify, including .com, .org, .edu, .gov, .mil, and .net?

Answers

Answer:

They signify different purposes for each website

Explanation:

.gov = A government owned website. Can include non-U.S. governmen websites, the White House, or other government owned websites.

.edu = A domain name for organizations with a focus on education (even for those that are non-U.S.). That means that you can find .edu domains on college websites, universities, and other educational institutions.

.mil = Mil is a shortening of military. It is for the U.S. Department of Defense and subsidiary or affiliated organizations.

.org = Org is a shortening of organization, meaning that this domain name is usually for non-profits and personal sites, but can also be used schools, open-source projects, and even some for-profit organizations.

.com = A website with the domain name .com signifies a commercial website (hence the 'com'). This can include business websites, websites that want to make money online, personal websites, blogs, portfolios, and more.

.net = Comes from the word network. Originally, it was supposed to be only for organizations involved in networking technologies, such as Internet service providers and other infrastructure companies, but restrictions were never enforced so .net was used as an general purpose name space. However, it's still popular with network operators and the advertising sector.

agree and tell why becoming a priest/nun is an honorable job PLEASE ASAP​

Answers

As a priest or nun you are helping the community of people who you relate to. They do a lot of charity work also so you are making the world a better place. And if your religious you are in a career that helps you grow in your faith.

Which of the following is an example of gameplay in a video game
A: the art of a game

B: the player interacting with the game world and game mechanics

C: the personalities of all the characters

D:all of the above

Answers

Answer:

the correct answer is B. the player interacting with the game world and game mechanics

Help me pls!!


Look at the following assignment statements:

food1 = "water"
food2 = "melon"

What is the correct way to concatenate the strings?

newFood = word1 == word2
newFood = word1 + word2
newFood = word1 * word2
newFood = word1 - word2

Answers

new food = word1 + word2 will connect both words together with no space in between. The value of newFood will now be "watermelon"

Answer:

new food = word1 + word2

Explanation:

Other Questions
The table below shows the total Cost per number of hours. please determine the constant of proportionality or determine if the table is proportional. I need an answer ASAP - Martha is spending the afternoon at the bowling alley with friends. She rents shoes for $5 and must pay $4 per hour to participate. Represent this situation with a linear equation. Answers- a. y=5x+4b. y- 4x+5c. y= 4xd. y=5x which chemical equation follows the law of conservation of mass The perimeter of a triangle is 69Cm. Side a is 5cm shorter then side b. side c is 5 more than twice side b. Find the length of each side Conduct online research to learn more about competition between two species not mentioned in this lesson. Make sure to include information about their niches, common resources, and other competitors. A school group has $140 to spend. Write and solve an inequality that represents the cost to rent the main hall, where h represents the number of hours the group can rent the room. pula pays 419.92 for 2.4 pounds of walnuts .What is the price per pounof waluts ? What was second mineral found in Ohio Water plants are mainly pollinated by water.TRUEFALSE1 2 3 4 5 Which diagram best shows the field lines around two bar magnets that repel each other ? intersecting lines r s and t are shown below. what is the value of x I just swallowed a boiled egg wholeFite me Which Idea is from the Magna Carta A the government should give people a fair and speedy trial B The people should be completely free from the government C the government should have unlimited power to tax D The people should support a strong central government 19)110A) 68C) 80B) 85D) 70 how do you find the measurement of an angle ob description:uses computer-aided designis good at predicting the future and follows trendsis considered glamorouscan be useful to retail chains3Which contemporary art career best fits this description?A. photographerB. fashion designerC. multimedia designer Julieanne has experienced severe depressive and hypomanic episodes for the last three years. The episodes don't qualify for a diagnosis of bipolar I, II, or cyclothymia. What diagnosis is probably most correct for Julieanne?A. Bipolar I. B. Bipolar II. C. Cyclothymia. D. Bipolar disorder NOS. Your meal plan allows you 500 dollars to use per month. So far this month, you have used 345 dollars and you have 9 days left on this month's plan. Which inequality could you use to determine how many dollars at most you can use per day so that you don't go over your monthly plan dollars? what does the sentence here mean?? Post breve tempus ad snittem reductus est.Never mind it was figured out. Write Polynomial Function From Graph