What color is (255, 0, 255)?

A) lime
B) yellow
C) fuchsia
D) cyan

Answers

Answer 1

Answer:

Fuschia!

Explanation:

Try using rgb.to to find specific colors


Related Questions

Which operation will leave the originally selected information
unchanged?
Raste
O Move
O Cut
O Copy

Answers

Answer:

copy

Explanation:

okay you will copy something and and is that thing will stay like the first thing

what are some technologies that professional coders use to be better at their job

please list at least 5

Answers

Answer:

Software application developer.

Web developer.

Computer systems engineer.

Database administrator.

Computer systems analyst.

Software quality assurance (QA) engineer.

Business intelligence analyst.

Computer programmer.

Explanation:

Software application developer.

Web developer.

Computer systems engineer.

Database administrator.

Computer systems analyst.

Software quality assurance (QA) engineer.

Business intelligence analyst.

Computer programmer.

C++

Javascript

Coding Training Courses

edhesive assignment 7 calendar

Answers

Answer:

def leap_year(y):

 if y % 4 == 0:

     return 1

 else:

     return 0

def number_of_days(m,y):

 if m == 2:

     return 28 + leap_year(y)

 elif m == 1 or m == 3 or m == 5 or m == 7 or m == 8 or m ==10 or m == 12:

     return 31

 elif m == 4 or m == 6 or m == 9 or m == 11:

     return 30

def days(m,d):

 if m == 1:

     return 0 + d

 if m == 2:

     return 31 + d

 if m == 3:

     return 59 + d

 if m == 4:

     return 90 + d

 if m == 5:

     return 120 + d

 if m == 6:

     return 151 + d

 if m == 7:

     return 181 + d

 if m == 8:

     return 212 + d

 if m == 9:

     return 243 + d

 if m == 10:

     return 273 + d

 if m == 11:

     return 304 + d

 if m == 12:

     return 334 + d

def days_left(d,m,y):

 if days(m,d) <= 60:

     return 365 - days(m,d) + leap_year(y)

 else:

     return 365 - days(m,d)

print("Please enter a date")

day=int(input("Day: "))

month=int(input("Month: "))

year=int(input("Year: "))

choice=int(input("Menu:\n1) Calculate the number of days in the given month.\n2) Calculate the number of days left in the given year.\n"))

if choice == 1:

 print(number_of_days(month, year))

if choice == 2:

 print(days_left(day,month,year))

Explanation:

Hoped this helped

The program is an illustration of functions.

Functions are groups of code segments that are executed when called or evoked

The calendar program

The calendar program in Python, where comments are used to explain each line is as follows:

#This checks for leap year

def leap_year(y):

   if y % 4 == 0:

       return 1

   else:

       return 0

#This returns the number of days in the month

def number_of_days(m,y):

   if m == 2:

       return 28 + leap_year(y)

   elif m == 1 or m == 3 or m == 5 or m == 7 or m == 8 or m ==10 or m == 12:

       return 31

   elif m == 4 or m == 6 or m == 9 or m == 11:

       return 30

#This returns the number of days left in the month

def days(m,d):

   dayList = [0,31,59,90,120,151,181,212,243,273,304,334]

   return dayList[m-1] + d

#This returns the number of days left in the year

def days_left(d,m,y):

   if days(m,d) <= 60:

       return 365 - days(m,d) + leap_year(y)

   else:

       return 365 - days(m,d)

#The main begins here

#This next three lines gets input for date

day=int(input("Day: "))

month=int(input("Month: "))

year=int(input("Year: "))

#This gets the choice from the user

menu=int(input("Press 1 to calculate the number of days in the given month.\nPress 2 to calculate the number of days left in the given year.\nChoice: "))

#This prints the number of days in the month

if menu == 1:

   print(number_of_days(month, year))

#This prints the number of days left in the year

elif menu == 2:

   print(days_left(day,month,year))

Read more about Python functions at:

https://brainly.com/question/14284563

can someone help me answer this, I can’t fail tysm :)

Answers

Don’t know what the answer is but do you, I have the test for that today

