I don't understand question how do I work it out?

I Don't Understand Question How Do I Work It Out?

Answers

Answer 1
I really don’t know, hope that helps tho
Answer 2
i think this question is talking about the side/point you can see the shape from. i’m not completely sure but i hope this helps!

Related Questions

Choose the parts of the browser window.

1.
A). web form
B). keyword list
C). status bar
D). pliers

2.
A). mail bar
B). display window
C). scissors tool
D). url repo

3.
A). exclamation bar
B). address bar
C). lucky button
D). menu button

4.
A). enter bar
B). forward bar
C). back button
D). title bar

(Choose one for each please)

Answers

1 web form 2 mail bar 3 address button
ANSWER:
1. Web form
2. Mail bar
3. Address Bar
4. Enter bar

Cheri needs to write a small program that interacts with the user. What step will allow her to do this?

Answers

A standard algorithm

Answer:

B. giving step by step directions

Explanation:

I did this as an assignment. Hope this helped :)

To Get Text to Move

1. Write the code to create a variable for the starting position of your text on

either the X or Y axis.

a. EX: var textStarts = 25;

2. Write the code to create the loop.

3. Write the code to create the text size.

4. Write the code to create the text color.

5. Write the code to create the text that you want to appear.

6. When you write the code for the text to appear, call the variable created in

step on for the X or Y location.

a. EX: text (“Moving text is simple!”, textStarts, 150);

7. Write the code to get the text to move.

a. EX: textStarts = textStarts – 6;

(JAVAscript)

Answers

Today is your lucky day.. i do JavaScript, and i love coding! Happy to help. (I make games n things on Khan academy)

// make variable for x.
var startX = 0;

// start loop
draw = function() {

// if you needed to stop the text from smudging, you can add this: background(255, 255, 255);

// choose text size
textSize(30);

// make the Color red
fill(255, 0, 0);

// draw text at startX pos for X.
text(“wheee moving text!”, startX, 200);

// make text move
startX = startX + 1;

// end the loop
};

Hope this helped! I really love JavaScript, coding, and helping others so just let me know if you need help!

If you want to contact me directly, you can find me on Khan academy:

(Link im comments)

To send me a message, just click on one of my projects and leave a comment >> just remind me who you are. Happy to help!

What are some machines, places or apparatus that sensors could be used in? Give at least five examples.

Answers

Answer:

Sorry

Explanation:

A sensor could be used in a school,jails or courts, amusement parks and museums.

In Scratch, it is very simple to display a score on the screen. All you have to do iswhat to the score variable? place an instruction bubble next to it insert a score sprite containing the variable check the box next to it insert a drop-down menu containing it

Answers

My Recommendation:

I think thats the correct way but I am not sure, I recommend watching something that can help you with that or maybe get a friend to help you with it. Hope this helped! :D

I think thats the correct way but im not sure

Jaime has been hired as a consultant for a company. His task is to help the company spend less time and money writing code. Jaime notices that, even for very complicated programs, the programmers at this company start programming without an overall plan for the development of the code. What might Jaime suggest that they do instead?

A.
begin by writing the final lines of the program instead of the first lines

B.
program in C++ instead of in Python

C.
begin by creating a pseudocode

D.
spend more time debugging

Answers

C. begin by creating a pseudocode Step-by-step solution: 1. The problem mentions that the programmers at the company start programming without an overall plan for the development of the code. 2. To address this issue, Jaime should suggest that they begin by creating a pseudocode. 3. Pseudocode is a high-level description of the program that uses natural language and basic programming structures to outline the logic and flow of the program. 4. Creating a pseudocode helps the programmers develop a plan for the overall structure of the code before they begin writing actual code. 5. This can save time and money in the long run by reducing the number of errors and bugs that need to be fixed. 6. Therefore, option C, "begin by creating a pseudocode," is the best suggestion that Jaime can provide to the company.

Answer:

C

Explanation:

i had to answer this question on a test and ended up getting it right, hope this helps!! :D

Which of the following translates packets so that the node can understand them once they enter through a port?
A translator packet
The node translates on its own
A NIC
A NAS

Answers

Answer:

The node translates on its own.

Explanation:

Which statement will properly start the main() function?
a) def main():
b) def Main
c) def main#
d) def main[]

Answers

Answer:

The answer is A

Explanation:

I took the test and got it right.

Answer: its A !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!

Explanation:

