55 POINTS HElp!!! ASAP ASAP ASAP!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!1
Why do we need the Domain Name System (DNS)?


Given the domain name www.flamingflamingos.eu, what is the top level domain in this name?


How many different nameservers need to be visited in order to find the location of www.flamingflamingos.eu, including the ROOT server?


How long does this whole process take?


Once the location is acquired (IP address 88.151.243.8) what does your computer do with that information?

Answers

Answer 1

Answer:

|

V

Explanation:

we need the DNS so browsers can load Internet resources.

the top part is eu,so its based in europe \

4 serveers

1-2 seconds

sends message to website and waits for a response


Related Questions

The creation of the Internet and smartphones and the rise of e-mail and text messaging have led to ________ in the quantity of letters and other first-class mail since 2000.

Answers

Hello!

The answer would be: a decrease.

I hope that this helps you!

The creation of the Internet and smartphones and the rise of e-mail and text messaging have led to decreasing in the number of letters and other first-class mail since 2000.

What is an Email?

"Email is the type of communication that has to replace any other communication as electronic mail helps us to send photos and even videos to someone in a span of some seconds also we can do it from any place and from any devices that we have at the moment."

Since 2000, there has been a decline in the use of first-class mail due to the creation of Technology, phones, and the growth of e-mail, especially text messaging. This has helped the people to transverse with each other and this was a beneficial task that was to be taken advantage of in relation to speed and efficiency.

Learn more about Email, here:

https://brainly.com/question/15072408

#SPJ2

Write a sub-program to display the acceleration of car. The program should ask initial velocity, final velocity, and time taken by the car from user in main module and pass them as parameter list when a sub- program is called. ​

Answers

Explanation:

If your asking the program in modular programming of Q-Basic & in sub procedure then here it is.

I hope it will help you..

- Regards Rishab..

Find the manufacturers of at least 2 different computers (PCs or Laptops) with speeds of at least 3.0

Answers

Answer:

Charles's Babbage and ladyougusta ada lovence

greg is using the microsoft office application and unsure of how to use microsoft access who should help resolve the problem

Answers

The best person to help Greg in the use Microsoft access  is computer Trainer.

What is Microsoft Access used for?

The  use of Microsoft Access is known to be a form of  information management software that often aid a person in the saving of information and also for reference, reporting, etc.

The best person to help Greg in the use Microsoft access  is computer Trainer as he or she will teach Greg all that is to be known concerning the software.

See options below

Help Desk Representative

Computer Trainer

Manager

All of the above

Learn more about Microsoft from

https://brainly.com/question/1538272

When a transition is applied to a slide, how is it visible in slide sorter view

Answers

Answer:

a small icon

Explanation:

Go to the Slide Sorter View. If you've applied a transition effect to any of the slides then PowerPoint places a icon

Can someone tell me why this keeps exiting no matter what move and how I can fix it I honestly hate this class... you guys can have 100 points

#Andrew
#IT140
#ModuleSixMilestone
rooms = {'Manor Entrance': {'South': 'Foyer'},
'Foyer': {'North': 'Manor Entrance', 'West': 'Cellar'},
'Cellar': {'East': 'Foyer'},
'Exit': {'Exit': 'Exit'}} # The dictionary links a room to other rooms.

currentRoom = 'Manor Entrance' # Start the player in the Manor Entrance.


print('Move commands: North, South, East, West, Exit.')
print(' ------------------- ')
print('You are in the Manor Entrance.')
print('Enter your move or exit the game. -> ')
# User input a command to either move to another room or exit the game.
# If the player enters "exit", the game should move them to the "exit" room.
moveCommands = ['North', 'South, ''East', 'West', 'Exit']
command = input()

# Gameplay loop for moving to different rooms.

if currentRoom == rooms['Manor Entrance']:
if command == 'Exit': # If the player enters "exit", the game should move them to the "exit" room.
print('The virus will destroy the world now that you have quit.')
elif command == 'South':
print('You entered the Foyer!')
print(currentRoom[1])
elif command <= 'South':
print('Error. Try again!') # Print an error message if the player enters an invalid direction.

if currentRoom == rooms['Foyer']:
if command == 'Exit': # If the player enters "exit", the game should move them to the "exit" room.
print('The virus will destroy the world now that you have quit.')
elif command == 'West':
print('You entered the Cellar!')
print(currentRoom[2])
elif command <= 'West':
print('Error. Try again!') # Print an error message if the player enters an invalid direction.

