What is the use of Ribbon in Ms-Paint?
Ans.:​

Answers

Answer 1
8 is the correct answer

Related Questions

What is the difference between internal hardware and software?


1. Internal hardware is the physical parts of a computer that you see on the outside; software is the physical parts of a computer that you see on the inside.

2. Internal hardware is the physical parts of a computer that you see inside the computer; software is the physical parts of a computer that you see on the outside.

3. Internal hardware is the programs and applications that make the computer work; software is the physical parts that help the computer work.

4. Internal hardware is physical parts that help the computer work; software is the programs and applications that make the computer work.

Answers

Answer:

4) Internal hardware is physical parts that help the computer work; software is the programs and applications that make the computer work.

How does our behavior change when we know we're being watched?

Are we less likely to be ourselves? How does that relate to our behavior online?


Please help this is due today and I really need help.

Answers

I can't even say this is an answer

If there isn't a specific answer for this, I think it depends on everyone. Maybe they'd behave better knowing that their actions are being monitored. Who in their right mind is going to act like a lunatic when they know people are watching.

I think it will most likely alter their attitude in a positive way but it will also most likely be fake actions put on show

is a variable a number

Answers

A variable is a symbol standing for a unknown numerical value. Such as “x” and “y”

Answer:

No

Explanation:

A variable is like a symbol like a letter, that it used to describe a number.

The formula for the trajectory of a ball is given by f(x)=xtanθ−12v20gx2cos2θ+y0 where x is a coordinate along the ground, g=9.81 is the acceleration due to gravity, v0 is the magnitude of the initial velocity which makes an angle θ with the x-axis, and (0,y0) is the initial position of the ball. Write a program to calculate the trajectory y=f(x) for 0≤x≤16, with y0=10, v0=10, θ=50∘. (Do Python trigonometric functions accept radians or degrees?) Let x vary between 0 and 16 with 101 points. You will need to:

Answers

Answer:

The program in python is as follows:

import math

def traj ect ory(th e ta,x,y,v):

   t = ma th . tan(m ath . radians(theta))

   c = math . cos(math . radians(theta))

   g = 9 . 8

   fx = x * t - (1/(2*v**2)) * ((g*x**2)/(c**2))+y

   return round(fx,3)

   

print("x\t f(x)")

for x in range(0,17):

   theta = 50

   y= 10

   v = 10

   print(str(x)+"\t"+str(tr aje ctory (the ta,x,y,v)))

Explanation:

The question is incomplete. However, I have written the program to calculate the trajectory values f(x).

See attachment for complete program where comments were used as explanation

James wants to buy a pair of pants for $60.
When he went to the store he found that the
price was marked down by 20%. How much do
they cost now?

Answers

They cost 48. Used a calculator

In a swap you need a _____________ variable so that one of the values is not lost.

Answers

Answer:

temp

Explanation:

:D

There are different type of variable in computer, In a swap you need a temporary variable so that one of the values is not lost.

What is a temporary variable?

A temporary variable is a variable that has a short lifetime,it is use to hold a data that will soon be discarded, or data that will soon be moved to a more permanent memory location.

Therefore, In a swap you need a temporary variable so that one of the values is not lost.

Learn more on temporary variable here,

https://brainly.com/question/13420617

The property that allows a metal to be drawn into wires is called...
A. Hardness
B. Malleability
C. Ductility
D. Elasticity

Answers

Answer:

Malleability and ductility

Explanation:

Metals are also easily distinguished from non-metals and other materials in their ductility (ability to be drawn into a wire) and malleability (the ability to be beaten into a. sheet).

Did you need help on this with an assignment? Hope this helps!

Select the correct answer.

Nina obtains an image in which birds are flying across the sky. Some parts of the image are blurry. In which stage of image processing will Nina fix the blurry parts?

A.
image acquisition
B.
preprocessing
C.
extracting features
D.
segmentation

Answers

Answer: Image Acquisition

Explanation:

which type of number represents bits of data that are transmitted from one device to another?
a) octal
b)decimal
c)hexadecimal
d)binary

Answers

The correct answer should be Binary

Range is an example of a ______________.



Python

Answers

The question isn't clear enough. I feel the question wants us to answer what category or type the range is in python.

Answer:

Range is a Function in python

Explanation:

Range is an example of a function in python. The range function takes its own argument when called. The range function can take up to 3 arguments but atleast 1 argument should be stated when it is called.

