so i just went to play forge of empires and when i logged on to it all of my progress was gone and i was so far in to it

Answers

Answer 1

Answer:

That's tough...

Explanation:

Answer 2

Answer:

ok and?

Explanation:

This is not a question


Related Questions

Telecommunications, outsourcing, flextime, teamwork, and diversity are workplace trends adopted to
O True
O False

Answers

Answer:

False

Explanation:

Outsourcing and telecommuting are the trends related to presence of growing technology within the economy allowing various services to be outsourced to people who are more of an expert when it comes to handling those procedures.

How do you fix this!!!!

Answers

Answer:

ldek

Explanation:

Identify the characteristics of syntax errors. Choose all that apply.
programmer did not follow the program language conventions
may be highlighted while writing the program
can be caused by mistyping or misspelling while writing the program
does not cause an error message

Answers

Answer:

Explanation:

Identify the characteristics of syntax errors. Choose all that apply.

programmer did not follow the program language conventions

may be highlighted while writing the program

can be caused by mistyping or misspelling while writing the program

Answer:

Its A B C i got it right

Explanation:

Which one of the following is not a preset Auto Fill option?
A. dates
B. Months
C. Colors
D. Days

Answers

Answer:

Colors is not a preset Auto Fill option.

Answer:

C. Colors

Explanation:

Hope this helps :)

Consider the following code.

public void printNumbers(int x, int y) {
if (x < 5) {
System.out.println("x: " + x);
}
if (y > 5) {
System.out.println("y: " + y);
}
int a = (int)(Math.random() * 10);
int b = (int)(Math.random() * 10);
if (x != y) printNumbers(a, b);
}

Which of the following conditions will cause recursion to stop with certainty?
A. x < 5
B. x < 5 or y > 5
C. x != y
D. x == y


Consider the following code.

public static int recur3(int n) {
if (n == 0) return 0;
if (n == 1) return 1;
if (n == 2) return 2;
return recur3(n - 1) + recur3(n - 2) + recur3(n - 3);
}

What value would be returned if this method were called and passed a value of 5?
A. 3
B. 9
C. 11
D. 16

Which of the following methods correctly calculates the value of a number x raised to the power of n using recursion?
A.
public static int pow(int x, int n) {
if (x == 0) return 1;
return x * pow(x, n);
}
B.
public static int pow(int x, int n) {
if (x == 0) return 1;
return x * pow(x, n - 1);
}
C.
public static int pow(int x, int n) {
if (n == 0) return 1;
return x * pow(x, n);
}
D.
public static int pow(int x, int n) {
if (n == 0) return 1;
return x * pow(x, n - 1);
}

Which of the following methods correctly calculates and returns the sum of all the digits in an integer using recursion?
A.
public int addDigits(int a) {
if (a == 0) return 0;
return a % 10 + addDigits(a / 10);
}
B.
public int addDigits(int a) {
if (a == 0) return 0;
return a / 10 + addDigits(a % 10);
}
C.
public int addDigits(int a) {
return a % 10 + addDigits(a / 10);
}
D.
public int addDigits(int a) {
return a / 10 + addDigits(a % 10);}

The intent of the following method is to find and return the index of the first ‘x’ character in a string. If this character is not found, -1 is returned.

public int findX(String s) {
return findX(s, 0);
}

Which of the following methods would make the best recursive helper method for this task?
A.
private int findX(String s) {
if (index >= s.length()) return -1;
else if (s.charAt(index) == 'x') return index;
else return findX(s);
}
B.
private int findX(String s, int index) {
if (index >= s.length()) return -1;
else return s.charAt(index);
}
C.
private int findX(String s, int index) {
if (index >= s.length()) return -1;
else if (s.charAt(index) == 'x') return index;
else return findX(s, index);
}
D.
private int findX(String s, int index) {
if (index >= s.length()) return -1;
else if (s.charAt(index) == 'x') return index;
else return findX(s, index + 1);
}

Answers

i think the answer is C

Is this for a grade?