if currentRoom == rooms['Cellar']:
print('You win! You have made it to the Cellar and destroyed the Nemesis!')
if command == 'Exit': # If the player enters "exit", the game should move them to the "exit" room.
print('You have eradicated the Virus.')

Answers

Answer:

Something like this?

The only requirement this doesn't exactly hit is moving the user to the "exit" room. It doesn't make use of that entry in the dictionary. However, this is the best way of doing it to avoid multiple "if" statements.

List the factors that affect the CPU performance?​

Answers

Multiple cores
Cache memory,
clock speed,
word length,
address bus width,
data bus width.



The computing field tends to be
some minority groups. Select 2 options.
discouraging towards
underrepresented by
full of
overrepresented by
satisfactory to

Answers

Answer:Below

Explanation:

The computing field tends to be discouraging towards and underrepresented by some minority groups.

The computing field is often discouraging towards and underrepresented by certain minority groups which means that individuals from these groups face challenges and obstacles in accessing and thriving in the field, while their presence and representation within the computing industry are significantly lower compared to other groups.

Efforts are needed to address these disparities and create a more inclusive and diverse computing community.

To learn more on Computing field click:

https://brainly.com/question/30168113

#SPJ2

Anyone knows how to answer this?

Answers

Answer:

2. The human walking that is turning bigger

3. The artist show repetition by making the same pattern in one image but it just getting closer and larger.

4. Maybe the artist could add more repetition details in the top image and make the bottom image more less confusing to understand.

What part of the microcomputer is considered the "brain" that follows the
instructions sent to it by software running on the computer?
O A. Monitor
O B. Central processor unit (CPU)
O C. Read-only memory (ROM)
O D. Random access memory (RAM)
SUBMIT

Answers

Answer:

The computer has an electronic brain called the Central Processing Unit/CPU, which is responsible for processing all data into information according to the instructions given to the computer.

Explanation:

Answer:

A

Explanation:

Given int[] array, return a new int[] that contains every other element of array. for example, if array = {0, 1, 2, 3, 4, 5}, return {0, 2, 4}.

Hint: How big does the new array have to be?

Tip: Write down an example array to help find the pattern between the index from the old array and the index in the new array.

Answers

This is how you do it in python:

Code:

def everyother(array):

   return array[::2]

example_array = [0, 1, 2, 3, 4, 5]

print(everyother(example_array))

Output:

[0, 2, 4]

Explenation:

The key to this problem is "array[::2]".

Array[start : stop : step]

Writing "array[::2]" is the same as writing:

Array[0 : -1 : 2] or Begin at 0, stop at the end and take every 2:nd value

aya what's the full form of JPEG ?​

Answers

Hi!jpeg stands for "Joint Photographic Experts Group."

Answer:

"Joint Photographic Experts Group",

Explanation:

JPG is a digital image format which contains compressed image data. With a 10:1 compression ratio JPG images are very compact. JPG format contains important image details. This format is the most popular image format for sharing photos and other images on the internet and between Mobile and PC users.

The stratis command that will display the block devices included in pool is ____________.

Answers

Answer:

The lsblk command

Explanation:

You'd run the lsblk command :]

Answer:

isblk command

Explanation:

why are microwave antennas placed on top

Answers

Microwave transmission towers can also be placed strategically on rooftops, hills and even mountains to make them as efficient as their counterparts but not as expensive. This is why it's no wonder why more companies are now replacing their old systems with microwave antennas.

Can someone give me their opinion on this discussion? Post your discussion please.

Answers

Hi!

I have chosen Scenarios A, B and C.

For Scenario A, it DOES make sense to use a template. This is because you will be mass sending thank you letters to your purchasers.

For Scenario B, it DOESN’T make sense to use a template. This is because the letter you are writing will probably just be a one-off letter, and you won’t need to write another one.

For Scenario C, it DOESN’T make sense to use a template. As mentioned above, the report will probably just be a one-off report, so it doesn’t make sense to use a template.

I hope that this helps you out!

List the factors that affect the CPU performance?​

Answers

Clock speed
Cache size
How many cores
Bandwidth
Heat
Bus width

Irina proofread her résumé by using the Spelling and Grammar Check In Microsoft Word. What did the word processorIncorrectly catch as an
error?
OA. capitalization of the state name
OB. grammatical errors
OC speling error on the word "organisation"
OD. spelling error on the name "Rowell Industries
OE duplicate words

Answers

If I've understood your question properly...

I'd go for:

OC spelling error on the word "organisation"

In the US they tend to spell it "organization", and in the UK they tend to spell it "organisation".