gOT IT RIGHT ON FLVS TEST!

Name 10 reasons why computers are better than other electronic devices? :)

Answers

Desktop and laptop computers can run more powerful software than a smartphone or tablet due to their size, components, and less restrictive power requirements. Also phones can connect to a mobile data network; many tablets offer mobile data connectivity as well.
A computer is a powerful tool because it is able to perform the information processing cycle operations (input, process, output, and storage) with amazing speed, reliability, and accuracy; store huge amounts of data and information; and communicate with other computers.

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

On Edge; this assignment has been overdue for like three weeks because I DO NOT understand what to do, if you could help me that would me AMAZING, thanks <3 (If you need a link I could post it)

Let’s get to debugging! The program you’re about to look at is supposed to be a simple game where the ninja has to rescue the good monsters (in blue) while avoiding being touched by the bad monsters (in red). The ninja receives points whenever a good monster is touched, and points are taken away whenever a bad monster is touched. You can use the up, down, left, and right arrows to make the ninja move toward the good monsters accordingly


Try playing the game and be observant about what isn’t happening the way you thought it would.

There are two bugs in the program. Your job is to identify the problem blocks of code and fix them. Use the following steps.

Identify the problem blocks. You will have to click on the different actors in the game to see their code.

Attempt to fix the problem code blocks. Check your fix by running the game again. Take screenshots of your code.

Describe the problem in the program and how you attempted to fix it, including whether you were successful.

Submit your screenshots and descriptions of how to fix the bugs.

Answers

Answer:

There were several problems with the code:

- When pressing arrow left, the ninja was moving to the right.

- The ninja could be moved off the screen and then is lost

- When changing the direction, the ninja didn't change its appearance

Explanation:

See screenshot for changes. 10 was changed to -10, and I added checks to see if the ninja is at the edge of the screen.

On Edge; this assignment has been overdue for like three weeks because I DO NOT understand what to do,

I first played the game and noticed that the ninja was not receiving points for touching the good monsters. I also noticed that the ninja was losing points for touching the bad monsters, even though it was supposed to be the other way around.

How to explain the information

I then looked at the code for the ninja actor and found two problems. The first problem was that the code for receiving points was inside the on_bad_monster_touched event handler, instead of the on_good_monster_touched event handler.

The second problem was that the code for losing points was inside the on_good_monster_touched event handler, instead of the on_bad_monster_touched event handler.

I fixed the bugs by swapping the positions of the two blocks of code. I also added a print statement to the on_good_monster_touched event handler to confirm that the ninja was now receiving points for touching the good monsters.

Learn more about game

https://brainly.com/question/908343

#SPJ2

Write the importance of software in computer . In 6 points ​

Answers

Answer:

Software is a set of instructions, data or programs used to operate computers and execute important tasks but can also help you work more efficiently.

Uses of Software

Uses of Software in Office.Uses of Software in Business.Uses of Software for Play Game.Uses of Software in Shop.Uses of Software for Entertainment.

Explanation:

I think most important software in computer is terminal because it can control any part to computer and can do things we cannot de with other apps

You need to find information about your system. Record the utility you used, then fill out the information you found in the table.
Device
Operating System
Utility Tool
RAM
Processor Type
Processor Speed

Answers

Answer:

utility tool, operating system and processor type, and processor speed

Explanation:

Answer:

Hello there!

Explanation:

So, assuming you are using Windows 7 and higher, I should be able to help you.

You will need two tools, one of them being control panel, and the other one being msinfo32.

Start off with control panel. Go down to your folder icon, go to it, and it should bring up an explorer window. If you see, This PC, or, My Computer, right click on it and go to properties.

This will show you what your computers specs are, the first image shown below is what you should see, or something like it, let's use my computers specs for an example.

Operating System, Windows 8.1 Pro.

RAM, 16.0 GB, 15.9 GB usable.

Processor and Speed, Intel R Core TM i5-4590 CPU  3.30GHz.

You've now completed 4 tasks. You'll want to close out of the control panel window and now on your keyboard, press the Windows key + R button at the same time. This should bring up a run box on the left hand side of your computer. In that run box, you need to type, msinfo32 . This will bring up a System Information Tool.

Instead of looking for Device, look for System Manufacturer and System Model. This will be around the top.

As mine is used for an example again.

System Manufacturer, Hewlett-Packard.

System Model, HP ProDesk 600 G1 SFF.