When range is called as ;

range(4) ;

This specifies the stop argument ; this evaluates as range of values from 0 up to 3 (4 is excluded) in the interval of 1

Output will be : 0, 1, 2, 3

range(4, 8) ;

This specifies the start and stop argument ; this evaluates as range of values from 4 up to 7 (8 is excluded) in the interval of 1

Output will be : 4, 5, 6, 7

range(4, 8, 2) ;

This specifies the start, stop and interval argument ; this evaluates as range of values from 4 up to 7 (8 is excluded) in the interval of 2

Output will be : 4, 6

What is meant by the term internal hardware??
explain it in your own words ,do not use goo.gle thank you!

Answers

Answer:

Internal hardware devices include motherboards, hard drives, and RAM. External hardware devices include monitors, keyboards, mice, printers, and scanners. The internal hardware parts of a computer are often referred to as components, while external hardware devices are usually called peripherals

Answer:

Internal hardware is the hardware that is inside the computer. For example, CPU, RAM, ROM BIOS, Motherboard, Graphics card.

HELP I SUCK IN THIS HELP!!!!! ​

Answers

Answer:

I think it's print(5**3)

It is a way of creating a name, symbol, color, and design to establish and differentiate a product from its prospect competitors

Answers

Answer:

Branding

Explanation:

The term that is being defined by the question is known as Branding. This is what companies do to products in order to allow customers to distinguish the product from the competitors similar products. Doing so allows a company to attract and maintain customers since a customer will see become aware of the branded product and buy it. If the purchasing experience goes well they will begin to associate the good experience with the brand and therefore with the company as well.

HELP PLEASE!!!!

3. Memory and Storage
The GCSE Computer Science course requires that you
understand how decimal numbers are converted into
binary, and vice versa.
Can you convert the numbers 12, 24, 48 and 96 into binary form?​

Answers

Answer:

1100 ; 11000 ; 110000 ; 1100000

Explanation:

Converting the following decimals to binary :

2__12

2__6 r 0

2__3 r 0

2__1 r 1

___0 r 1

12 = 1100 base 2

2.)

2__24

2__12 r 0

2__6 r 0

2__3 r 0

2__1 r 1

___0 r 1

24 = 11000 base 2

2__48

2__24 r 0

2__12 r 0

2__6 r 0

2__3 r 0

2__1 r 1

___0 r 1

48 = 110000 base 2

2__96

2__48 r 0

2__24 r 0

2__12 r 0

2__6 r 0

2__3 r 0

2__1 r 1

___0 r 1

96 = 1100000 base 2

life without Computer ?
advantage​

Answers

Answer:

People will start socializing in person more,people will stay fit and strong because they will start playing games for entertainment, our eyes won't get get tired easily because of the radiation and blue light the computer emits hope this answer helps

What is inputted into a computer system?

Answers

Answer:

Hey mate.....

Explanation:

This is ur answer.....

Input refers to any information, or data, that is sent to a computer for processing. Input is often sent to the computer from a device such as a keyboard, mouse, or other input device. Putting it simple, input is the act of entering data into a computer.

Hope it helps!

Mark me brainliest....

FOLLOW ME!!!! :)

The information regarding inputted into the computer system is as follows:

Input refers to any information, or data, that is sent to a computer for processing. Input is often sent to the computer from a device like a keyboard, mouse, or other input device. It is the act of entering data into a computer.

Learn more: brainly.com/question/17429689

13.
_______allows you to organize and summarize selected columns and rows of data
in a spreadsheet to obtain a desired report:

A.Pivot chart
B.Rotate table
C.Pivot date
D.Pivot table

Answers

Answer:

D. Pivot table

Explanation:

Microsoft Excel is a software application or program designed and developed by Microsoft Inc., for analyzing and visualizing spreadsheet documents.

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 systems.

Generally, it is extremely difficult and considered to be a herculean task to understand, analyze and summarize data when they are raw and unorganized.

In order to overcome this challenge or hurdle, Microsoft inc. designed and developed Pivot tables and charts to avail end users the ability to visualize, understand, analyze and summarize data in its raw form.

Hence, Pivot table allows you to organize and summarize selected columns and rows of data in a spreadsheet to obtain a desired report. It is an in-built feature of the Microsoft Excel software application or program.

give a summary of html forms​

Answers