My tablet storage is 97% full. Should I delete some stuff? I really don't want to cause I'm kind of a hoarder unfortunately​

Answers

Answer:

i would do it so yeah delete some stuff.

Yes for sure! Do stuff you don't play you can always redownload it

Which of the following is NOT true about a flow chart?
A. It is usually created by programmers after writing a program
B. It shows programmers different algorithms before creating a program
C. It uses boxes of different shapes which indicate different types of
instructions
D. It helps programmers pay attention to the logic of the solution to the
problem

Answers

i think the answer is A

The not true of flow chart.

A flow chart is an illustration that shows the several steps of the process or the sequence if events and is a tool that can be used to adapt a wide variety and describes the purposes of the processes. Is basically a type of diagram representation of an algorithm.

This shows the answer is created for the programmers after a program.

The flow chart is a guide and describes the methodology of completing the task and the various steps involved to solve the same.Hence option A is correct.

Learn more about the flow chart.

brainly.com/question/15712490.

HELP ASAP 10 POINTS COMPUTER SCIENCE

Answers

The answer is b because I took that text already

Answer:

B

Explanation:

Which fraction represents the shaded part of this circle? 1 2 O 4 Check Answer /3rd grade/​

Answers

The Answer is 1/6 because there are 6 parts of the circle and 1 of them is shaded

Answer:

1/6 because there is one shaded and the total are 6

If an ______ is caught dumping hazardous materials, that person can be prosecuted. Answer choices A) Employee B) Employer C) Both A and B

Answers

Answer:

Both A and B

Explanation:

I think it is right

hope this helps :)

Answer:

Both A and B

Explanation:

Makes sense trust

a blank search examines the first item to see if it is a match, then the second, and so on. answers: linear, binary, and orderly. computer science ​

Answers

Answer:

A Linear Search (aka: Sequential Search)

Explanation:

A  linear  search examines the first item to see if it is a match, then the second, and so on, in a "sequential" manner!

:)

A linear search examines the first item to see if it is a match, then the second, and so on.

What is linear search?

This is known to be the most straightforward kind of searches that is known to be done in a sequential manner.

Example is  looking at a phonebook and finding names such as the first "Smith". Therefore, A linear search examines the first item to see if it is a match, then the second, and so on.

Learn more about linear search from

https://brainly.com/question/26533500

#SPJ2

Which is a preformatted file that can be used to standardize the appearance of exported data?
a database
a spreadsheet
a report
a template

Answers

Answer:

D

Explanation:

A preformatted file that can be used to standardize the appearance of exported data is a template. Thus, option D is correct.

What is spreadsheet?

A spreadsheet is a preformatted file that can be used to standardize the appearance of exported data. A spreadsheet is a computer program for organizing, calculating, and storing data in tabular form. Spreadsheets were created as digital counterparts to traditional paper accounting spreadsheets.

The data entered into a table's cells is what the program uses to run. Each cell may include text, numeric data, or formula results that automatically calculate and display values based on the contents of neighbouring cells.

Users of spreadsheets can change any stored value and watch the changes in calculated values. This enables quick investigation of numerous scenarios without the need for manual recalculation, making the spreadsheet helpful for "what-if" study.

Thus, A spreadsheet is a preformatted file that can be used to standardize the appearance of exported data.

Learn more about Spreadsheet, refer to the link:

brainly.com/question/8284022

#SPJ3

Which term is used to describe a computer that is responsible for storing and providing the information requested by a client application? This task contains the radio buttons and checkboxes for options. The shortcut keys to perform this task are A to H and alt+1 to alt+9.
A. Network
B. Client
C. Database
D. Server

Answers

I believe D. Is the answer database

Hope this helps you have a great night!! :)
D) server would be the correct answer

Who is the orange and white Foxy that looks like Mangle but instead of pink its orange

Answers

Answer:

Its Lolbit

Explanation:

Lolbit is an animatronic from Five Nights at Freddy's: Sister Location. It is a recolored version of Funtime Foxy's disembodied head, appearing as a minor Easter Egg from the main game.

Answer:

prity sure it's LOLBit

Can somebody do an Algorithm 2 for more?
(Python)

