tasks on a checklist should be written in as general terms as possible so that developers and artists have enough creative freedom to create interesting products.

O true
O false

Answers

Answer 1

Answer:  True

Explanation: Developers who design always take on idea that was created and add to it. Creating a piece of artwork/ Item.

Answer 2
true is the answer of the queen

Related Questions

Can somebody please help me with these few questions?

Jamal's computer is able to connect to the Wi-Fi signal, but there is no Internet access. Which device do you think might be causing the problem and why?

Felicia's Wi-Fi connection to her phone is extremely slow. However, her computer that is wired directly to the modem works really well. Which device do you think might be causing the problem and why?

Credence would like to set up a wireless, DSL network for his home. He would like to keep his landline working while he is online as well. Explain how he should go about setting up this network. Include all of the devices and cables that he will need.


Thank you so so much!!!!!!

Answers

he should get a new provider cause his current internet provider sucks

1. His Ethernet or whatever your class calls the device that the router connects to. He can connect to the router, but the router can’t connect to the internet.
2. Her router. Her phone is having trouble since the router is slow, but the computer is on the Ethernet, and completely bypassed the router, and is working fine.
3. I don’t know, sorry :(

write a script for a difficult talk with your boss. Write down what you would say to share the facts or to tell your story. Don’t forget to write down how you would ask for your boss’s viewpoint or input.

Answers

Answer:

1st. Im sorry but i think I sincerely don't get viewed

Explanation:

YASHARI earns $27,000 per year, is single, and lives in Wyoming. She has $7000 in Direct Subsidized loans and another $19,000 in Direct Unsubsidized loans. She is trying to save up an emergency fund of at least 6 months’ take-home pay, so she’s torn about how much she should devote to her student loans and how much to the emergency fund every month.
How do you think Yashari should prioritize between her emergency fund goal and her student loan payments?

Answers

Answer:

Income-Contingent Repayment (approximately $37,812), 21 years

Explanation:

With a monthly payment limit of 20% of her discretionary income and no loan forgiveness eligibility, Yashari would pay $147-142 per month, $37,812 total, until December 2043 (21 years from 2022).

He gets 37,812 per year! I hope this helps out a bit

To track what level a player is on, you can create a simple variable and a block saying change level by 1 attached to the when green flag clicked.
True
False

Answers

Answer:

False

Explanation:

I did it on edgnuity also i got it right

False cause that’s not the thing to how to track a player

It wouldn't let me say it so I'm screenshotting it.

Answers

yes it happend to me if you go on my questions

It is a Trojan horse. Most people don’t understand that but basically what it wants you to think is that it will gather information off you. But in fact unless your a very public figure the site will use your computer for the virus. Most people do this so if the authorities try to find them, it will lead them to you. This is just a local scam so nothing like this will happen, but this is still no reason to click on it.

a)​What would be the state of the following list after each of the first four passes in a Bubble sort, sorting into ascending sequence?​
​65, 34, 28, 68, 52, 21

Answers

21,28,34,52,65,68 Really simple good luck on what your doing
21,28,34,52,68,97,89

Hello. I really need this done ASAP. Don't scroll down. JUst look please.

Answers

Answer:

part 1

The four factors judges consider are:

the purpose and character of your use

the nature of the copyrighted work

the amount and substantiality of the portion taken, and

the effect of the use upon the potential market.

Part 2

the author toils without copying from someone else

the work must be original

Explanation:

Copyright law gives these protections to all kinds of creative work, so long as it is:

1. Has a copy right registration

can anyone help my please

Answers

order: soil, plant seeds, water, seedling, corn plant

Answer:

soil , plant seeds , water , seedling , corn plant

Explanation:

If you don’t want to have when green flag clicked start every one of your scripts, what block can you use instead?
run all
begin
broadcast
initialize

Answers

Answer:

broadcast

Explanation

this sounds like you are using scratch or a similar drag and drop block-based coding system so I'll just go off of that. The broadcast block is used to send out a command to other blocks. for example you could be coding a dancing animation and program a character to send out the "dance" command to all other sprites that dance. Of course, you will need the "When I receive" event block and then program a sequence of events connected to that event block so that when the sprite receives the "dance" broadcast it will execute the sequence for when it receives that broadcast. Hope this helps feel free to ask any other questions in the comments section as i will gladly answer them to the best of my abilities.

the ans is run all because yeah it is the answer