HTML forms are used to collect data from users. Users essentially enter data into forms by filling in text fields, selecting toggles and making choices from selection objects. When the user has filled in the data it is transmitted to the server for processing. HTML forms are specified using the <form> element.

Hope this helps you!

Timmy walks into a store to buy a PC game. He reads this information about a game on its packaging:

System Requirements
Minimum Recommended
Processor Intel Core i3 or equivalent Intel Core 2 Quad or higher
Memory 2 GB 4 GB or higher
Video Card Integrated Discrete


Based on this information, which statement is true?
A.
Timmy can play the game even if his computer’s specifications don’t meet the minimum requirements.
B.
Timmy can play the game even if his computer has less than 2 GB memory.
C.
Timmy can play the game at a higher level of visual detail if his computer has an integrated video card.
D.
Timmy can play the game even if his computer’s processor class is lower than an Intel Core i3.
E.
Timmy can play the game at a higher level of visual detail if his computer has an Intel Core 2 Quad processor.

Answers

Answer:

C. Timmy can play the game at a higher level of visual detail if his computer has an integrated video card.

Explanation:

The processor efficiency and memory requirements are much more necessary to get the game to run and give it a playable framerate. Having a video card will improve his graphics, so this is more of a suggestion than a necessity.

What's the vbsd canvas instructor address?

Answers

Answer:

Instructor access would be the same domain students use as they don't change for teachers on the canvas website.

Explanation:

pLZ PLZ PLZ HELP I HAVE SO MANY MISSING ASSINMENTS. why is physical security so important and necessary for both personal users and businesses?

Answers

Physical security is important because a physical attack is perhaps the most fundamental kind of attack. ... Using a floppy drive or CD-ROM drive on a machine that does not support good BIOS security. Damage to or theft of important machine components, especially those that store data. Theft of an entire machine

Question 2 of 10
Priscilla wants to learn her grandmother's native language after seeing social
media highlighting her family's homeland. What type of impact is this?
A. Social and economic
B. Economic and personal
C. Personal and cultural
D. Ethical and personal

Answers


i thinkkkkkkkkkkkkkkkk D

Priscilla wants to learn her grandmother's native language after seeing social media highlighting her family's homeland.  Thos is ype of impact is this D. Ethical and personal.

What is the cultural impact?

Ethics are critical to people due to the fact they serve as (1) requirements of conduct for figuring out an accurate route of action, (2) pointers for decision-making and warfare resolution, and (3) impacts on worker motivation.

Changes that have an effect on people's surroundings (architecture, arts, customs, rituals etc.) because of influxes of travelers represent cultural impacts.

Read more about the  Ethical and personal:

https://brainly.com/question/1031443

#SPJ2

(9/5)C+32 write QBASIC expessions for this​

Answers

Answer:

REM PROGRAM TO CONVERT TEMPERATURE IN CELCIUS TO FARENHEIT

CLS

INPUT “ENTER TEMPERATURE IN CELCIUS”; C

F = C * (9 / 5) + 32

PRINT “TEMPERATURE IN FARENHEIT=”; F

END

Explanation:

Your formula suggests a celcius to fahrenheit conversion...

Which of the following is a table which can be rearranged to analyze data in a variety of ways?
A. Pivot Table
B. HLOOKUP Table
C. VLOOKUP Table
D. PivotLookup

Answers

Answer:

A. Pivot Table

Explanation:

Given that a Pivot Table is a form of a table in statistics that comprises various data of several tables in a shortened form.

This table is then used to carry out analysis of data in numerous ways to reach a meaningful conclusion to make a decision.

Hence, in this case, the correct answer is a PIVOT TABLE.

Generalized goals are more likely to be achieved than specific goals. True or False

Answers

False

They are likely to be achieved because they are well defined, clear, and unambiguous.

Write a method that takes a parameter for the number of a month and prints the month's name. You may assume that the actual parameter value passed to the method is always between 1 and 12 inclusive.

This method must be called monthName() and it must have an integer parameter.

Calling monthName(8) should print August to the screen.

Answers

Answer:

Get month number from month name