And there you go, and one last thing before you have an amazing day, the tools that you have used are Control Panel and msinfo32.

Have a wonderful day, and hope I helped you out.

You need to find information about your system. Record the utility you used, then fill out the information

Your friend Marco loves being on his phone and interacting on social media. He knows that you are studying different careers and asks you what kinds of careers he might consider that would allow him to learn more about communications. You know that advances in telecommunication are always being introduced, and in the future more and more people will be needed in the Energy cluster to design, create, advertise, and sell new ways of communicating. List two careers that he could pursue along the telecommunication pathway. What kind of skills or talents would he need in these two careers? How could he gain the talents or skills to succeed in these two careers?

Answers

Explanation:

Social Media Manager: he would be responsible for overseeing a company's interactions with the public by implementing social media platforms' content strategies. He's duties include analyzing engagement data, identifying trends in customer interactions and planning digital campaigns to build community online.

Promotions Manager: He would be responsible for planning and managing campaigns to promote their company's products and services. Promotions can help increase short-term sales and improve the results of other marketing programs.

Answer:

Network Services or Technical Officer

Explanation:

Some Good Skills for Network Servieces would be:

An analytical mind.

An ability to learn new technologies quickly.

Good time management skills.

An ability to follow processes.

Strong documentation skills.

Good communication skills – both written and verbal.

Some Good Skills For a Technical Officer would be:

Exceptional ability to prioritize and perform maintenance tasks and repairs.

Working knowledge of recordkeeping and preparing maintenance schedules.

Experience taking inventory of maintenance materials and replacement parts.

Proficiency in working with budgets and advising on maintenance and repair costs.

True/False: Software is needed in order for hardware to operate.

Answers

Answer:

I think it is true sorry if it's wrong

Answer:

the answer is true

Explanation:

hope this helps

technology affects the learning experiemce of students by helping them:
1. get into the top colleges.
2. participate in sports.
3. communicate with friends.
4. prepare for a future career

Answers

Answer:

prepare for a future career.

Explanation:

Technology doesn't help students participate in sports and communicating with friends isn't really the learning experience also if you have technology it does not necassarily mean you are going to get into a top college so, therefore, the correct answer is option 4. prepare for a future career.

Prepare for a future career

Q: Philip wants to be an architectural drafter, but he does not like working on computers. He prefers drafting by hand. Based on this lesson, what would be the best advice you could give Philip?

A. Become a drafter, and work by hand as part of a cultural project.

B. Learn the computer drafting programs. Computers are always going to be a part of your life

C. Become a drafter, and keep working by hand. Some people will always prefer “old-school” methods.

D. Find a different job for which you can use hand drafting skills, because they are not competitive in the drafting occupation.

PLEEZE I REALLY NEED THE RIGHT ANSWER! WORTH 20 POINTS AND WILL GIVE BRAINLIEST!

Answers

The answer is b I took the test
C I just took the test so I know the answer

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

Which type of cyber crime offender requires the highest percentage of risk management in terms of computer monitoring?
A) Sex offenders
B) Identity thieves
C) Low-Risk offenders
D) hackers

Answers

Answer: D

Explanation: Hackers are the only type of cyber criminal that monitors your computer

it would be D the hackers

public class Main {

public static void main(String[] args) {

String firstName = "John ";

String lastName = "Doe";

String fullName = firstName + lastName;

System.out.println(fullName);

}

}

From this example copy and paste code that when run would say your name. in javascript with my first name being Ryan and my last name being Smith

Answers

Answer:

const firstName = "Ryan ";

const lastName = "Smith";

const fullName = firstName + lastName;

console.log(fullName);

Explanation:

public class Main {

public static void main(String[] args) {

String firstName = "Ryan";

String lastName = "Smith";

String fullName = firstName + lastName;

System.out.println(fullName);

}

Your friend Tegan is designing a game that involves cats taking over the world. She wants to use obstacles that are difficult at first, and then use simpler obstacles as the game progresses. Would you try to change her approach? Why or why not?

(game design)

Answers

Answer:

I would put levels ranging for level 1 to 50, and start off simple and easy but the game becomes hard during the player plays.

Explanation:

You would start of simple for users to understand what is going on then gets harder as the game progresses

A large company has extensive downtown office space with many conference rooms. To lower their electric bill, the company has installed a new system that automatically turns off the heat and lights in a conference room when no one is in the room. What is the simplest explanation for how the system works?

A camera in each room is connected to the security desk. When the officer on duty sees that a room is empty, they turn off the heat and lights in that room.

A small robotic device on wheels knows the building layout. It roams the offices, peeking into each conference room to see if anyone is using it. If not, the robot turns off the lights and heat.

A sensor detects and reports on movement in the room. If there is no movement for a few minutes, the system assumes the room is empty and turns off the heat and lights.

Every hour, the system emits a loud sound in each room. Pressing a large red button in the middle of the table turns off the sound in that room. If nobody does so within 30 seconds, the system turns off the heat and lights.

Answers

The simplest explanation for how the system works is option C: a sensor detects and reports on movement in the conference room. If there is no movement for a few minutes, the system assumes the room is empty and turns off the heat and lights.

What is the office space about?

The system that automatically turns off the heat and lights in a conference room when no one is in the room is commonly referred to as an occupancy sensor. An occupancy sensor uses various technologies, such as infrared or ultrasonic, to detect the presence or absence of people in a room.

Therefore, Once the sensor detects that no one is in the conference room, it sends a signal to the control system, which then turns off the heat and lights. When someone enters the room again, the sensor detects their presence and sends a signal to turn the heat and lights back on. This system is designed to save energy by ensuring that heating and lighting are only used when needed.

Learn more about office space from

https://brainly.com/question/28885269

#SPJ1

I NEED IT NOWW

what task does a sensor perform in a closed loop feedback system a: measures the variable that represents the system state B: compares the variable to a reference variable C: defines the reference variable D: feeds d at a back into the system so that it can reach the desired state

Answers

Answer: the answer ur looking for is  option : a

Answer:

a: measures the variable that represents the system state

Explanation:

To add a new kind of information into the database you need to add a new table
true or false?

Answers

Answer:

true

Explanation:

Trueeeeee :)... sorry i didn’t come here in time
To add a new kind of information into the database you need to add a new tabletrue or false?

Choose an efficient method of saving electricity. Briefly present the advantages and disadvantages of applying the chosen method in everyday life.

Answers

One method of saving electricity that is both efficient and easy to implement in everyday life is using energy-efficient light bulbs.

Advantages:

Energy-efficient light bulbs use significantly less energy compared to traditional incandescent bulbs, resulting in lower electricity bills.

They have a much longer lifespan, which means they need to be replaced less frequently, leading to additional savings and reduced waste.

Energy-efficient light bulbs come in a variety of styles and colors, making it easy to find one that fits your needs and preferences.

Disadvantages:

Energy-efficient light bulbs can be more expensive to purchase initially compared to traditional incandescent bulbs.

Some energy-efficient light bulbs, such as compact fluorescent bulbs, contain small amounts of mercury, which can be harmful to the environment if not disposed of properly.

Energy-efficient light bulbs may not work with certain types of dimmer switches, so it's important to check compatibility before purchasing.

Overall, switching to energy-efficient light bulbs is a simple and effective way to save electricity and reduce your carbon footprint. While there may be some initial costs and limitations, the long-term benefits of reduced energy consumption and reduced waste make it a smart choice for those looking to be more environmentally conscious.

An efficient method of saving electricity is by using LED light bulbs instead of traditional incandescent or fluorescent bulbs. LED stands for Light Emitting Diode and they are designed to be highly energy-efficient.

Advantages of using LED light bulbs:

1. Energy Efficiency: LED bulbs consume significantly less energy compared to traditional bulbs. They convert a higher percentage of electrical energy into light and produce less heat as a byproduct, making them more efficient and cost-effective in the long run.

2. Long Lifespan: LED bulbs have a much longer lifespan than traditional bulbs. They can last up to 25 times longer, reducing the frequency of replacement and saving money on replacement costs.

3. Environmental Friendly: LED bulbs do not contain harmful substances like mercury, which is commonly found in fluorescent bulbs. By using LED bulbs, you can contribute to reducing hazardous waste in landfills.

4. Durability: LED bulbs are more durable and resistant to shocks, vibrations, and temperature changes compared to traditional bulbs. This makes them suitable for various environments, including outdoor lighting.

Disadvantages of using LED light bulbs:

1. Higher Initial Cost: LED bulbs are generally more expensive to purchase upfront compared to traditional bulbs. However, the cost is offset by their longer lifespan and lower energy consumption over time.

