The Circle of Growth

A)shows all the things you have learned through your goals

B)represents the things you cannot yet do

C)brings your goals together so you can focus on them

D)encourages others to help you meet your goals

Answers

Answer 1

Answer:

B

Explanation:

it shows you your weaknesses so you can work on them so you can find your way to success


Related Questions

How is modern technology developed? Explain.

Answers

Answer:

Explanation:

Modern technology has paved the way for multi-functional devices like the smartphone. Computers are increasingly faster, more portable, and higher-powered than ever before. With all of these revolutions, technology has also made our lives easier, faster, better, and more fun

.

“ new technologies has develop quickly and continuously, and society is used to and adapts quickly to these constant innovations. In addition, modern technology increases the communication of people by having accessibility from the internet.”

I have a 50$ GameStop gift card, What should I buy????

Answers

If you have a P s 4 or a P s 5 you should buy V bucks for F o r t n i t e

Or Rec Room Bucks

Or if you have a Nintendo then buy those small chip games like animal crossing

You should consider a headset or storage like a terabyte.

What is the difference between weak AI and strong AI?

Answers

Answer:

Strong AI has a complex algorithm that helps it act in different situations, while all the actions in weak AIs are pre-programmed by a human. Strong AI-powered machines have a mind of their own. They can process and make independent decisions, while weak AI-based machines can only simulate human behavior.

One is strong and one is weak hope this helps :)

What does the binary code 01101000 01100101 01101100 01101100 01101111 00100000 01101101 01111001 00100000 01100110 01110010 01101001 01100101 01101110 01100100 mean? Free pts btw

Answers

Answer:

hello my friend

Answer:

"Hello my friend"

Explanation:

I just used a Binary to Text converter

please help by explaining what a file type is, what the different kinds are, and what content they hold. Write a paragraph of at least five sentences that Alex can include at the top of the survey.

Answers

Answer:

JPEG (Joint Photographic Experts Group)

PNG (Portable Network Graphics)

GIF (Graphics Interchange Format)

PDF (Portable Document Format)

SVG (Scalable Vector Graphics)

MP4 (Moving Picture Experts Group)

Hope This Helps!!!

Answer:

So yes after they have a yes after there is a yes

hope u get it if u dont ur iq is 0

Explanation:

PLEASE HELP ME Write a 150-word paragraph about five of the zaniest and/or most novel ways you’ve found online that people earn incomes. Keep in mind that the sites should not be corporate sites. We are looking for unique niches. Have fun. We think you will be surprised when you see what people are willing to pay for online.

Answers

playing games. on some apps, you can win money for platings

Answer: Disney and video games winning ratings can produced a vast amount of money, making into a job, that anyone could create for example becoming an actor or becoming a gamer.

we could go over the amount of time disney and other companies spent.

NO LINKS!! HELP!!! PHOTOGRAPHY CLASS ESSAY 2

NO LINKS!! HELP!!! PHOTOGRAPHY CLASS ESSAY 2
NO LINKS!! HELP!!! PHOTOGRAPHY CLASS ESSAY 2

Answers

2. What is special about photographs?

Photographs are special because it shows all of the artistry and reflects the eye of the person who took the photo, not only that but it also shows how the photographer shot it, it shows a whole new meaning because of that.

3. In order to be a great photojournalist one must be okay being behind a camera, and you would also need to know how to edit photos well and bring out the story in the photo.

I know I haven't answered all of the questions, but this is all I can do because I don't have other resources to help you with.

My answers should only be used as last minute answers!!!! (or you can just use mine if you want)

Answer:i do not not know

Explanation:25 Jan 2021 — Securing Your Devices and Networks · 1. Encrypt your data. · 2. Backup your data. · 3. The cloud provides a viable backup option. · 4. Anti-malware ...

‎Data Protection Tips for Mobile Devices · ‎Protecting Your Identity

Which of the following options shows the correct code to increase a player’s lives by an amount equal to a variable called hits?

A.
lives == lives + hits

B.
hits == lives + hits

C.
lives = lives + hits

D.
lives + hits = lives

Answers

The answer is C.

The line lives = lives + hits increments a player's lives by an amount equat to hits.

the answer to the problem is C

1. A virtual network of websites connected by hyperlinks is called