Answers

# If the number is positive, we print an appropriate message, else we print the opposite

num = 3

if num > 0:

print(num, "is a positive number.")

num = -1

elif num < 0:

print(num, "is a negative number.")

num = 0

else

print(num, "is neither positive nor negative.")


1. The structural framework for greenhouses is typically made of
A. metal or plastic tubing.
B. wooden slats
C. glass beams
D. All of the above

Answers

The answer is D it takes all those to make a green house


Shape memory alloys are:
A: Alloys that remember their original shape
B: Pigments that change colour reversibly in response
to light
C: Conductive materials
D: Coated metals with different materials to alter their
properties

Answers

A - alloys that remember their original shape

Answer:

“Alloys that remember their original shape”

Explanation:

Joe creates HTML pages of website prototypes and page designs and validates page code for a web development team. What is Joe's role? A. usability lead B. art director C. information architect D site production lead​

Answers

Answer:

D. Site production lead

Explanation:

Answer:

D site production lead​

Explanation:

Hope this will help

What will result if the following code is used in an HTML file? New Title
A. All the text on the web page will appear in red.
B. The heading “New Title” will appear in red.
C. All the headings on the web page will appear in red.
D. All the headings on the web page will have the text “New Title.”

Answers

Answer:

B. The heading “New Title” will appear in red.

Explanation:

CORRECT

The correct option is B. The heading “New Title” will appear in red.

What is HTML?HTML is the language for describing the design of Web pages. HTML provides authors the means to Publish online documents with titles, text, tables, lists, photos, etc. Retrieve online details via hypertext links, at the click of a controller.HTML is perhaps one of the most comfortable front-end programming languages to captain. So if you want to learn HTML, then go for it! With patience and exercise, you'll learn to make the most of this famous language.It's a text composition saved with the extension. HTML or. htm that possesses texts and some tags written between "< >" which give the instructions required to configure the web page. These identifications are fixed and substantial and will be currently described in the tutorials when involved and needed.

To learn more about HTML, refer to:

https://brainly.com/question/4056554

#SPJ2

By default, a footnote is placed in which of the following locations?

Answers

Answer:

By default, Word puts footnotes at the bottom of the page and endnotes at the end of the document

1. What is the Internet?

Answers

A place to watch daisy Taylor vids

the internet can be described as Network of networks.

Embedded operating systems control?

1-smart watches
2-laptop
3-desktop computer
HELPPPP

Answers

i think the answer is the First one

WILL MARK BRAINLIEST!!! Practice working with diagrams, shapes, and graphic text using this document. Complete each sentence. Steps 2, 4, and 6 involve using ___ under the Insert tab. The blue box is ___ in Step 7. The handle used to rotate the arrow in Step 8 is ___. To complete Step 13, the ___ tab needed to be used. Then, the WordArt options could be found under ___.

Answers

Answer:smart art

Enlarged

Green

Insert

Text

Explanation:

Surrendering to digital distractions can result in a disappointed
feeling of how you spent your time. True false

Answers

It all depends on how the person can handle the situation, some people may say false and others may say true. It depends on who and when you ask.

A free software license allows users to

Answers

Answer:

C. use, alter, and distribute the software as desired.

Explanation:

A software can be defined as a computer program or application that comprises of sets of code for performing specific tasks on the system

A free software license allows users to use, alter, and distribute the software as desired.

Who is the father of computer​

Answers

Charles Babbage
Xxxxxxxx

Answer:

Charles Babbage is known as the father of computer.

Explanation:

hope it is helpful to you

Two friends can share 100 songs from their Bluetooth enabled mobile devices
a. True
b. False
c. They need internet connection
d. Not sure

Answers

Answer:

A

Explanation:

If they are connected via bluetooth, you can share unlimited amounts of anything.

To configure a router/modem, what type of IP interface configuration should you apply to the computer you are using to access the device administration web app?

Answers

Answer:

You would temporarily assign it a fixed IP address in the same subnet as the router's default configuration.

Explanation:

If the router doesn't have DHCP enabled yet, your computer will not get an IP address, so you cannot communicate with it.