In database software, which option is the most appropriate menu choice or command to use if you want to change the format of the date
from January 1, 2020 to 01/01/2020?
Print Preview
Mail Merge
New Record
Add/Modify Fields

Answers

Answer:

I think it's d

Explanation:

             

Apache Subversion is one of the more popular _____.

centralized version control systems

source codes

repositories

distributed version control systems

Answers

Answer:

Centralized version control system

Explanation:

I did the assignment Edge2021

Answer:

Centralized version control systems

Explanation:

Took the test

Which avenue may utilize video streaming, audio narration, print designs, and animation?
The ______ may utilize video streaming, audio narration, print designs, and animation.

Answers

Answer: is their any options to answer your question

Explanation:

Answer:

The multimedia avenue may utilize video streaming, audio narration, print designs, and animation.

Explanation:

:P

Which of the following code snippets will output the following:

Hello
Hello
Hello



A:
print("Hello")
print("Hello")
print("Hello")

B:
for i in range(3):
print("Hello")

C:
print("Hello"*3)

D:
print("Hello\n"*3)

Answers

Answer:

A, B and D

Explanation:

Given

Options (a) to (d)

Required

Which outputs

Hello

Hello

Hello

(a) Each print statement prints "Hello" on separate lines.

Since there are three print statements, then (a) is true

(b) The loop iterates 3 times; and each iteration prints "Hello" on separate line,

Hence, (b) is also true

(c) The statement prints "Hello" 3 times, but all are on the same line

Hence, (c) is false

(d) The statement prints "Hello" 3 times; The '\n' ensures that each "Hello" string is printed on separate line.

Hence, (d) is true

Answer:

option A B D

Explanation:

hope helps you

have a nice day

Why is one climate different from another?

Answers

The climate of an area concerns the average weather conditions. Different parts of the Earth have different climates because of different amounts of heat received from the Sun. ... Some climates have different seasons and there may be little or much variation in precipitation and temperature.

Why is special code needed for <?

Answers

The guy above is right!!!

You are dropping your friend back home after a night at the movies. From the car, she turns on the indoor lights in her home using an app on her phone. How is your friend able to do this? a. She has a home network with smart home devices. b. She dialed into her home modem through the app and sent a command through the router. c. She has installed switches that interact with the installed app on her phone. d. She uses a hub at her home that she connects to through the app.

Answers

A. She has a home network with smart home devices

You are dropping your friend back home after a night at the movies. From the car, she turns on the indoor lights in her home using an app on her phone. Friend is able to do this by  doing home network with smart home devices. The correct option is a.

What are smart devices?

The devices which are operated using the analog signals which carry information.

You are dropping your friend back home after a night at the movies. From the car, she turns on the indoor lights in her home using an app on her phone.

Friend is able to do this by doing home network with smart home devices.

Thus, the correct option is a.

Learn more about smart devices.

https://brainly.com/question/17509298

#SPJ2

Select the factors that a network engineer is most likely to consider when designing a computer network. the ways in which employees share business documents the number of hours employees work the number of networked computers the type of work done at networked computers the number of employees using each computer the rate of pay for networked employees

Answers

Answer:

the number of employees using each computer

the number of networked computers

the type of work done at networked computers

the ways in which employees share business documents

Explanation:

these are all correct on odyssey :)

write HTML code to create a web page which will contain a title my favourite book as a centralised heading feluda somogro and body will contain the name of the author satyajit ray ​

Answers

Answer:

Satyajit Ray (1921–1992), a Bengali film director from India, is well known for his contributions to Bengali literature. He created two of the most famous characters in Feluda the sleuth, and Professor Shonku the scientist. He wrote several short novels and stories in addition to those based on these two characters. His fiction was targeted mainly at younger readers (mostly teenagers) , though it became popular among children and adults alike.

Ray during recording of his film Pather Panchali

Most of his novels and stories in Bengali have been published by Ananda Publishers, Kolkata; and most of his screenplays have been published in Bengali in the literary journal Ekshan, edited by his close friend Nirmalya Acharya. During the mid-1990s, Ray's film essays and an anthology of short stories were also published in the West. Many of the stories have been translated into English and published.