A. a browser

B. a URL

C. the internet

D. the World Wide Web


2. The Domain Name System translates the URL into

A. a client

B. an IP address

C. a website

D. a web browser

Answers

the answer of the first McQ is a and second one is b

Answer:

1 Option D is correct:  World wide web

2 Option B is correct:  Ip addresses

The abbreviation “px” stands for

A.
perimeter x.

B.
pixels.

C.
point x.

D.
parts of x.

Answers

Answer:

c

Explanation:

the answer will be c

Question: How do you file a complaint using a food restaurant? 100 POINTS WILL BE GIVEN INCLUDING BRAINLIEST

Answers

send it through the mail

Answer:  Be prepared to provide the following information:

1.Your Name, Address and Phone Number (your information will remain anonymous to the restaurant)

2.Name of restaurant

3.Location/address of the restaurant

4.Date of incident

5.Nature of complaint

If you suspect you became ill from this incident. You will need to give specific information about the suspected foods that made you sick, as well as when your symptoms began, and what they were. In addition, you will need to give a 3-day food eating history.

Explanation

Which best describes desktop publishing? the process of designing and laying out printed material the positioning of text, graphics, and white space on a page the style of letters and how they are arranged the use of images and colors

Answers

Explanation:

the process of designing and laying out printed material.

Answer:A photographic proof where all colors are shown in blue, best used for spot color jobs, and it is used primarily to ... WYSIWYG is technical jargon that describes.

Explanation:

The gate that only takes one out is _____ gate

Answers

Answer:

Only one logic gate has one input terminal i.e. NOT gate.

It is a logic gate alright o

Which of the following is not a basic networking hardware component? Network interface card
network cable
device driver
Hub /Switch

Answers

Answer:

Device Driver

Explanation:

All of the other options are physical and are something that you can physically touch. The device driver runs in software and allows the computer to communicate with the device that is attached.

Reduce Re-use and Recycle!
Required Materials
OnlineGDB (login required)
Word processing software
Part A
One of the biggest benefits of writing code inside functions is that we can reuse the code. We simply call it whenever we need it!

Let’s take a look at a calculator program that could be rewritten in a more reusable way with functions. Notice that two floats (decimal numbers, but they can also include integers) are inputted by the user, as an operation that the user would like to do. A series of if statements are used to determine what operation the user has chosen, and then the answer is printed inside a formatted print statement.

num1 = float(input("Enter your first number: "))
num2 = float(input("Enter your second number: "))
operation = input("What operation would you like to do? Type add, subtract, multiply, or divide.")
if operation == "add":
print(num1, "+", num2,"=", num1 + num2)
elif operation == "subtract":
print(num1, "-", num2,"=", num1 - num2)
elif operation == "multiply":
print(num1, "*", num2,"=", num1 * num2)
elif operation == "divide":
print(num1, "/", num2,"=", num1 / num2)
else:
print("Not a valid operation.")
Your job is to rewrite the program using functions. We have already looked at a function that adds two numbers. Using that as a starting point, we could call the add function from within our program in this way:

if operation == "add":
result = add(num1, num2)
print(num1, "+", num2,"=",result)
Now it’s your turn to do the following:

Type all of the original code into a new file in OnlineGDB.
Copy the add function from the unit and paste it at the top of your program.
Write three additional functions: subtract, multiply, and divide. Pay careful attention to the parameters and return statement. Remember to put the three functions at the top of your Python program before your main code.
Rewrite the main code so that your functions are called.
Part B
There are many different ways that a user could tell us that they would like to add two numbers in our calculator program. The user could type “add”, “Add”, “ADD”, or “+”, to name a few possibilities. Of course, as humans, we know exactly what is meant, even if the word is capitalized. But the Python Interpreter can’t tell that “add” is the same as “Add”.

We can use a list to make our program a bit more robust. We can also use the IN operator to check for certain values in that list. Take a look at this if statement’s opening line:

if operation in ["add", "Add", "ADD", "+"]:
Make those changes in your program and verify that it works.
Consider all of the possible words the user might enter to subtract, multiply, or divide.
Rewrite the first lines of each of your if statements to use lists.
Thoroughly test your new program, trying out each of the four operations.
When you have tested your program, click the save button. Then click Share and copy the program link. Paste the link in a word processing document and submit using this unit’s dropbox. If your program does not work properly, also include a paragraph explaining what you did to troubleshoot it.