Can someone please help me! It’s due Thursday!

Answers

Answer:

if the input is zero the out put is 1

Explanation:

because if you think about it if the input was 1 the output would be zero

To add a block device to a VDO volume, use the following command.

Answers

Truee


:))))))))))
Glad i can help.




:jjjj

Explain three ways of selecting records to merge to a new document

Answers

Answer:

1.

Click the Mailings tab.

2.

Click the Start Mail Merge button.

3.

Select Step-by-Step Mail Merge Wizard

How do I find enchants faster on deepwoken?

Answers

Answer:

Rogue Constructs, Primadon, Fishing

Explanation:

Multiple methods may aid you in finding enchants faster. Notable ways include farming the Rogue Construct at Minityrsa which nets solid total loot (each item is rolled individually for enchants which is why larger chests usually means more enchants and why enchants can be in groups of more than 1 in chests) and farming Primadon. Fishing has also become a prominent method of enchant farming but is less reliable than the other two stated methods if you already have a strong PVE build. Happy enchant farming.

Answer:

Duke

Explanation:

Duke loves to drop enchants!! I use him to get my enchants, primadon sometimes. Rogue construct is ehhh but it works. But go gran sudaruska! Find it at crypt of unbroken!

why might you want to clear cookies from your computer from time to time?

Answers

Answer:

Although small, cookies do occupy space on your computer. If there are enough of them stored over a long period of time, they could slow down the speed of your computer and other devices. Flagged, suspicious cookies. If your antivirus software flags suspicious cookies, you should delete them

Ryan has inserted an image into a Word document, but the image is too large. There are sections of the image that he would like to eliminate to decrease the overall size of the image.

Answers

more Explanation                                                  

more explantion

briefly explain how ict has become a competitive to in supply chain management

Answers

Answer:

In contemporary times, supply chains can be sources of competitive advantage as efficient management of the supply chain leads to cost savings and synergies between the components of the supply chain leads to greater profitability for the firms.

Explanation:

convert the following binary to decimal number .
a). 101101 ​

Answers

first things first you have to do write it down which you did
step 2: then you multiply each digit of the binary number by the corresponding power of 2: 1x25 + 0x24 + 1x23 + 1x22 + 0x21 + 1x2 0
step 3: solve the powers: 1x32 + 0x16 + 1x8 + 1x4 + 0x2 + 1x1 = 32 + 0 + 8 + 4 + 0 + 1
step 4: add the numbers written above

32 + 0 + 8 + 4 + 0 + 1 = 45.
So, 45 is the decimal equivalent of the binary number 101101.

[tex](101101)_2\\\\=1\times 2^5 + 0 \times 2^4 + 1 \times 2^3 +1 \times 2^2 + 0 \times 2^1+1 \times 2^0\\\\=32+0+8+4+0+1\\\\=(45)_{10}[/tex]

Why Is Microsoft software so dominant in the business world?

Answers

Answer:

Their successes can largely be attributed to information cascades and network effects. Despite alternative solutions that many claim are better than Windows and Office, the Microsoft products maintain their overwhelming majority in the market. The direct-benefits achieved by using Microsoft software are easy to see.

Explanation:

[ASAP!] Question # 6 (Visual Python)
Multiple Choice
Which line of code moves the ball up?

1. myBall.pos.z = myBall.pos.z + 2
2. myBall.pos.x = myBall.pos.x + 1
3. myBall.pos = myBall.pos + 1
4. myBall.pos.y = myBall.pos.y + 2​

Answers

Hello!

The answer to your question is:
4. myBall.pos.y = myBall.pos.y + 2

Explanation, if you’d like one:
1. is incorrect as “z” isn’t a direction in which the ball can move.
2. is incorrect as “x” would be moving the ball right.
3. is incorrect as there is no direction defined.

I hope that this helps you out!

The line of code that moves the ball up is myBall.pos.y = myBall.pos.y + 2​. The correct option is 4.

What is code?

The term "code" typically refers to a set of instructions written in a programming language and executable by a computer or interpreter to perform a specific task or set of tasks.

Code can be used to create software, websites, games, scripts, and other things. Python, Java, C++, JavaScript, and Ruby are among the programming languages that can be used to create it.

The line of code myBall.pos.y = myBall.pos.y + 2 is assigning a new value to the y-coordinate of the position vector myBall.pos of the object named myBall.

The new value of the y-coordinate is calculated by taking the current value of myBall.pos.y and adding 2 to it. The result is then assigned back to myBall.pos.y, effectively updating the position of the myBall object.