Need answer ASAP

Select the correct answer.
What is the role of a software analyst?
OA.
to prepare project plan
OB.
to provide customer support to stakeholder
O C.
to code and test
O D.
to perform audits

Answers

Answer:

c is the correct awnser ( to code and test )

Answer:

CCCCCCCCCCCCCCCCCCCCC

technically a coding question utilizing python how would one calculate a square root

Answers

Answer:

import math

math.sqrt( x )

Explanation:

The basic code that can be written to calculate the square root of a number is as follows

import math

math.sqrt( x )

What would you classify anti-malware software as?


SaaS

enterprising

cloud

security

Answers

Answer:

enterpriseing is the answer

select the correct answer
What is SQL used for?
A. to write machine language code
B. to design webpages
C. to extract information from databases
D. to convert machine language into a high-level language

Answers

The SQL used to extract information from databases. (Choice: C)

Functions of SQL language

In this question we must understand about computer languages to answer correctly.

SQL stands for Structured Query Language and is a specific domain language intended for the management and retrieve of relational databases. Thus, SQL is used to extract information from databases.

Thus, SQL is used to extract information from databases. (Choice: C) [tex]\blacksquare[/tex]

To learn more on databases, we kindly invite to check this verified question: https://brainly.com/question/6447559

Answer:

The correct answer is C. To extract information from databases.

Explanation:

I got it right on Edmentum.

the_____ tool is used to change the select text to capital letters or small letters (change case /grow font)​

Answers

Answer:

on word you can use shortcut "Shift+f3" to change uppercase lowercase and title case if that is what you are asking for

windows operating system memory management??​

Answers

Memory management is the functionality of an operating system which handles or manages primary memory and moves processes back and forth between main memory and disk during execution. Memory management keeps track of each and every memory location, regardless of either it is allocated to some process or it is free.Answer:

Marking brainlyest look at the picture

Answers

I’m pretty sure the answer is C.

Anyone else like hunter x hunter?
lets talk abt it uwu

good day :)

Answers

Answer:

mid

Explanation:

The correct answer is mid please give me brainlest let me know if it’s correct or not okay thanks bye

who ever can get me the lyrics to raining tacos will get 46 points + the crown! i want the song!

Answers

Explanation:

Lyrics

It's raining tacos

From out of the sky

Tacos

No need to ask why

Just open your mouth and close your eyes

It's raining tacos

It's raining tacos

Out in the street

Tacos

All you can eat

Lettuce and shells

Cheese and meat

It's raining tacos

Yum, yum, yum, yum, yumidy yum

It's like a dream

Yum, yum, yum, yum, yumidy yum

Bring your sour cream

Shell

Meat

Lettuce

Cheese

Shell

Meat

Lettuce

Cheese

Shell

Meat

Cheese, cheese, cheese, cheese, cheese

It's raining tacos

Raining tacos

Raining tacos

It's raining tacos

It's raining tacos

Raining tacos

Raining tacos

Shells, meat, lettuce, cheese

It's raining tacos

It's raining tacos

Answer:

Explanation:

is that even a real song??

btw i answered so the other guy can get brainlest annnnnnd bc i want the point LOL

Need answer ASAP!!! No links I’ll report

Select the correct answer.
Which statement is true for SQC?

A.SQC has organization-wide application.

B.The scope of SQC covers a specific product.

C.The scope of SQC covers all products produced by a process.

D.SQC involves activities to evaluate software engineering processes.

Answers

Answer:

Try C and hope for the Best

Explanation:

Answer:

The scope of SQC covers a specific product.

need help on question 5! no links pls

Answers

Answer: less than 50%, it’s about 49%

Explanation:

Answer:

59.5

so I would say the 3 third option

You are adding a new rack to your data center, which will house two new blade servers and a new switch. The new servers will be used for file storage and a database server. The only space you have available in the data center is on the opposite side of the room from your existing rack, which already houses several servers, a switch, and a router. You plan to configure a trunk port on each switch and connect them with a cross-over UTP plenum cable that will run through the suspended tile ceiling of the data center. To provide power for the new devices, you had an electrician install several new 20-amp wall outlets near the new rack. Each device in the rack will be plugged directly into one of these new wall outlets. What is wrong with this configuration