Answers

To rewrite the given calculator program using functions, you can follow these steps:

1. Start by copying all of the original code into a new file in OnlineGDB.

2. Copy the add function from the unit and paste it at the top of your program. This function should take two parameters, num1 and num2, and return the sum of the two numbers.

3. Write three additional functions: subtract, multiply, and divide. Each function should take two parameters and return the result of the corresponding operation. Here's an example of how you can implement the subtract function:

```

def subtract(num1, num2):

return num1 - num2

```

4. Put the four functions (add, subtract, multiply, and divide) at the top of your Python program before your main code.

5. Rewrite the main code to call the appropriate function based on the user's chosen operation. Use if statements to check the value of the operation variable and call the corresponding function. Here's an example of how you can modify the main code:

```

if operation == "add":

result = add(num1, num2)

print(num1, "+", num2, "=", result)

elif operation == "subtract":

result = subtract(num1, num2)

print(num1, "-", num2, "=", result)

elif operation == "multiply":

result = multiply(num1, num2)

print(num1, "*", num2, "=", result)

elif operation == "divide":

result = divide(num1, num2)

print(num1, "/", num2, "=", result)

else:

print("Not a valid operation.")

```

Now, let's move on to Part B.

To make the program more robust and accept different variations of the operation input, you can use lists and the in operator to check for certain values. Here's an example for the addition operation:

```

if operation.lower() in ["add", "+"]:

```

This will allow the program to accept variations such as "add", "Add", "ADD", or "+". You can apply the same approach to the subtract, multiply, and divide operations.

Remember to thoroughly test your program by trying out each of the four operations. Make sure to test different variations of the operation input to ensure that the program handles them correctly.

Once you have tested your program and it is working properly, save it and click the Share button. Copy the program link and paste it into a word processing document for submission.

If your program doesn't work properly, make sure to double-check your code for any errors or typos. You can also add print statements to debug and see the values of variables at different points in the program. If you're still having trouble, you can explain the steps you took to troubleshoot the program in your submission paragraph

What will be the result of the following lines of CSS?

body{

background-color:yellow;

}

A.
The background of the header will be yellow.

B.
The text will be highlighted yellow.

C.
The background of the body of the webpage will be yellow.

D.
The photo will change to a yellow box if the user clicks on the photo.

Answers

Answer:

C.

Explanation:

The correct option that explains the result of the given lines of CSS is:

C. The background of the body of the webpage will be yellow.

The CSS code provided sets the background color of the body element to yellow. The "body" selector targets the entire body of the webpage, and the "background-color" property sets the background color to yellow. This means that the background of the entire webpage will be displayed in yellow.

Answer:

C. The background of the body of the webpage will be yellow.

can someone help me im using python IDLE and im getting this message in the output what does this mean "Error: unindent does not match any outer indentation level"

Answers

Answer:

Indent the first line

Explanation:

In many types of coding, the process does not work until you indent the first line. If it is a few rows in programs such as loops many more indentations maybe needed.

Answer:

Indent the first line

Explanation:

In many types of coding, the process does not work until you indent the first line. If it is a few rows in programs such as loops many more indentations maybe needed.

How do the text feature help on the text?

Answers

Answer:

Text features help you locate important information in a text. Knowing the purpose of the text feature helps you decide at which text feature to look when you want to understand your text better. Organized by purpose, the chart identifies text features and how they help the reader.

Explanation:

Here is your answer
How do the text feature help on the text?

Your principal has hired you to design a drone that can monitor students in the hallways. Before you brainstorm design ideas, you ask your principal if he has any specific needs for this drone. You are in which phase of the engineering design process?

A.
Prototype and Test

B.
Ideate

C.
Understand

D.
Evaluate

Answers

It’s gonna be Answer B because all the other answers just sound silly
answer b also i love your profile picture

Which of the following is an example of sequential program flow?



- A sprite in a block-based program takes four steps forward, jumps, and then walks backward.


- A sprite in a block-based program jumps up and down 50 times.


- A sprite in a block-based program keeps jumping until the user says to stop.


