What fictional place would you most like to go to? Its your opinion!

Answers

Answer 1

Mount olympus

Explanation:

Because its the home of the greek gods and i feel like it would be cool to meet the gods


Related Questions

Question 4: Chess Game Knight's travails. Develop a data structure similar to a binary tree. Using a standard 8 X 8 chessboard, show the knight's movements in a game. As you may know, a knight's basic move in chess is two forward steps and one sidestep. Facing in any direction and given enough turns, it can move from any square on the board to any other square. If you want to know the simplest way your knight can move from one square (or node) to another in a two-dimensional setup, you will first have to build a function like the one below. knight plays ([0,0], [1,2]) == [[0,0],[1,2]] knight plays ([0,0], [3.3]) == [[0,0],[1,2), (3,3]] knight plays ((3,3), (0,0]) == [[3.3), [1,2], [0,0]] You are required to do the following:
1. Explain how you can ensure that any move do not go off the board.
2. Choosing a search algorithm for finding the shortest path for the knight's travails.
3. Defend your choice of an appropriate search algorithm to find the best possible move from the starting square to the ending square.
4. Creating a script for a board game and a knight.
5. Create a diagrammatical tree structure, to illustrate all possible moves of the knight as children in the tree structure.

In this task, you need to understand two algorithms which can be helpful, the Breadth-First Search which utilizes the Queue data structure to find the shortest path and the Depth-First Search which can traverse a Stack data structures.​

Answers

Answer:

Answer: 64

Explanation:

Which of the following applies to patents?
o They protect the rights of the intellectual property owner.
They represent free speech rights.
o They are pretty symbols.
o They make it OK to take other people's work.

Answers

They protect the rights of the property owner. I watch a lot of shark tank and I believe that’s right

ANSWER QUICKLY!!!

A designer plans an appropriate element mix for a website. What element does the picture illustrate?

Answers

Based on the image attached, A designer's element that the picture illustrate is a wireframe.

What is a wireframe in design?

A wireframe is  known to be a kind of two-dimensional depiction of a page's interface that is one that only focus on  the amount of space allocation and it is one that work in the prioritization of content and others.

Note that Based on the image attached, A designer's element that the picture illustrate is a wireframe.

Learn more about designer plans from

https://brainly.com/question/9778788

#SPJ1

Maria notices that visitors are landing on her site's home page, but they are not
navigating to any of the other pages. It's possible that having her navigation bar in a
non-standard location could be the cause of this.
Choose the answer.
True
False

Answers

Answer:

True

Explanation:

If your navigation bar is inaccessible, then visitors won't be able to navigate any further into your website.

What are ways to enter a formula in Excel? Check all that apply.What are ways to enter a formula in Excel? Check all that apply.
Answers:A,B,E,F
Click on the Function Library group and select a function from the drop-down menu.
Click on the Function Library group and Insert Function.
Click on the File tab in the ribbon.
Click on the Insert tab in the ribbon and then Equation.
Type = into any cell.
Click on the formula bar above the cells.

Answers

Answer:

Click on the Function Library group and Insert Function.

MARK ME BRAINLIEST IF I HELPED :>

(c) Explain why a combination of ethnography and
prototyping is useful
for the requirements elicitation process

Answers

Answer:

It helps analysts discover implicit system requirements that reflect the actual rather than the formal processes in which people are involved. The verifiability of the requirements should be assessed

It permits analysts to discover implicit system requirements that reflect the actual rather than the formal processes in which individuals are involved.

What is elicitation process?

Requirements elicitation exists as the set of activities where information exists given by stakeholders, users, and customers to be involved in the design of the initiative or the solution. Elicitation exists as a perpetual procedure during project development. It exists not as a stagnant, compartmentalized activity.

Ethnography exists as an observational method that can be utilized to understand social and organizational needs. It permits analysts to discover implicit system requirements that reflect the actual rather than the formal processes in which individuals are involved. … The verifiability of the conditions should be assessed.

Prototyping exists as an agile software development methodology. It has also been suggested as a technique for obtaining the software requirements from the stakeholders. … For this, the authors present a procedure to involve and they carry out elicitation sessions with two stakeholders who have distinct familiarity with the domain.

To learn more about elicitation refer to:

https://brainly.com/question/27605015

#SPJ2