2. Limited Color Options: While LED bulbs offer a wide range of color options, the selection might not be as extensive as traditional bulbs. However, advancements in LED technology have expanded the available color choices.

3. Sensitivity to Temperature: Extreme temperatures can affect the performance of LED bulbs. In very cold temperatures, LED lights might take longer to reach their full brightness, and in very hot temperatures, their lifespan might be reduced.

Overall, using LED light bulbs is an efficient method of saving electricity due to their energy efficiency, long lifespan, environmental friendliness, and durability. Though they may have a higher initial cost and limited color options, these drawbacks are outweighed by the long-term benefits they provide. By adopting LED bulbs, individuals can contribute to energy conservation and reduce their electricity bills.

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

While Lucas was shopping online, a new window opened to show similar products from a different store. Which of the following practices will prevent unauthorized access to his system when browsing the internet? (5 points) Enable pop-up blockers. Install antivirus software. Protect passwords. Use spam filters.

Answers

Install antivirus software

To prevent unauthorized access when browsing the internet, Lucas should enable pop-up blockers and install antivirus software.

How can Lucas enhance his online security while browsing?

Enabling pop-up blockers and installing antivirus software are essential steps to enhance Lucas's online security. Pop-up blockers help prevent malicious or unwanted windows from opening unexpectedly, reducing the risk of unauthorized access through deceptive pop-ups.

The antivirus software scans for and detects potential threats, such as malware or viruses, safeguarding Lucas's system from unauthorized intrusions while he explores the web. By employing these measures, Lucas will reduce the chances of unauthorized access to his system during his online shopping activities.

Read more about unauthorized access

brainly.com/question/14925927

#SPJ2

How does a resident virus differ from a non-resident virus? !!!25 POINTS!!!!!

A) Resident viruses simply disrupt operations while non-resident viruses will control hosts.

B)Resident viruses will control hosts while non-resident viruses simply disrupt operations.

C)Resident viruses find networks to infect while non-resident viruses load themselves into memory.

D)esident viruses load themselves into memory while non-resident viruses find networks to infect.

Answers

Answer:

The correct answer is **D)** Resident viruses load themselves into memory while non-resident viruses find networks to infect. A resident virus is a type of computer virus that’s deployed and resides within a computer’s random access memory (RAM). A non-resident computer virus, on the other hand, is a type of computer virus that doesn’t reside within a computer’s RAM. Non-resident computer viruses can still be deployed within RAM, but they don’t stay there.

D is the correct answer! :)

PLZ HELP ME!!
Give two reasons why it is important to properly train workers within an organization.

Answers

Answer:

To avoid the making of many mistakes

To make it easy for them to work

The workers will make less mistakes which means less backlash from customers

No manager wants their employees to not know what they are doing

what computer languages should i start with + learn if i want to be a pentester/programmer and where can i learn them

Answers

Answer:

Chinese

Explanation:

I'm not sure I understand your question. Good day.