- A sprite in a block-based program goes outside if it’s not raining but stays inside if it is raining.

Answers

A sprite in a block-based program jumps up and down 50 times.

Option (2) A sprite in a block-based program jumps up and down 50 times is an example of sequential program flow.

The computer follows the instructions that we give to them. In whatever order we provide the instructions, they will follow that same sequence to execute it.

For example, if we tell the computer to select a word, select the paste button, and then copy it on Word. It will follow the same sequence. It doesn't know that before pasting it we must do the third step of copying.

So, it's our responsibility to provide the computer with correct instructions, so that it can follow the correct sequence.

The first option, it doesn't specify how many steps to walk backward.

The third option, it's like a neverending loop, in which a computer doesn't know when to stop until a human gives some input.

In the fourth option, the instruction is based on the if condition.

So the correct option is option 2, the sprite does the activity as instructed, jumping up and down 50 times.

To know more about block-based programs: https://brainly.com/question/27837657

When the prompt function is used in JavaScript, _____ appears.

A.
an error message

B.
a pop-up box

C.
a data warning

D.
a password request

Answers

Answer:

B

Explanation:

instructs the browser to display a dialog with an optional message prompting the user to input some text, and to wait until the user either submits the text or cancels the dialog

A pop up box to let you know the Java script is there and active

help please im not sure what this means T^T

help please im not sure what this means T^T

Answers

Answer:

14

Explanation:

I think the answer to that is 14

(I made this up teehee) what anime is katski bakugo from

Answers

Scooby do because that is the best shower ever
MHA (My Hero Academia) or Boku no hero academia

!!!!PLEASE HELP!!!!! You get to play journalist today. The topic of your story is one of the laws discussed in this lesson. You will select one of them to research. While researching, you will learn more about the law and will locate a case that went to court. Then you will write an unbiased article or broadcast describing the law and summarize the case and the stand of the parties involved. Be sure to review and abide by The Cannons of Journalism. Be sure to include:

a description of the law;
how the law relates to digital media;
one example of a case that went to court;
a discussion of the case and the parties involved; and
a summary of the outcome of the case.
Some helpful hints in finding a case are:

Search for “case law,” “court case examples,” and “case studies.”
Include the full name of the law and the acronym.
Discuss the impact these laws have on one or more media outlets in your community.
You will write your report as an article with at least 500 words that will be posted on an online news site or that a broadcast journalist will report on TV news.

Upload your 500-word story that describes one law, including how it relates to digital media, and summarizes a case that went to the courts and the stand of the parties involved.

Answers

Title: The Digital Privacy Act: Safeguarding Personal Information in the Digital Age

Date: [Insert Date]

Byline: [Your Name]

[City Name] - In an era of rapidly advancing technology and widespread digital connectivity, protecting personal information has become a paramount concern. The Digital Privacy Act, a legislation introduced to address these concerns, aims to safeguard individuals' privacy rights and regulate the handling of personal data in the digital realm.

The Digital Privacy Act, formally known as the Personal Information Protection and Electronic Documents Act (PIPEDA), was enacted in [Insert Year]. This federal law governs how private sector organizations collect, use, and disclose personal information in the course of commercial activities. It establishes rules and principles for obtaining consent, ensuring transparency, and safeguarding personal data from unauthorized access or disclosure.

In the realm of digital media, the Digital Privacy Act plays a crucial role in governing the practices of online platforms, social media networks, and e-commerce websites. It requires organizations to obtain informed consent when collecting personal information, inform individuals of the purpose for its collection, and implement appropriate security measures to protect sensitive data from breaches or unauthorized use.

One prominent case that exemplifies the intersection of the Digital Privacy Act and digital media is the landmark lawsuit of Doe v. SocialMediaCo. In this case, Jane Doe, a user of a popular social media platform, filed a complaint against the company for unauthorized disclosure of her personal information.

According to court documents, the plaintiff alleged that SocialMediaCo, without her consent, shared her private messages with third-party advertisers, resulting in a breach of her privacy. The case brought into focus the importance of user consent and the responsibility of online platforms in protecting personal information.

During the trial, the plaintiff argued that the actions of SocialMediaCo violated the provisions of the Digital Privacy Act. She contended that the company failed to obtain proper consent and did not adequately safeguard her personal data, leading to emotional distress and reputational harm.