(Brainliest!!)

How do i get rid of a headache?

Answers

ibuprofen

Explanation:

Ibuprofen is used to help relieve mild to moderate pain. When used with an opioid (such as morphine), it may be used to relieve moderate to severe pain. It is also used to reduce fever.

May Treat: Dysmenorrhea · Fever · Headache disorder · Juvenile idiopathic arthritis · Osteoarthritis and more

Brand Names: Caldolor · Advil · Advil Liqui-Gel · Children's Ibuprofen · IBU-200 and more

Drug Class: NSAID Analgesics (COX Non-Specific) - Propionic Acid Derivatives

Availability: Prescription sometimes needed

Pregnancy: Do not use. This medication may be harmful to an unborn child.

yeah g

Take ibuprofen, try to get rest and relax.

Guys i keep trying to get in touch with brainly but it says "your request could not be submitted" Can someone please help me ?

Answers

Sure what is your question? It also happened to me too
What grade are you in
Did u go to their online website??

Can you please make a simple python program? I will give you 20 points and branliest if it is good! It must include:
·At least 3 variables
·Contain a new function
·And must have at least 10 lines of code

Answers

Answer:

# Solve the quadratic equation ax**2 + bx + c = 0

# import complex math module

import cmath

a = 1

b = 5

c = 6

# calculate the discriminant

d = (b**2) - (4*a*c)

# find two solutions

sol1 = (-b-cmath.sqrt(d))/(2*a)

sol2 = (-b+cmath.sqrt(d))/(2*a)

print('The solution are {0} and {1}'.format(sol1,sol2))

Hope This Helps!!!

Answer:

# Newton's Law of Universal Gravitation

import math

print("This program will calculate the gravitational force between two objects")

# Gravitational Constant

G = 6.67408

while True:

   try:

       m1 = float(input("\nInput mass of first object (in kilograms): "))

       break

   except ValueError:

       print("Invalid input!")

while True:

   try:

       m2 = float(input("Input mass of second object (in kilograms): "))

       break

   except ValueError:

       print("Invalid input!")

while True:

   try:

       d = float(input("Distance between the objects (in meters): "))

       break

   except ValueError:

       print("Invalid input!")

force = G * (m1 * m2) / math.pow(d, 2)

print("The gravitational force between these two objects is {0} newtons!".format(force))

Other Questions
Solve for x.x9=524Enter your answer as a mixed number in simplest form by filling in the boxes.x = $$ To listen actively, one must do all of the following except: a. make an effort to understand the message b. look carefully for valuable information c. avoid becoming self-focused d. all of the above are necessary for active listening. explain the view of the writer regarding the stock market?? EXPLAIN AND SOLVE THE EQUATION Why is it difficult to male level 4 organs in a lab? If the circumference of a circle is 220 cm, find its diameter and areaplease correct answer Directions: Calculate the area of a circle using 3.14x the radius 1) d = 4.4 mm.Calculate the area of the circle.2) d = 3.7 cm.Calculate the area of the circle.3) r= 8.3 cm.Calculate the area of the circle.4) d = 5.8 yd.Calculate the area of the circle.5) d = 1 yd.Calculate the area of the circle6) r = 8 ft.Calculate the area of the circle The Circular shape of a roundabout reduces what The temperature of a freezer is never greater than -2 degrees Celcius. Yesterday the temperature was -10 degrees Celcius, but it increased at a steady rate of 1.5 degrees Celcius per hour. How long in hours and minutes did the temperature increase to -2 degrees Celcius? WILL PICK BRAINLIEST Which graph represents an exponential function? how do I solve unit rate The end result of the Greco-Persian wars was Phoebe spent $12.87 at the bookstore. She paid with a $20 bill. How much is her change? The principle of monetary neutrality implies that an increase in the money supply will:. Who found out that the waitress knew William? A 700-kg car, driving at 29 m/s, hits a brick wall and rebounds with a speed of 4. 5 m/s. What is the cars change in momentum due to this collision?. What does winston write about thoughtcrime in his diary. What are some words with the suffix -or? Writing a story about a night out with friends that goes wrong and I have brain block not sure where to go with the story. can anyone help? What is systematic risk? Multiple choice question. It is a risk that is caused by failure of the internal control system of a corporation. It is a risk that increases in a systematic, gradual fashion. It is a risk that affects only one or a few assets. It is a risk that pertains to a large number of assets.