Refer to the chose administrator is attempting to install a P6 static route couttert to read the rette tached to outer 22 ster the state
czamand is een connectivity to the nature is still falling. What emotas been made in the static route configuration

Answers

Answer:

i do not know I just need points

write a program using a for loop, to display number 20 to 10 in descending order

Answers

Answer:

public class MyProgram {

  public static void main(String[] args) {

     for (int i = 20; i >= 10; i--){

        System.out.println(i);

     }

  }

}

Explanation:

Since we are printing in descending order, we start with an initial value of 20, keep decrementing counter by 1 (the i-- part) until i reaches 20

Help me pleaseeeeeeeee

Answers

Answer:

2. I see that they uses space, and form.

3. Maybe it a death note that you could cut stuff with scissors and knife and you'll grasp if you got stab and it sharp.

4. To show that scissors could cut,stab and do many more other things.

Write a menu driven program in python to convert the given temperature from fahrenheit to celsius and vice versa depending upon user's choice.​

Answers

Answer:

See below

Explanation:

while(True):

   print("""\nProgram to convert temperatures

       

       Choose from:

       1. Fahrenheit to Celsius

       2. Celsius to Fahrenheit

       3. Exit program""")

   choice = int(input("\nEnter your choice: "))

   #print()

   if (choice == 1):

       print("Converting degrees Fahrenheight to degrees Celsius\n")

       F = float(input("Enter temperature in degrees Fahrenheit: "))

       C = (F - 32) * 5/9

       print()

       print(F,"degrees Fahrenheit = ", C, "degrees Celsius\n")

   elif (choice == 2):

       print("Converting degrees Celsius to degrees Fahrenheit\n")

       C = float(input("Enter temperature in degrees Celsius:"))

       F = (C* 9/5) + 32

       print()

       print(C,"degrees Celsius = ", F, "degrees Fahrenheit\n")

   elif (choice == 3):

       print("Exiting program")

       break

   else:

       print("Invalid Entry!. Please re-enter")

What was Ada Lovelace's contribution to computer science?

Answers

Answer:

She made the first computer.

Explanation:

Augusta Ada King, Countess of Lovelace (née Byron; 10 December 1815 – 27 November 1852) was an English mathematician and writer, chiefly known for her work on Charles Babbage 's proposed mechanical general-purpose computer, the Analytical Engine.

Answer:

She made the first ever computer.

Explanation:

The computer was called the Analytical Engine.

What will be printed to the screen when the following program is run?

Answers

Answer:

The answer is 20

Explanation:

Hope this helps!

Answer:

40

Explanation:

Indexes for arrays in Python start at 0, which means the first item of an array is at index 0, the second item is at index 1, the third item is at index 2, and the fourth item is at index 3.

Therefore when my_list[3] is put inside the print function, the fourth item, 40, is printed to the screen.

Hope this helps!

Do anyone know how to code like I need someone do a code for me?

Answers

Answer:

yeah i can depends on what exactly it is but probably

Which function allows you to display the name of the month?
>>>import time

>>>aTime = time.locatime()

>>>time.__________("%B",aTime)

Sample Output:
'March'

Answers

Answer:

strftime

Explanation:

>>> import time

>>> aTime = time.localtime()

>>> time.strftime("%B",aTime)

'May'

Which of the following variable names best follows all of the correct naming conventions?

Answers

Answer:

B

Explanation:

The first_number would be correct.

25 POINTS! HELP ME PLEASE THANK YOU
Type the correct answer in each box. Spell all words correctly.
What attributes of color does the Luminosity blend mode affect?
You can use the Luminosity blend mode to match the brightness of the original color to the brightness of the new color.-_____
and______
are unaffected.

Answers

Answer:

What attributes of color does the luminosity blend mode affect?

Whereas the Color mode blends the colors of a layer while ignoring lightness values, the Luminosity mode blends the lightness values while ignoring the color information!

Explanation:

CIS261: Python Programming I home
>
6.8: LAB: Miles to track laps

Answers

Python Programming Language is known to be a widely used general purpose high level language.

What is Computer Programming?

This is known to be the way or method that is used in writing of a set of instructions that helps to inform the computer on what to do.

Note that in CIS261: Object Oriented Computer Programming, the  computer program is made up of instructions that are said to be executing only one at a time.

Its basic  instruction types is known to composed of input, process, and output.

Learn more about Python Programming from

https://brainly.com/question/26497128

#SPJ1