On the other hand, SocialMediaCo maintained that their practices were in compliance with the Digital Privacy Act. They argued that users implicitly consented to the sharing of their information with third-party advertisers through the platform's terms of service agreement.

After careful deliberation, the court ruled in favor of Jane Doe, emphasizing the importance of explicit consent and the duty of organizations to protect user privacy. The court found SocialMediaCo liable for the unauthorized disclosure of personal information and awarded damages to the plaintiff.

The outcome of the case set a precedent for other digital media companies, reinforcing the need for stringent privacy practices and ensuring compliance with the Digital Privacy Act. It also served as a reminder to individuals about the importance of understanding privacy policies and exercising caution when sharing personal information online.

As we navigate the digital landscape, the Digital Privacy Act stands as a crucial safeguard, protecting individuals from the potential risks associated with the collection and use of personal data. It places the responsibility on organizations to respect privacy rights, obtain informed consent, and prioritize the security of sensitive information.

In an ever-evolving digital world, the Digital Privacy Act serves as a shield, empowering individuals to assert their rights and reinforcing the notion that personal information deserves protection, both offline and online.

I hope this helps. Cheers! ^^

Which statement assigns the value 99 to the variable myGrade in Python?


myGrade = 99

my Grade = 99

!myGrade = 99

myGrade == 99

Answers

Answer: I think that the answer is the first one, myGrade=99

Explanation:

THE FIRST ONE IS =99

Place Letter or word in correct section where it says labels bellow

LABELS
Extrinsic Values Or Intrinsic Values

A. beauty
B. money
C. family
D. resources

Place Letter or word in correct section where it says labels bellow LABELSExtrinsic Values Or Intrinsic

Answers

It’s Has to be A because I don’t thinks it’s B C or D

Extrinsic Values are money and resources. Intrinsic Values are beauty and family.

What is Extrinsic Values?

Extrinsic values are those that are outside of a person's control, such as material possessions or social status, and are frequently influenced by societal norms and expectations.

Intrinsic values, on the other hand, are personal beliefs, morals, and principles that a person holds.

Relationships, personal growth, and beauty are examples of intrinsic values, whereas money and resources are examples of extrinsic values.

Intrinsic values are those that a person has within himself or herself and are based on personal beliefs, morals, and principles.

They are the things that a person considers important and meaningful for the sake of being important and meaningful, regardless of external rewards or recognition.

Money and resources are examples of extrinsic values. Beauty and family are intrinsic values.

Thus, this is the match for the given scenario.

For more details regarding intrinsic value, visit:

https://brainly.com/question/27908904

#SPJ7

Which non-touchscreen input device would be most convenient to use for a computer on an airplane?
O a corded mouse
O a trackpad
O a trackball
O a regular desktop wireless mouse​

Answers

Answer:

O a trackpad

Explanation:

The TRACKPAD is a flat, touch-sensitive pad just in front of the keyboard.

The trackpad is the correct answer

Using complete sentences post a detailed response to the following.

Imagine that you are the PM for a development team, and you’ve realized that your major deadline to finish the project is nearly here, but things aren’t complete. You have several choices—for example, hiring more developers, or paying your current staff more to work overtime, or rushing through the code to create something even if it’s not up to the quality you’d like it to be. Given a conflict between completing a project on time, delivering it with good quality, and keeping to a budget, what choice do you make? How would you justify that decision to your clients?

Answers

Answer: I would hire more developers because more people will give more ideas and might be better than some of the other developers so this would be the best choice

I would get more workers and pay my current and new workers a little more for

Explain the difference between SLR cameras’ and point-and-shoot cameras’ viewfinders. Which viewfinder do you think would be easier to use? Why?

Answers

Answer: A point-and-shoot digital camera estimates the light that will reach the sensor on an LCD screen. A SLR camera is a single lens reflex camera. As an SLR camera has a reflex mirror, it allows you to see through the viewfinder the real image that the film will see.

Explanation:

Optical viewfinders show you a true image. Which means that there's no lag; you're simply looking at a scene through a lens. Cameras using electronic viewfinders, on the other hand, have to convert the light into a digital image and then display it via the EVF. And that can take time, which manifests as viewfinder lag.