4.2 lesson practice edhesive quiz Q3​

Answers

Answer:

what??

Explanation:

i'll but i need a question

Match the following.
1. the process of reducing repetition of data
data normalization
2. individual categories of data you will enter in a database
records
3. a field that is a unique identifier for each record in the table
fields
4. data that is entered in the database
primary key
5. a link between two tables
relationship

Answers

Answer:

1192783728439

Explanation:

What is a mod in programming?

Give more Java questions

Answers

Answer:

The modulo operation (abbreviated “mod”, or “%” in many programming languages) is the remainder when dividing. For example, “5 mod 3 = 2” which means 2 is the remainder when you divide 5 by 3. ... An odd number is “1 mod 2” (has remainder 1).

Explanation:

Other Questions
If the frequency of an electromagnetic wave is 6.0 x 10^8 Hz, what isits wavelength? Pollution is a change in the water, air an ___ that can harm living things. PLEASE HELP!!What is the y-intercept? PLEASE HELP WILL GIVE BRAINLIEST!!!!!! Rewrite these sentences in Spanish using as many object pronouns as possible. 1. Ella da su comida a m. 2. Yo explico la tarea a ti. 3. Yo voy a explicar la tarea. 4. Yo voy a explicar la tarea a ti 5. Ellos mandan el dinero a nosotros ahora. 6. Ella manda la tarjeta (CARD) a su abuelo. 7. Nosotros mandamos los papeles a ella. 8. Yo compro el regalo para mi to. Translate 9. I am giving it to you. 10. I don't want to give it to you. 11. We are giving them to her. PLEASE HELP!!!!!Which of the following are reasons that the common people of Rome became discontent? (MARK MORE THAN ONE ANSWER)Group of answer choicesLack of available jobsAn oppressive emperorPoor treatment of slavesInequality between social classes PLEASE HELP ASAP!!How many lines of symmetry are there in the object pictured above A. 3B. 1C. 0D. 2 pls SOLVE Which equation correctly demonstrates the distributive property?A.- 2(3a + 1) = - 6a + 1B.- 2(3a + 1) = - 6a - 2C.- 2(3a + 1) = 6a + 1D.- 2(3a + 1) = 6a + 2 Unit 7 Activity 2 Tretrachords (F, C and Bb), Whole and half steps answers? Solve for xx + 4 =9 Its a competitive world out there and no one knows this better than the male birds of paradise. They perform elaborate routines and have elaborate feathers. Their wild displays can be make or break chances when trying to find a mate. Which mechanism of speciation is at work here?Temporal/TimingBehavioralGeographicalAnatomical In the adjoining figure, XY = XZ . YQ and ZP are the bisectors of [tex] \angle[/tex] XYZ and [tex] \angle[/tex] XZY respectively. Prove that YQ = ZP.~Thanks in advance ! Which is the MOST likely reason scientists are trying to find ways to get energy from more renewableresources?Renewable resources cost less to produce thanenergy from nonrenewable resourcesBRenewable resources are easier to replace thannonrenewable resourcesCRenewable resources create more power thannonrenewable resourcesDRenewable resources put more pollution in the air than nonrenewable resources A model of a famous statue is 3 1/2 inches tall. The actual statue is 5 1/4 feet tall. What is the ratio of the height of the model to the height of the actual statue in simplest form? 3. ship on which Darwin traveled7. change over time Please helpppppppppppppppppppppppppp Can you please help me out with this and please dont give me a pitty answer If checking accounts are not as profitable as savings accounts, why do banks offer them?Select the best answer from the choices provided. . .Customers need ways to access their money more easily than going to the bank to withdraw it.OB.The federal government mandates that banks offer checking accounts to their clients.C.Banks make money on fees they charge if you write a check for more money than you have in the account.ODBanks make money on the fees they charge stores for the convenience of accepting checks. 2What do teens believe when it comes to pressure and manipulation from tech companies? How does this affecttheir use of cell phones? Dante buys his lunch every day at school. After 15 days, Dante has spent $37.50 on schoollunches. At this rate, how much did Dante spend on school lunches after 5 days?