I really need help please help me

I Really Need Help Please Help Me

Answers

Answer 1
Mathematics because it's is the science of number

Jdhdhrjrjrjfjjf

Related Questions


Can I control my digital footprint?



Answers

Answer:

yes you can

Explanation:

Answer:

Yes you can

Explanation:

1. Enter your name into several search engines.

2. Double check your privacy settings, but don't trust them.

3. Create strong, memorable passwords.

4. Keep all your software up to date.

5. Review your mobile use.

6. Build your reputation through your behavior.

A person interested in a career in digital media should have which qualities? Select all that apply.


1. creativity

2. leadership

3. attention to detail

4. forcefulness

5. enjoyment in learning new things

6. vision

Thank you!!!

Answers

1.Creativity
2.Leadership
3.Attention to detail
5.Enjoyment to learning new things!
6.Vision
No Problem!

What is one ethical use of technology?

A.
Arguing with people on Twitter about various topics.

B.
Browsing the internet on your smartphone during class.

C.
Posting fake information on your social media accounts.

D.
Talking to friends and colleagues about interesting news.

Answers

Answer:

D.

Talking to friends and colleagues about interesting news.

Explanation:

Ethics is a branch of philosophy that "involves systematizing, defending, and recommending concepts of right and wrong behavior". So if something is "ethical" it is a right thing to do.

Definitely D
hope this helps :)

Erin would like to add a photo to a presentation. However, she only has the printed copy of the photo. She does not have a digital copy. What should Erin do?

Answers

Answer:

Erin should scan the photo.

Took it on Edge <3

Answer:

Erin should scan the photo.

Explanation:

That´s what I thought :)

A ________ is an input device that responds to finger touch.

Answers

1 - 3 21 - 3 21 - 3 21 - 3 21 - 3 21 - 3 21 - 3 21 - 3 21 - 3 21 - 3 21 - 3 21 - 3 21 - 3 21 - 3 2

What are the options?

the function of television

Answers

Answer:

Explanation:

it's to provide information and entertainment to the masses at a reasonable price.

ICT 10
Research on other forms of Operating systems used in smartphones and give a description for each.​

Answers

uSE THE ANSWER BELOWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWW

When inserting a comment in a cell, the command on the Review tab is New Comment, but if you right-click in the cell,
what command would you choose from the shortcut menu?

A.)New Comment

B)Insert Comment

C)Review Comment

D)Add Comment

Answers

Answer:

B) Insert Comment

Explanation:

Generally, workbooks are known as Microsoft Excel files. Excel workbook can be defined as a collection of one or more charts and worksheets (spreadsheets) used for data entry and storage in an excel file. In order to create a project on Excel you will have to use a workbook.

A spreadsheet can be defined as a file or document which comprises of cells in a tabulated format (rows and columns) typically used for formatting, arranging, analyzing, storing, calculating and sorting data on computer software applications such as Microsoft Excel.

When inserting a comment in a cell, the command on the Review tab is New Comment, but if you right-click in the cell, the command you would choose from the shortcut menu is Insert Comment. The shortcut key for Insert Comment is "Shift+F2."

WILL MARK BRIAN PLZ HELP PLZ I BEG YOU While levels often change in order to give a game some more variability, they might also change to tell more of the what?

Group of answer choices


game creation process


instructions


game story


animation

Answers

Answer:

Game story

Explanation:

Answer:

Game Story

Explanation:

What are the types of text?

Answers

Answer: there are two main text types, factual and literary. Within these are many more narrowly defined text types. Factual text types include such types as factual description, recount, or persuasive. Literary text types include such types as poetry, narrative or personal response.

Answer:

Description sequeninstruction process cause-and-effect compare contrast problem and solution

Explanation:

there just soooo many types of texts bit theses are sum

10. There is repeated code in these onevent blocks. Choose the correct code for the updateScreen() function which would be called in each of the onEvent blocks.

1

var counter

0;

2

3