Other Questions
please help with question 9 Assembly Lang. tks. (1) What are De Morgan's Laws? (2) Please simplify the Boolean expression below to a sum of product A'B'(A'+B)(B'+B) Suppose A is a matrix such that the basis for its column space is: {2,-3,1,8,7} and { -3,2,1-,9,6}. Also suppose that a basis for the null Space of A contains exactly 2 vectors. Justify your answers for each case. (1) How many columns does A have? (2) What is the dimension of null space of A? (3) What is the dimension of column space of A? (4) Verify the rank nulltiy theorem for A. what major geographic event happened in the precambrian era? PLEASE HELP The Dust Bowl (1) The Dust Bowl was an eight-year period of drought and dust storms that plagued the Northern and Southern Plains of the United States. The catastrophe lasted from the summer of 1931 to the fall of 1939. The Dust Bowl was the result of poor land management and a lack of rain. (2) Before the Great Plains were settled, plant and tree roots held the soil in place and prevented the water from running off. Settlers cleared the land, plowed deep into the ground, and planted cotton, wheat, and corn. In 1930, the plains farmers were harvesting bountiful crops. However, overuse of the land sapped it of nutrients needed to support the crops. In the summer of 1931, the decrease in rainfall and poor soil condition caused a lot of the crops to die. Strong winds blew away the dead and weakened plants. (3) In 1932, the skies became brown and black with clouds of dirt. Deep blankets of dust covered homes, vehicles, and anything else that was out in the open. People and animals died of suffocation and pneumonia. In 1934, the government minimally compensated farmers for their livestock and rid them of the burden of caring for the animals. Masses of people left their homes in search of work and food. Bordering states did not welcome the migrant workers because their own economies and employment opportunities were in decline. Many of the displaced workers and their families lived in makeshift shacks without plumbing or electricity. (4) In 1935, a conservationist by the name of Hugh Hammond Bennett led a strong campaign for better farming practices and land management. He spoke to Congress and succeeded in getting the Soil Conservation Act of 1935 passed. President Roosevelt also took action to prevent further harm to U.S. lands. The Roosevelt administration educated farmers on techniques to conserve the land. In 1937, the government began paying farmers to use new farming techniques. The farmers received a dollar an acre for trying crop rotation, strip farming, contour plowing, terracing, and other approved conservation methods. Also under Roosevelt's guidance, the Civilian Conservation Corps planted millions of trees between Canada and Abilene, Texas, to create a windbreak and to hold the soil in the ground. These efforts yielded a 65 percent reduction in the amount of soil being carried away by the wind by 1938. Although there was a lot of improvement in the quality of the land, the dry soil failed to produce adequate harvests.Question: Which sentence could best be added to paragraph 4 as a conclusion? aFinally, in 1935, the government took action to end the Dust Bowl. bFinally, in the fall of 1939, abundant rainfall ended the Dust Bowl. cFinally, in 1937, farmers learned new farming techniques. dFinally, the conservation efforts made a difference in 1938. Many online PHRs are also available as A team that relies heavily on interpersonal interactions to complete tasks is said to have a high degree of ______ among team members. what is the fraction of 1578 an s corporation had the following income and expenses: sales $240,000 rent expense 25,000 business meals 5,000 interest income 1,500 contributions to qualifying charities 600 irc section 179 expense 3,000 depreciation expense 1,800 what would be reported as ordinary income on the corporation's income tax return? (assume the 2022 caa provisions do not apply.) oswald odd consumes only goods 1 and 2. His utility function is u(x1,x2) = x1+x2+min{x1,x2}. Each of Oswald's indifference curves is A company produces a product with the following forecast for producing and selling the product in December 2022.GHSales(3000units)150Production (4500units)Variable cost per Units:Direct Materials22.50Direct Labour45.00Variable factory Overheads30.00Total fixed factoryoverheads22500Total selling&Distributioncost30000 TotalGeneral&Administrationcost25000Show the profit statements for the month using (a). Marginal costing (b). Absorption costing (c). Prepare a statement of reconciliation (d). List and explain 3 arguments in support of Marginal costing. (e). List and explain 4 arguments in support of absorption costing. a piano instructor examined student progress.she noticed that when students spend less time playing video games,their memorization ability does not tend to change . what can she concludeA.there is no correlationB.there is a correlation between amount of time spent playing video games and memorization ability.there is probably also causation.this is because there is an increase in memorization ability with a decrease in the amount of time spent playing video games.C.there is a correlation between amount of time spent playing video games and memorization ability.there may or may not be causation.further studies would have to be done to determine this Zack is playing a board game. On his next turn he can move his piece to any of the 8shaded squares on the board shown below.What are the chances that he will move his piece to an odd-numbered square?A. 2 out of 8B. 3 out of 8 C. 4 out of 8D.6 out of 8 Simplify the expression:3b+8c= a nurse provides a list of suggested food choices to a client who has peptic ulcer disease. which foods should be included on the list? Evaluate stability of a system with the following characteristics equation:s^6 + s^5 + s^4 + s^3 + 10s^2 7s + 4 = 0 Considerando a questo visual do desenho e a interpretao de formas bsicas para poder realizar uma composio e fazer elementos com boas propores, analise as afirmativas a seguir e assinale a que corresponde a boa execuo do desenho apresentado na figura 1: Which of the following is a common way to describe a product that is being offered for sale? (Select the best answer.) In business On exchange On the market In the market 1. Where does Tesla live? In what country did he originally live? 2.5 Comparing CirclesHere are two circles. Their centers are A and F.EDC4 cmABH1. What is the same about the two circles? What is different?2. What is the length of segment AD? How do you know?3. On the first circle, what segment is a diameter? How long is it?8 cmG T/F. the diy artist is pretty much alone without online tools to help provide promotional support for music distribution.