does C supports STRINGS as a data type?

Answers

Answer:

C language does not support strings as a data type. A string is actually one-dimensional array of characters in C language. These are often used to create meaningful and readable programs.

Explanation:

What are the common operations performed on character strings?

Answers

Answer(:

•concatenation

• scanning

• substringing

• translation

• verification

if you want to remember means csstv;-)

explain how production values can reveal the quality and accuracy of mass media.

Answers

Production values can reveal the quality and accuracy of mass media as it shows the total or full cost spent in making a quality film.

What are production values in mass media?

Production value is known to be employed to know the full cost of making a film, and also the amount of money a film producer  spent on props and special effects.

Note that by knowing the above, one can say that a given film reveal the quality and accuracy of mass media.

Learn more about  production from

https://brainly.com/question/1501489

#SPJ1

Which method can be used for making a robot perform a different set of functions?

a. changing a robot's sensors
b. dismantling a robot
c. creating a new robot
d. rewriting software

Answers

Answer:

D. Because rewriting it can make it preform new functions.

Explanation:

can i get help with computer language​

Answers

Answer:

yes

Explanation:

because you can choose you own language

What is the output?
>>> answer = "five times"
>>> answer[2:7]

Answers

The output  is The string answer = "five times" All strings start at index 0 and end at the length of the string minus 1.

What is output?

Other answer are:

Then count rightly, index 2 is v and index 7 is  m answer[2:7] goes from v to m including v but not m, So, answer[2:7] = "ve ti".

Output is said to be the act of making something out of another thing.

Note that the output  is The string answer = "five times" All strings start at index 0 and end at the length of the string minus 1. Then count rightly, index 2 is v and index 7 is  m answer[2:7] goes from v to m including v but not m, So, answer[2:7] = "ve ti".

Learn more about output from

https://brainly.com/question/1786465

#SPJ1

Which page does a site map usually begin with?
A.shop Page B.Home page C.Index page D.About Page

Answers

Answer:

home page

Explanation:

a sitemap is a file where you provide information about the pages, videos, and other files on your site, and the relationships between them

You are approached by the representative of a company which sells equipment that
your company makes use of. During your conversation, the company representative
offers to provide one unit of the equipment for your individual home usage for free (i.e.,
as a gift) should you purchase 1000 units for company usage. What should you do?

Answers

Answer: Don't purchase.

Explanation:

I think that is the right thing to do. Don't get swayed by bribes or gifts because that is what a person with integrity does. Of course, if you ask your company if they're willing to buy, then buy it.

difference between hacking and cracking not hackers and crackers ​

Answers

Answer The basic difference is that a hacker uses their extensive knowledge of computer logic and code, while a cracker looks for back doors in programs, and exploits those back doors

Company ABC would like to select the topology that has the most reliability for data reaching its destination. Which topology should they choose?
bus
full mesh
partial mesh
ring

Answers

Full mesh because it is the answer and I been reading up in it


Which type of device would be used on a laptop to verify
the identity of a user

Answers

Answer:

A biometric identification device

Explanation:

As biometric identification devices, laptops commonly use a fingerprint scanner or, for facial recognition, a camera.

Create a future concept on how technology will affect communication and on how the way humans will interact with each other

Answers

Technology making communication increasingly direct and fast, which can impact the way work is carried out and career development.

How does technology affect the job market?

The speed with which communication processes are developed from technological tools, such as the internet, may increasingly impact commercial relations between different nations, in addition to generating more and more automation of tasks and reduction of the physical structures of companies.

Therefore, future projections for technology are related to innovation and profitable and competitive advantages, as in remote work, which is a trend that reduces costs and increases motivation.

Find out more about remot work here:

https://brainly.com/question/26512743

#SPJ1

Can someone help me with this!!!.

Answers