onEvent("upButton", "click",

function

4

counter

counter + 1;

5

setText ("counter_label", counter);

set Property ("counter_label", "text-color",

6

"red");

7

if

counter

8

set Property ("counter label",

"font-size", 24);

9

10

11

onEvent ("downButton",

"click",

function

12

counter

counter

Answers

Answer:

front zise24

Explanation:

on event down botton

The correct code for the updateScreen() function which would be called in each of the onEvent blocks is setText ("counter_label" counter) = = 0.

What is a function?

A function refers to a set of statements that makes up an executable code and it can be used in a software program to perform a specific task on a computer.

In this scenario, the correct code for the updateScreen() function is written as follows:

function updateScreen()   { ⇒

       setText ("counter_label" counter)  {

       if (counter == 0);

          setProperty ("counter_label", "font-size", "24") ;

       }                         +

}

In conclusion, the executable code for the updateScreen() function which would be called in each of the onEvent blocks is "setText ("counter_label" counter) = = 0."

Read more on function here: brainly.com/question/20264183

#SPJ2

I really need help please :)

Answers

I'm sorry I don't know question 6, but question 5 is B. Who love

When you send large attachments, you are not
a. considering the needs of others
b. doing anything wrong
c. helping to maintain respectful communication
d. following social conventions
Please select the best answer from the choices provided
A
ОО
B
ОС

Answers

Answer:

c,becauses she is helping

Explanation:

thank me later

Answer:

A

Explanation:

i got a 100

The image shows a bar graph.

A bar graph shows a series of 4 vertical bars along an x and y axis.

In which scenarios would using this graph be best for a presentation? Check all that apply.

showing change in a community’s average median age over a century
comparing the percentages of the types of pets owned in a community
showing how the world’s shark population has changed over 50 years
comparing the number of men and women who earned engineering degrees in a decade
showing the percentages of the various religions practiced in Indonesia

Answers

Answer:

showing change in a community’s average median age over a century

showing how the world’s shark population has changed over 50 years.

comparing the number of men and women who earned engineering degrees in a decade

Explanation:

Ugh these are hard questions

Answers

9 is B, and 10 is D I think ... brainliest pls

The symbol is used to indicate that a line of text is a comment.

Answers

Answer:

Explanation:

asterisk

Answer:

# is the symbol you would use

Explanation:

I took the Unit Test on Edgen.

Overview Write a program that reads an integer from the user and then prints the Hailstone sequence starting from that number "What is the hailstone sequence?" you might ask. Well, there are two rules: • If n is even, then divide it by 2 • If n is odd, then multiply it by 3 and add 1 Continue this sequence until you hit the number 1.​

Answers

n=int(input("Enter number: "))

while n != 1:

   print(n)

   if n%2==0:

       n//= 2

   else:

       n = (n*3)+1

print(n)

I wrote my code in python 3.8. If you want to print the 1, keep the last line of code otherwise delete it.

The platform in E-Learning refers to:

A.
the type of computer system that the course can be taken on.

B.
the internet service provider used to access the course and materials.

C.
the set of tools and services students involved in the course can use.

D.
the levels of difficulty the students studying the course experience.

Answers

A.

The type of computer system that the course can be taken on.

What is the difference, if any, between a project manager and a producer on a digital media production team?


A. A project manager oversees the entire project, while the producer just oversees the creative element.

B. A project manager is in charge of the people involved in the project, while the producer secures the funds.

C. A project manager secures the funds for the project, while the producer is in charge of the people involved.

D. A project manager just oversees the creative element, while a producer oversees the entire project.

Answers

Answer:

A. A project manager oversees the entire project, while the producer just oversees the creative element.

Explanation:

i guess

Which of these is an example of a system?

a circle

force

a single particle of matter

scissors

Answers

Answer:

force and a single particla of matter

Propose a list of five milestones that would be reasonable in a mid-project prototype phase of a video game development project (any genre).

Answers

Answer:

Five milestones of a game development process are prototype, vertical slice, pre-alpha, alpha, and beta.

Explanation:

Game development is the process of creating or producing a functional bug-free game. The development process hits several milestones throughout its three stages or processes. These milestones are prototype, vertical slice, pre-alpha, alpha, beta, and gold master.

How will you define a text?

Answers

Answer:

Text refers to content rather than form; for example, if you were talking about the text of "Don Quixote," you would be referring to the words in the book, not the physical book itself. Information related to a text, and often printed alongside it—such as an author's name, the publisher, the date of publication, etc.—is known as paratext.

The idea of what constitutes a text has evolved over time. In recent years, the dynamics of technology—especially social media—have expanded the notion of the text to include symbols such as emoticons and emojis. A sociologist studying teenage communication, for example, might refer to texts that combine traditional language and graphic symbols.

Explanation:

I Hope it help

list three rational number between-1 and 1​

Answers

Answer:3 numbers are -0.9  0.25 0.26

Explanation:

Answer:

oh god heartburn oh wait wrong question

Explanation:

Zareen used a school computer to create a fake
website where she posted pictures and rude
comments about her former friend.
What consequences could she face from school
officials for her actions? Check all that apply.
She could have her technology privileges taken
away.
She could face a severe financial penalty.
She could spend time in a juvenile detention facility.
She could face detention or suspension.
O She could be forbidden from attending school social
events.
She could be denied access to certain websites.

Answers

Answer: She could have her technology privileges taken away, She could face detention or suspension, She could be forbidden from attending school social events, She could be denied access to certain websites.

Explanation: ADEF on Edge 2021

The  consequences could Zareen  face from school are-

She could have her technology privileges taken away.She could be denied access to certain websites.She could face detention or suspension.What is a computer?

A computer is referred to as an electronic device that is used to perform arithmetic and logical operations quickly and accurately without causing any error in the result.

In the given case, it is explained that A girl named Zareen used a school computer to post comments inappropriate and rude comments about her former friend by creating a fake website.

This shows that Zareen has violated someone's personal privacy which can result in severe actions against her so the school may restrict her to use this kind of website.

As she disturbs someone's personal or social image it can cause her with suspension from school. The school may restrict her to use any kind of technology due to her immature and rude behavior.

Learn more about computers, here:

https://brainly.com/question/1380748

#SPJ5

If tech is smarter than us. How did a human make something smarter than him/her?

Answers

Answer:

hey eliza you there

Explanation:

Answer:

Well, really we are the smart ones since we created it and we put all of the info inside of that robot

Explanation:

Provides an array of buttons for quick access to commonly used commands and tools

A. scroll bar

B. tool bar

C. status bar

D. menu bar

Answers

Answer:Tool bar

Explanation:

The toolbar is said to provide an array of buttons for quick access to commonly used commands and tools. Through the toolbar, one can easily access the commands that are commonly used.

We can see the toolbar in several software like the graphics editor, office suites, and browsers.

The answer is B. Tool Bar!

what is two examples of software and hardware?​

Answers

Answer:

Hardware Software

If hardware is damaged, it is replaced with new one. If software is damaged, its backup copy can be reinstalled.

Ex: Keyboard, Mouse, Monitor, Printer, CPU, Hard disk, RAM, ROM etc. Ex: Ms Word, Excel, Power Point, Photoshop, MySQL etc.

Explanation:

Answer:

hardware= key board ,mouse

software =excel,power point.

17. What is something an employer might look for in person when hiring? (3
points)
A. Someone with a positive attitude
B. Someone with positive qualities such as honesty, tolerance, and
patience
C. Someone easy to work with
D. All of the above

Answers

D. all of the above
D. All the above

Why? Since all these qualities are valuable when hiring someone, you want them to be polite and respectful. It will also make working with this person better since you won’t have to deal with some rude or nasty.

Approximately how many tweets are posted on Twitter each day? 500 500 thousand 500 million 500 billion

Answers

Answer:

around 500 million

Explanation:

Answers are 1-11, 3 is wrong

Answers

Answer:is the python

Explanation:

Use repl .it

The answer is 4

1:
3+2=5
2:
5+2=7
3:
7+2=9
4:
9+2=11
It would stop here as 11 is bigger than 10
Other Questions
The sides of a regular hexagon is 16ft. What is the area of the hexagon? Determine how to translate triangle A'B'C' to triangle ABC. wanna talk about educationjulie and the phantoms tho Which formula is an empirical formula?A.CH4B.C2H6C.C3H6D.C4H10 The Japanese government has raised the __________ to ensure that funds are available for the elderly The speakers tone might best be described asA.unrestrained and candidB.rousing and authoritativeC.complex and ambiguousD.provocative and sardonicE.argumentative and pedantic In the move The Patriot What happens to the Rebels being treated at the Martin's farm? Question 40/20 ptsPLEASE HELP!!!: The slope of a line is 3 and they-intercept is (0,4). What is theequation of the line in slope-interceptform? The radius of the cone is 5 in and y = 13 in. What is the volume of the cone in terms of ?A cone with a right triangle formed from its dimensions; the value of the height is h, and the value of the slant height is y; the height x and the radius form a right angle at the center of the cone. this is due in 45 minutes :,)what you're supposed to do is put the name of the part each letter is on Jayce bought 5 bath towels and returned 2 hand towels. His sister Jayna bought 3 bathtowels and returned 4 hand towels. Jayce paid a total of $124 and Jayna paid a total of5b - 2h = 124$24. The system of equationsmodels this situation, where b is the3b - 4h = 24price of a bath towel and h is the price of a hand towel. How much does each kind oftowel cost? why people are horrified by supernatural forces The junior class sold 120 turkey dinner plates and 200 chicken dinner plates for a total of $2,150. The senior class sold 100 turkey plates and 300 chicken plates, raising $2,625. What was the cost of each turkey dinner plate? What is the cost of each chicken plate? How do you find area and perimeter of a rectangle with the side lengths of 5x^2 and 12x? Rewrite in simplest terms: 8(-10r - 9) + 9r Solve the inequality [tex] 25 + 8x \leqslant 475[/tex] do you like robIox because I do!! i make video and animation on ROBOX A right triangle has a leg length of 10 meters and a hypotenuse that is 26 meters. What is the length of the other leg? How are theme and conflict related? Ugh these are hard questions