Identify one audience for The Sun Website

Answers

Answer 1

Answer:

69

Explanation:


Related Questions

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

Which of the following statements are true about file naming conventions? Check all of the boxes that apply.

Answers

Answer:

They increase the likelihood of finding files in the future.

They help others identify files.

The true statements about file naming conventions are that they increase the likelihood of finding the filing in the future and help others find the files.

What are the naming conventions for files?

The file naming conventions is determined as the proposal for denominating any files in such a manner that it traces what they comprise and how they associate to another data files or records.

The file naming conventions increase the likelihood of finding the file in the future and also assist others in finding the files.

Therefore, the correct options are A and C.

Learn more about the naming conventions, refer to:

https://brainly.com/question/9070060

#SPJ2

Embedded operating systems control?

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

Answers

i think the answer is the First one

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.

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

HELP ASAP 10 POINTS COMPUTER SCIENCE

Answers

The answer is b because I took that text already

Answer:

B

Explanation:

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.")

Darren built a tower out of 23 toy blocks. each block has a mass of 7grams. what is the mass of the whole tower?​

Answers

Answer:

161 grams

Explanation:

future quirk ideas! for bnha

Answers

A computer chip that tracks down any hacker and destroys there hacking device

Color codes are stored as:


A) int
B) float
C) dec
D) Strings

Answers

Answer:

the correct answer is Strings, have a great evening yall

Explanation:

1. What is the Internet?

Answers

A place to watch daisy Taylor vids

the internet can be described as Network of networks.

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

File " ", line 1
Create a Python program to print “The Indian High School” 10 times using while loop
(pls answer quickly it is urgent

Answers

Answer:

i = 1

while i < 11:

 print("The Indian High School")

 i += 1

You have been given an assignment to create a webpage that has a calming effect on the viewer. Which of these is most likely to achieve that goal?A.multiple font sizes B.a textured background C.rotating elements D.use of blues and greens

Answers

Answer:

The answer should be D.

Explanation: Cool colors make someone feel calm,mainly blue and green

Answer:

“Use of blues and greens”

Explanation:

Write a program that takes three numbers as input from the user, and prints the largest.

Sample Run
Enter a number: 20
Enter a number: 50
Enter a number: 5

Largest: 50

Answers

Answer:

In Python:

n1 = int(input("Enter a number: "))

n2 = int(input("Enter a number: "))

n3 = int(input("Enter a number: "))

if n1 >= n2 and n1 >= n3:

   print("Largest: "+str(n1))

elif n2 >= n1 and n2 >= n3:

   print("Largest: "+str(n2))

else:

   print("Largest: "+str(n3))

Explanation:

The next three lines get three numbers from the user

n1 = int(input("Enter a number: "))

n2 = int(input("Enter a number: "))

n3 = int(input("Enter a number: "))

This checks if the first number is greater than the other two. If yes, the first number is printed as the largest

if n1 >= n2 and n1 >= n3:

   print("Largest: "+str(n1))

This checks if the second number is greater than the other two. If yes, the second number is printed as the largest

elif n2 >= n1 and n2 >= n3:

   print("Largest: "+str(n2))

This prints the third number as the largest, if the other two conditions fail

else:

   print("Largest: "+str(n3))

Answer:

x=int(input("Enter a number: "))

y=int(input("Enter a number: "))

z=int(input("Enter a number: "))

print("Largest: "+ str(max(x,y,z)))

Explanation:

Got it right and I hope this helps :)

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

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

Which layer in the Transmission Control Protocol/Internet Protocol (TCP/IP) model is responsible for delivering data between two nodes?

Answers

Answer:

Network.

Explanation:

The Transmission Control Protocol/Internet Protocol (TCP/IP) model is a standard networking protocol which allows network devices such as routers, switches, and host computers to interconnect and communicate with one another over a network. The Transmission Control Protocol/Internet Protocol (TCP/IP) model comprises of four (4) layers and these includes;

I. Application layer.

II. Transport layer.

III. Internet layer.

IV. Network layer.

The network layer in the Transmission Control Protocol/Internet Protocol (TCP/IP) model is responsible for delivering data between two nodes.

Basically, this layer known as network layer is the fourth layer of the Transmission Control Protocol/Internet Protocol (TCP/IP) model and it is typically responsible for the transmission of packets from one network device to another.

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

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.

Reading (BCK FORM 2C IT 2020-2021)
Hi Sheneille, when you submit this form, the owner will be able to see your name and email address.
1. It are a gud idear to deliberatli type sum errurs so wee can sea ow the spellcherker
werks When the spelling checker encounters a word it doesn't recognize it determir
which words in its dictionary are similarly spelled and displays a list of those words
the most likely match highlighted The contents of the list determined only by spellir
any instances of terms that seem inapropriate in context are completely coincedent
You might have to ecide on the right anser
the carpenter indcated that he did not no that the materals was already pur
you advise him! This situation prevented him form bilding the shelfs last we
4 days left in the month; it is unlikely that he will be able to compleet the tw
time for the store opening? Should we arrange to get a new carpenter that i
in Kingstown. Please let me no as soon as posible, as I will need to advice t
request there permision!
Thank you very much fo yo telephone call 2day we r in-deed glad 2 here tha
utain during the y
fell​

Answers

Answer:

Use grammarly

Explanation:

Answer:

It is a good idea to deliberately type sum errors so we can see how the spellchecker  works. When the spellchecker encounters a word it doesn't recognize the correct spelling or words in its dictionary that are similarly spelled and displays a list of those words . The most likely match highlighted, the contents of the list determined only by spelling.  

Any instances of terms that seem inappropriate in context are completely coincidental

You might have to decide on the right answer.

The carpenter indicated that he did not know that the materials were already perfect,  so you advise him. This situation prevented him form building the shelves last week.  Four days left in the month, it is unlikely that he will be able to complete the work.

Time for the store opening. Should we arrange to get a new carpenter that I had looked into in Kingstown? Please let me no as soon as possible, as I will need to request there permission!

Thank you very much for your phone call today we are in-deed glad to here that  you would like some help.

Explanation:

uh- I have no idea what this is and I had so much trouble trying to figure this out...

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


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:

Keira is creating an app for her cross-country team. Users will input their race times and the output will be a graph showing their progress.

Which Python module should Keira use to draw a line on the screen?

Design Graphics
Graphics Module
Math Module
Turtle Graphics

Answers

Answer:

Design Graphics

Explanation:

What are the missing whole numbers on this number line? Enter your answers in the boxes. plz show work I'm I need answer 3rd grade​

Answers

1 3 and 4... you are just counting up from 0

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

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.

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

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:

Other Questions
jenny had to sort 24 beads. twice of the beads are red and the other is green NEED HELP EMERGENCY mathsgenie.co.ukPlease do not wri-There are 12 boys and 15 girls in a class.One boy and one girl will be selected to represent the class on the studentcouncil.Work out the total number of ways of choosing a boy and a girl.(2 marks) explain step by step where the DNA is located and what equipment they will need to observe the DNAPLEASE BE QUICK i need help with geometry ! A coin is dropped off of a building landing on its side. It hits with a pressure of 400/2 It hits with a force of 0.1 Calculate the area of the coin? When some solid ammonium nitrate was dissolved in water the temperature decreased from 22 oC to 3 oC. What can be deduced from this observation?The dissolving is endothermic and H is positive. The dissolving is endothermic and H is negative. The dissolving is exothermic and H is positive. The dissolving is exothermic and H is negative.Which is a correct statement about an endothermic reaction?A. The bonds in the reactants are stronger than in the products and H is positive.B. The bonds in the products are stronger than in the reactants and H is positive.C. The bonds in the reactants are stronger than in the products and H is negativeD. The bonds in the products are stronger than in the reactants and H is negative. Which is a correct statement about the following() enthalpy level diagram of a reaction? A. The reaction is exothermic and H is positive.E. The reaction is exothermic and H is negative.F. The reaction is endothermic and H is positive.G. The reaction is endothermic and H is negative.Which statements are correct for all exothermic reactions?I. The products are more stable than the reactants.II. The bonds in the products are stronger than the bonds in the reactantsIII. The enthalpy of the products is less than the enthalpy of the reactantsA. I and II onlyB. I and III onlyC. II and III onlyD. I, II and III PLZ HELP AND GET THIS CORRECT !!! What is the central idea of this text ( Katie Sowers is the first women to coach in a super bowl.Her goal: make sure Im not last) A : sowers has spent her career fighting for gender equality and is passionate about it B : sowers worked hard and as a result , became the first woman to coach in a Super Bowl C : sowers has often experienced sexism and has had to overcome many difficulties in her career D : sowers worked her way into coaching professional football in order to use her position as a platform for equal rights Which example from the text develops the idea that the Egyptians understood the importance of taking care of their workers? "the workers usually slept in simple conditions around the construction site." "Undertaking such a massive colossal task required a huge workforce." "Tens of thousands of workers required enormous resources, such as a place to live during the construction." "This led the researchers to believe that it was likely the workers ate better on the job than they did back at home." The lines represented by the equations y3x + 5 and 5y 15x = -10are? Marcus is building a fence around his rectangular backyard. The length of his backyard is 75 3/4 ft, and the width is 81 1/4 ft. If the fence is 3/4 finished, how much fencing is left to complete? In a story about a courtroom trial, which character is most clearly round?A. Roberto the court reporter, who does his job diligently and cantype 130 words per minuteB. Roger McGee the judge, who is stern and by the book and has nopatience for nonsenseC. Jill the prosecutor, who will do anything to win, even if it meansconvicting someone who's innocentD. Ahmed the defense attorney, who never wanted to be a lawyer butcan't stand injusticeSUBMIT Why did Jefferson want to reduce the size and power of the federal government? Resuelve los siguientes ejercicios:9. Un campesino tiene un terreno que mide 25 hectreas. Cuntos metros cuadra-dos ocupa el rea de este terreno? Recuerda que 1 hectrea es igual a 10,000 m2DatosOperacionesResultado: Where does the external respiration take place in pets? In which quadrant angle k lies, if tan kYour answer:A. Q11B. QlC. QVD. QIII Choose the CORRECT statement about enzymes below.Group of answer choicesEnzymes raise the activation energy needed in a chemical reactionEnzymes slow down the rate of chemical reactionsEnzymes function best at specific pH and temperaturesEnzymes are carbohydrates and store short term energy PLEASE HELP!!! solve the right triangle Please help! its angles again If you eat food how long it takes to fully go in your stomach?