Thus, the correct option is 4.

For more details regarding code, visit:

https://brainly.com/question/1603398

#SPJ5

Write a function that receives a one-dimensional array of integers and returns a Python tuple with two values - the minimum and maximum values of the input array. The content of the input array must not be changed. You may assume that the input array will contain only integers, and will have at least one element. You do not need to check for these conditions. For full credit, the function must be implemented with O(N) complexity.

Answers

The function that receives array of integers and returns  the minimum and maximum values as a tuple is as follows:

def min_max(array):

    x = min(array)

    y = max(array)

    return (x, y)

print(min_max([4, 6, 7, 8, 1, 8, 14]))

Code explanation

The code is written in python.

We defined a function named "min_max". The function accepts a parameter called array.The variable x is used to store the minimum value of the array.The y variable is used to store the maximum value of the array.Then, we return the minimum and maximum values as a tuple.Finally, we call the function with the required parameter.

learn more on python here: https://brainly.com/question/13199913

Presentations can be saved by selecting Save from the _____ menu.


File


Window


Tools


Format


Good luck :)

Answers

Answer:

Save from the file menu.

Answer:

for tho yeah bro

Explanation:

The project team is creating detailed documents to guide the team. What phase of the project life cycle are they in?

A. project planning

B. project initiation

C. project closure

D. project execution

Answers

Answer:

they are in project planning

Other Questions
please help I need to turn this in by 8 pm but it's not working it's almost 6 PLEASE HELP!! ;^;If you help me you will make my day UwUThanks!!!! An explosion is done on moon what effect will be its on earthA. We can hearB. We can seeC. We can hear and seeD. None Which description compares the vertical asymptote(s) of Function A and Function B correctly?Function A: f(x) = 1/x-1Function B: (see photo)A. Function A has a vertical asymptote at x = 1.Function B has a vertical asymptote at x = 0.B. Function A has a vertical asymptote at x = 1.Function B has a vertical asymptote at x=3.C. Function A has a vertical asymptote at x=1.Function B has a vertical asymptote at x=3.D. Both functions have the same vertical asymptote. How do we describe the links between producers and consumers?A. Food chainB. Distribution chainC. Plant productionD. Sun consumption Emily recently started a part time job. She is saving for a car, which she will need when she attends college next year. She plans to deposit $400 at the end of each month into an account that 3.6% per year, compounded monthly . How much will Emily have saved at the end of six months? pays Write a multiplication expression that can be used to solve 2/3a = 30. Which definition refers to electrical power?A. The rate at which an electric charge flows past a point in a circuitB. The energy of an electric charge minus the resistance in a circuitC. The energy of an electric charge due to its position in an electricfieldD. The rate at which electrical energy is transferred in a circuit 5 5/8 as an improper fraction One of the advantages corporations have that sole proprietorships do not is. Who from the United States did Hitler attract? A 2-column table with 6 rows. the first column is labeled week with entries 1, 2, 4, 6, 8, 10. the second column is labeled miles run with entries 5, 8, 13, 15, 19, 20. rita is starting a running program. the table shows the total number of miles she runs in different weeks. what is the equation of the line of best fit for the data? state each number to the thousandths place. y x What is the inverse of f(x)=3-x/7 The area of the rectangle below is greater than or equal to 18.13 square units. The inequality 3.7w 18.13 represents thissituation? M log_5(8) rewrite to log _?(?) how did the government impact native american lives From a classification standpoint, which of these organisms shares the LEAST similarities with humans? will give 100 pointsImagine you are a youth living in the transition zone. If you are female, you dress in the traditional colorful clothing worn by women (a blouse, a wraparound skirt, and a headdress made from a long winding cloth). If you are male, you wear a round, closely fitting hat and a shirt and slacks beneath a flowing robe. You come from a rural village in the state of Oyo and belong to a traditional African religion. Now imagine living out one of the following scenarios. Describe your thoughts in a story three or more paragraphs in length. You have recently left your rural home to live in the city. In your story, explain your day to day struggle to survive in the city; what you see, hear, smell; what type of work you do or will do; and your feelings about family and friends you left behind in the village.You are spending a year doing community service in a region of other than your own. In your story, include what you are doing for the community, with whom you are working, and what specific events have helped you develop a spirit of self- reliance. i need help its 7th grade area surface Animals that live in the desert question 15 options: hibernate in the winter are usually nocturnal usually have thin skin to absorb water includes camels. moose, and various reptiles