Answers

Answer: • You should implement a UPS between the wall outlet and the network devices.

• You should implement redundant power supplies for the network devices.

Explanation:

Based in the information given in the question, the options that explain things wrong in the configuration is that:

• You should implement a UPS between the wall outlet and the network devices.

• You should implement redundant power supplies for the network devices.

Type the correct answer in the box. Spell all words correctly.

The students of a college have to create their assignment reports using a word processing program. Some of the questions in their assignment involve comparison between different items. Which function of a word processing program will be the most useful to present this information?
The function of a word processing program will be the most useful for comparison.

Answers

Answer:

The Insert Table function

Explanation:

Presenting information that involves the comparison between different (two or more) items where the given details on the items are available as text will be aided when the similarities and differences of the information are placed side by side, such as in tabular form categorically arranged with rows listing items under comparison

The function in a word processing program such as MS Word that would be most useful, therefore, is the Insert Table function

The Insert Table function is located under the Insert menu on the Menu bar, where the table, in the drop down list under the Table button

When the Table drop-down button is clicked, it reveals a table that can be adjusted to different number of columns and rows by moving the mouse.

After the table with the desired number of columns and rows is inserted, the comparison between specific characteristics of the items in the assignment report can then be placed in different columns on the same row in the created table.

Answer:

The insert table function of a word processing program will be the most useful for comparison.

Explanation:

What is the web page path on the web server for the URL:
http://www.mydomain.com/main/index.html?
O http://
O www.mydomain
O main/index.html
O index.html

Answers

Answer:

C: main/index.html

Explanation:

Determina la cilindrada total Vt en un motor de 4 cilindres de 83,6 mm de diàmetre per 91 mm de cursa.

Answers

Answer:

La cilindrada total del motor es de 1997,025 centímetros cúbicos.

Explanation:

Para determinar la cilindrada total Vt en un motor de 4 cilindros de 83,6 mm de diámetro por 91 mm de carrera se debe realizar el siguiente cálculo, sabiendo que para calcular la cilindrada de un motor se debe utilizar la fórmula ((Pi x Diámetro^2)/4) x Carrera x Número de cilindros = X:

((3.14 x 83.6^2)/4) x 91 x 4 = X

((3.14 x 6,988.96)/4) x 364 = X

(21,945.3344 / 4) x 364 = X

5,486.3336 x 364 = X

1,997,025.4304 = X

1 milímetro cúbico = 0.001 centímetro cúbico

1,997,025.4304 milímetros cúbicos = 1997.0254304000005 centímetros cúbicos

Por lo tanto, la cilindrada total del motor es de 1997,025 centímetros cúbicos.

You will then write a one- to two-paragraph summary describing your chosen type of biotechnology. You will then need to argue for either the benefits or the risks of your chosen type. Your arguments should present your position, and then give the evidence that led you to this position. Be sure to include the following in your argument:
a description of your chosen type of biotechnology (genetic engineering, cloning, or artificial section)
one benefit or one risk for the individual (based on whether you are for or against it)
one benefit or one risk for society (based on whether you are for or against it)
one benefit or one risk for the environment (based on whether you are for or against it)
A picture (you may hand draw, take photos in nature, or use stock images)

Answers

Answer:

Anti-biotics are a biotechnology I've chosen, its a benefit because it kills off bacteria and help improves your system. It kills and prevents the growth of bacteria and infections. A benefit you can get from antibiotics is protects your health and prevents acne. This is due to the bacteria it attacks when entering your body. Think of it as pouring peroxide on a cut. A benefit to society is it protects your health when coming close to a sick person and lowers the chance of you catching something. A risk of taking antibiotics is having a weaker immune system due to your body relying on antibiotics, it can also cause gonorrhea.

Explanation:

good luck! :)

Answer:

I Chose Genetic Engineering. Genetic Engineering Can be Used To Make Greater food production volume and increased vitamins Which Feeds More People In This growing population And That Helps society And A Individual. Genetic Engineering Genetically engineered bacteria and plants are altered to get rid of toxic waste Which Can Help The Environment.

This is what i submitted for a grade i actually got an 85 for it which is a B good luck!

Other Questions
50 POINTS! Solve for the values of x and y Choose from these ecosystems:PrairiesForestsBeachesDunesLakesPondsRiversStreamsWetlandsCoral ReefsEstuariesSalt MarshesMangrove SwampsFlorida EcosystemsOnce given your Florida ecosystem, you will research and present the topics listed below about your ecosystem. Please include visuals.Briefly tell us where in Florida your ecosystem is often found and general characteristics---average amount of water---general physical characteristics---unique characteristics of your ecosystemList and describe 3 common producers found in your ecosystem---include information such as what type of species prey on these producers, what the producer needs in order to survive and thrive, etc.)List and describe 6 common consumers found in your ecosystem---In your descriptions please include what the animals are preying on, where they build shelters, what their niche is, etc.)Try to find at least one decomposer and/or scavenger in your ecosystem--- What is it eating/decomposing? How is this helpful to the ecosystem?List and describe one example of mutualism, one example of commensalism and one example of parasitism in your ecosystem---Name the species involved and explain the relationshipsList any endangered, threatened or extinct species from that ecosystemExplain 1 food chain in your ecosystemExplain competition between species in your ecosystemplease help fast am giving 20 points and brainiest ok I posted the same question 2 time please stop whoever is stealing the points please stop am running out of points What feature means the Earth wire will take current away from the case reducing the chance of accidental electrocution?A:A high resistanceB:A fuse connected to itC:A very low resistanceD:Stops the flow of the current Which planets are considerably larger 2.In what ways has the Ganges River become polluted? A cereal box is 6.2 inches high, 8 inches long, and 2.5 inches wide. What is the volumeof the cereal box rounded to the nearest tenth.49.641.3124248 What are four examples of learned behaviors in animals? Conjugate the following verbs. Be sure to include all six conjugations in the correct order.1. abrir4. caminar7. asistirIrregular verb:2. romper5. bailar8. vivir10. ser3. comprender6. trabajar9. escribir is this sentence combined correctly someone plsss helpp plzz < Which best describes onomatopoela? What is the difference between its andit's? Explain. Then create one sentence for each,exhibiting an example. What was the Oka Crisis? What was one important development that led to? Explain why this was an important development Which form of evidence for evolution was not available to Darwin in 1858?A. The fossil recordB. Comparative anatomyOC. DNA evidenceD. Artificial selection Isabel notices that her father ais getting angry more often bis showing more kindness towards Lito cis acting more caring towards MamiIN THE BOOK REFUGEE A large home improvement store is considering expanding its selection of moving products, such as cardboard boxes and packing tape. The store constructs a 90% confidence interval to estimate the proportion of all customers who have moved houses at least once in the last five years. In the random sample of 620 customers, 201 (32.4%) replied that they had moved at least once in the last five years. The sample yielded the 90% confidence interval (0.293, 0.355) for the proportion of all customers who have moved in the past five years. What is the correct interpretation of this confidence interval Which type of pronoun is used in the following sentence?I think I will buy this sweater.A. demonstrativeB. indefiniteC. interrogativeD. relative 7 points each answer and brainliestWhich of these would most likely happen if Earth stops revolving around the sun but continues rotating on its axis?A. only summers in the northern hemisphereB. only summers in the southern hemisphereC. no seasons in any part of EarthD. two seasons in every part of Earth In 1754 B.C., in ancient Babylon, a king created a collection of laws known as the ... What is the voltage of a galvanic cell made with zinc (Zn) and aluminum (AI)? A. 0.92 V B. -0.92 V c. -2.44 V D. 2.44 V A chef was preparing for an event. The event was scheduled to have 100 guests in attendance. The chef had a rate of preparing meals for 10 guests every 1 and hrs. At this rate, how many hrs. would it take the chef to prepare the meals for the 100 guests that were scheduled to be at the event?