Use Java's Calendar class. It can parse any given string into a valid calendar instance. Here is an example (assuming that the month is in english). Date date = new SimpleDateFormat("MMMM").parse(monthName); Calendar cal = Calendar.getInstance(); cal.setTime(date); println(cal.get(Calendar.MONTH)); You can specify the language in SimpleDateFormat: String monthName = "März"; // German for march Date date = new SimpleDateFormat("MMMM", Locale.GERMAN).parse(monthName); Calendar cal = Calendar.getInstance(); cal.setTime(date); println(cal.get(Calendar.MONTH)); By default, Java uses the user's local to parse the string. Keep in mind that a computer starts counting at 0. So, January will be 0. If you want a human readable date, you should format the calendar instance: SimpleDateFormat inputFormat = new SimpleDateFormat("MMMM"); Calendar cal = Calendar.getInstance(); cal.setTime(inputFormat.parse(monthName)); SimpleDateFormat outputFormat = new SimpleDateFormat("MM"); // 01-12 printlng

MARK ME BRAINIEST FOR MORE INFO

CONCEPTO DE ORGANIGRAMA

Answers

como the amas si mucho gusto

output device is any peripheral to provide data and control signal to ab information processing system​

Answers

Answer:

Its false ita not "output" its "input"

Joel needs to write a research paper. What is the best application to use?

Answers

Answer: Britannica High School

Explanation:

https://school-eb-com.content.elibrarymn.org/levels/high

Answer:

g

o

o

g

l

e

s

h

e

e

t

s

Explanation:

What is a font? A)
a typeface on a label
B) a typeface on a poster
C) a typeface on a computer or d) a typeface on a sign

Answers

Answer:

A is most likely the answer

Explanation:

Other Questions
Which of the following best explains the difference between autotrophs andheterotrophs?A Heterotrophs are organisms that can produce their own food and autotrophs are organisms thatmust consume or break down other organisms for food.B Autotrophs are consumers and heterotrophs are producers.C Autotrophs are organisms that can produce their own food and heterotrophs are organisms thatmust consume or break down other organisms for food.D Heterotrophs live in terrestrial ecosystems only and autotrophs can live in terrestrial or aquaticecosystems. Writing Question: Explain the relationship of the media to the government. I NEED HELP!!!! What 4 minerals most commonly found in rocks? calcitefeldsparfluorite halite hematitemagnetitemicaquartz What large geographic feature presented travel difficulties for Lewis and Clark after the explorers had underestimated it? Students in the fifth-grade class bought 30 yards of fabric to make pennants for a pep rally. Each pennant requires 1/3 yard of fabric. If the students have already made 35 pennants from the fabric, how many more pennants can they still make? * five people were asked about the time in a week they spend in doing social work in their community they said 7,10,13,20,15 hours respectively. which methametical concept is used in this question??what value is depicted in this question?? Plzz Help!! Do not do it for the points plz i really need help on this!!!!!!! You have decided to stop using a cell phone until you have completed yourfinal examination. However, your friend does not agree with your decision.Write the dialogue that takes place between you and your friend Debbie wants to buy a new cover for her phone. She does not have enough money for the one she is considering. Debbie has $24.00 which is 80% of the cost of the phone cover she would like. What is the price of the phone cover? Effects of heart disease What are the effects of heart disease ? how do you hack someone's wifi. (Hacker needed) A very special island is inhabited only by knights, always tell the truth, and knaves, always lie. You meet two inhabitants: A and B. A says, "B is lying" B says, "Either A is lying or I am" Who is a knight? And provide necessary details to support your answer. (10 points Antivirus is a program that detects error.True or False. 126 (x +77)find x!! Did you do anything to premote peace during peace week ? Select all the numbers that are common multiples of 4 and 6.121012244060 Click the links to open the resources below. These resources will help you complete the assignment. Once you have created your file(s) and are ready to upload your assignment, click the Add Files button below and select each file from your desktop or network folder. Upload each file separately.Your work will not be submitted to your teacher until you click Submit.DocumentsSelecting a Career Activity Instructions (Word)Selecting a Career Activity Instructions (PDF)Selecting a Career Graphic Organizer (Word)Selecting a Career Graphic Organizer (PDF)File UploadAccepted file types: .ppt, .pptx, .xls, .xlsx, .doc, .docx, .zip, .pdf, .accdb, .msg Ms. Day drew a rectangleon the board with a widthof 14 cm and a diagonallength of 50 cm. Find thelength of this rectangle incentimeters. Please help, i will mark brainliest. 7 pointsSue has a sticker collection with 36 red, 72 blue, and 18 red. She wants toarrange the stickers in equal rows with only one type of sticker in eachrow. Which of the following choices could Sue choose? *184128