13. A fence
14. In a dictionary
15. Coin
Bonus: A coffin
Other Questions
I need a summary about the great gatsby chapter 3-4 write a inspring message for a future educator/teacher Students design an experiment to determine how much force is needed to move blocks of wood of different masses slowly across a lab table.Which procedure should students include in their design? A. conduct 5 trials, using a different scale to pull each block of wood B. conduct 5 trials, pulling a different side of each block each time C. conduct 5 trials, using a different table for each trial D. conduct 5 trials, pulling each block of wood in the same way for each trial Industrial robots have completely changed manufacturing because they: Multiple select question. improve productivity can work 24/7 with great precision increase the number of jobs for humans reduce costs Evaluate which factor is most likely to cause the concentration of greenhouse gases in the earth's atmosphere to increase?A.decreased number of decomposing plantsB.decreased number of volcanic eruptionsC.increased frequency of earthquakesD.increased human industrial activities help pls i need it know i will brainliest you thanks Reflect the figure over the line x = 0.The coordinate of J is ?The coordinate of K is ? An individual is making chicken-stuffed peppers for the gluten-intolerant and pita breads for the vegetarians in a cooking class. Each chicken-stuffed pepper takes twice as long to make as a pita bread. The individual needs to feed 3 gluten-intolerant and 8 vegetarian classmates. The individual has 7 hours, how much time can he spend on each chicken-stuffed pepper? 3Select the correct text in the passage.Which two sentences in the excerpt suggest that Policles loved quality music?The Contestby Arthur Conan Doyle (adapted excerpt)The blue-clad player struck several chords upon his lyre, and then burst suddenly out into the "Ode of Niobe," and Policles sat straight up on hisbench and gazed at the stage in amazement. The tune demanded a rapid transition from a low note to a high, and had been purposely chosenfor this reason. The low note was a grunting, a rumble, the deep discordant growling of an ill-conditioned dog. Then suddenly the singer threwup his face, straightened his figure, rose upon his tiptoes, and with wagging head and scarlet cheeks emitted a howl. All the while the lyretwanged and thrummed, sometimes in front of and sometimes behind the voice of the singer. But what amazed Policles most of all was theeffect of this performance upon the audience. Every Greek was a trained critic, and as unsparing in his hisses as he was lavish in his applause.Many a singer far better than this absurd fop had been driven from the platform, but now, as the man stopped and wiped the abundant sweatfrom his face, the whole assembly burst into a delirium of appreciation. The shepherd held his hands to his bursting head and felt that hisreason must be leaving him, for it was surely a dreadful musical nightmare, and he would wake soon and laugh at the remembrance. But no, thefigures were real, the faces were those of his neighbours, and the cheers which resounded in his ears were indeed from an audience which filledthe theatre of Olympia. The whole chorus was in full blast, the hummers humming, the shouters bellowing the tappers hard at work upon thebenches, while every now and then came a musical cyclone of "Incomparable! Divine!" from the trained phalanx who intoned their applause.their united voices sweeping over the tumult as the drone of the wind dominates the roar of the sea. It was madness-Insufferable madness! Ifthis were allowed to pass, there was an end of all musical justice in Greece. Policles' conscience would not permit him to be still. Standing uponhis bench with waving hands and up-raised voice, he protested with all the strength of his lungs against the mad judgment of the audience.ResetNext ANSWER QUICK PLSS NOT MUCH TIME LEFTA circle P is circumscribed about a regular hexagon ABCDEFSelect one:a. exteriorb. inscribedc. interiord. central Select the correct answer from each drop-down menu. complete the paragraph based on this food chain: polar bears feed on seals. so, polar bears and seals share a . climate change has caused ice caps to melt in colder regions where polar bears live. this change has made it harder for polar bears to successfully hunt seals. this situation will lead to . Fill in the blanks below with the appropriate vocabulary. 16. Mis amigos ________(give) muchas fiestas. 17. Me conoces? S, ______ conozco. 18. No quiero un suter de lana para el verano. Prefiero un suter de _______. 19. Yo _________ (know) el poema de memoria. 20. Tienes tus libros? S, _________ tengo. 21. Hay que esperar el tren en la sala de espera o en el _________. 22. Voy a viajar a Argentina para quedarme all. Voy a comprar un boleto ________. 23. Me gusta ver el paisaje cuando viajo en tren. Por eso, prefiero un asiento de ____. 24. Yo _____ escuchando msica en este momento. 25. Qu ests _________ doing)? please help quickly round to the nearest tenth! Choose the answer.Use the net to determine the total surface area. hurry ill give brainly In the equation x + 10x + 24 = (x + a)(x+b), bisan integer. Find algebraically all possible values ofb. Simplify the following expression. (3m-4)+8(3m-2)A. 8m/4 B. 9m/4 C. 3m+24/4 D. 3m+28/4 I need this answer fast please and thank you I need help on this please What are the possible allele combinations the following parent to give to their offspring?*Note: distribute YyRr