SLR cameras' viewfinders allow the user to preview the exact image that will be captured due to its direct optical connection with the lens. Point-and-shoot cameras' viewfinders, on the other hand, provide a digital representation of what the camera sees and are typically constructed from LCD screens. I think point-and-shoot cameras' viewfinders would be easier to use because of their more user-friendly design, as well as their convenience in providing an easy-to-view display of the image being taken.

List the different computer industries, and what they do.
(Like the part makers, people who assemble it and stuff not the companies)

Answers

Answer:

There are several different industries that are involved in the production and use of computers. These industries include:

Hardware manufacturers: These companies design and produce the physical components of computers, such as the motherboard, processor, memory, storage, and other peripherals.Software developers: These companies create the operating systems, applications, and other programs that run on computers.System integrators: These companies assemble and configure computers, often using components from multiple manufacturers, and sell them to consumers or businesses.Service providers: These companies provide support and maintenance services for computers, including repair, installation, and training.Data centers: These companies operate large facilities that host and manage the data and computing resources of other companies.Internet service providers: These companies provide access to the internet for businesses and consumers.Cloud computing providers: These companies offer computing services, such as storage, networking, and software, over the internet.Consulting firms: These companies provide advice and expertise on the use of computers and technology for business and organizational goals.

Answer:

Hardware Manufacturers

Software Developers

System Integrators

Service Providers

Data Providers

ISP

Cloud Computing Providers

Consulting Firms

Explanation:

It is in order..

Other Questions
A 3874-kg rollercoaster is brought to the top of a 42m hill in 40 seconds,then drops 28m before the next hill. a) how much work is required to get the coaster to the top of the first hill? b) what power is required to bring the train to the top of the first hill? c) how much pe is lost when the coaster drops? d) how much pe is left at the bottom? calculate the double integral. 3xy2 x2 + 1 da, r = {(x, y) | 0 x 3, 2 y 2} r according to research, which of the following personality dimensions have significant effects on perceptions of leader charisma? Lithium has two stable isotopes, lithium-6 and lithium-7. The atomic number of lithium is 3. Explain how the two are the same and how they are different. which point if view does the narrator use? don't give me the link just tell me. Pureed avocado can be used as a substitute for butter in recipes for baked goods. Using pureed avocado instead of butter in a recipe would ______ of the final product. Sperm cells get energy to power their movement from ________, which is contributed by the ________. sperm cells get energy to power their movement from ________, which is contributed by the ________ in your position of office manager at a legal firm, you are in charge of hiring temporary legal assistants and clerical workers. describe how simon's decision-making process applies to this decision. could that decision be aided by an information system in any way, and if so, how? Kyle spent $155 on 9 items at the mall. Shirts were $15 and jeans were $20. How many of each did he buy? the soviet union and the united states beleved in two very different economic systems what were the named of each What is the variable in the expression: 3x + 4 a female client who suffers from urethral strictures undergoes a dilation procedure and experiences a burning sensation while voiding. which nursing instruction would be most helpful? which of the following statements regarding business process reengineering is not correct? a. placing decision authority at the lowest level possible tends to reduce bureaucracy. b. ideally, only steps that add value to the customer are kept in the redesigned process. c. most reengineering is done without the need to invest in new technologies. d. reengineering is appropriate when processes simply cannot be improved in small steps. PLEASE HELP URGENT WILL MARK AS BRAINLIEST PLUS POINTS!! Calculate the force of gravity that the moon (7.34767309 10^22 kg) has on you (70kg). The moon (r = 1,737,400 m), when directly "above" you, is at a distance of 384,400,000 m. Help please I need the answer right nowPoint I is located at (1,5) on the coordinate plane. Point k is reflected over the x axis to create point k prime. What ordered pair describes the location of k prime??? Of the five major types of crystalline solid, which does each of the following form, and why:(b) F; In versions of SQL other than Access, which character is used as a wildcard to represent any collection of characters? Which values of a, b, and c correctly represent the answer in simplest form?3- 2b32O a=38, b= 14, C = 1O a=1,5=14, C= 38O a=1,b=7.C= 19O a= 19, b=7,C= 1 What is the approximate value for the modal daily sales?