ayo which one is better genshin impact or fortnite, i personally prefer genshin impact since it's not boring and it has so many other things you could do when you're not doing a story quest or daily commissions

Answers

Answer 1

Answer:

Genshin Impact and you can fight me on it.

Explanation:

The game has way more to explore and offer with different fighting styles which include Magic and Swords fighting. It also has more story and I appreciate that!  

The side quests to get tedious though so the final rating  is 8.79//10.00

Answer 2

Answer:

genshin

Explanation:


Related Questions

how do you do the ask tutor thing on the computer?

Answers

Answer:

what do you mean

Explanation:

Can someone please help me with this assignment on Edhesive. I just need the storyboard and code. thank you.

Answers

Answer:

i need points im so sorry

Explanation:

definition of data redundancy​

Answers

Answer:

Data redundancy occurs when the same piece of data exists in multiple places, whereas data inconsistency is when the same data exists in different formats in multiple tables. Unfortunately, data redundancy can cause data inconsistency, which can provide a company with unreliable and/or meaningless information

What happens if an email server cannot find a matching username or the mailbox is full

Answers

Answer:

if the email server cannot find a matching username, you need to verify your email. I think at least.

Explanation:

Answer:

it do not send your e-mail

Choose all items that are true about the two example of HTML shown on the right.
A. Example 1 will display differently than example 2 in a web browser.
B. They are styled differently, but will look the same in a web browser.
C. Example 2 is easier to analyze and repair.
D. The styling in example 2 is required by modern web browsers.

Answers

Answer:

“They are styled differently, but will look the same in a web browser” & “The styling in example 2 is required by modern web browsers”.

Explanation:

Answer:

B and C

Explanation:

Write a program code to accept the names of 3 users and generate a user name as shown in the example. Accept the name of 3 user in the format – Firstname Last name (eg. Anan Gupta). Select the first 3 characters from the first name, add # and then add last 3 characters of the last name. Display the newly generated user name along with the names that were input.

Answers

Answer:

Explanation:

The following code is written in Python and is a function that loops three times asking for the last name and first name. Then it uses this information to create a username. Finally, each of the names and usernames is printed on the screen.

def userName():

   for x in range(3):

       last_name = input("What is your last name: ")

       first_name = input("What is your first name: ")

       username = first_name[:3] + "#" + last_name[-3:]

       print(last_name + ", " + first_name)

       print(username)

what is the importance of knowing and following a step /steps of the personal computer disassembly

Answers

So that in case of emergency caomeone spills food or liquid you know what precautions to take

Answer:

emergency pils at a doctor

Part B
There are many different ways that a user could tell us that he or she would like to add two numbers in our calculator program. The user could type “add”, “Add”, “ADD”, or “+”, to name a few possibilities. Of course, as humans, we know exactly what is meant, even if the word is capitalized. But the Python Interpreter can’t tell that “add” is the same as “Add”.

We can use a list to make our program a bit more robust. We can also use the IN operator to check for certain values in that list. Take a look at this if statement’s opening line:

if operation in [“add”, “Add”, “ADD”, “+”]:
Make those changes in your program and verify that it works.
Consider all of the possible words the user might enter to subtract, multiply, or divide.
Rewrite the first lines of each of your if statements to use lists.
Thoroughly test your new program, trying out each of the four operations.
Share the link to your Python code in REPL.it with your teacher by clicking on the share button and copying the link.

Answers

Answer:

The Python programming language is a great tool to use when working with numbers and evaluating mathematical expressions. This quality can be utilized to make useful programs.

This tutorial presents a learning exercise to help you make a simple command-line calculator program in Python 3. While we’ll go through one possibile way to make this program, there are many opportunities to improve the code and create a more robust calculator.

We’ll be using math operators, variables, conditional statements, functions, and handle user input to make our calculator.

Prerequisites

For this tutorial, you should have Python 3 installed on your local computer and have a programming environment set up on the machine. If you need to either install Python or set up the environment, you can do so by following the appropriate guide for your operating system.

Step 1 — Prompt users for input

Calculators work best when a human provides equations for the computer to solve. We’ll start writing our program at the point where the human enters the numbers that they would like the computer to work with.

To do this, we’ll use Python’s built-in input() function that accepts user-generated input from the keyboard. Inside of the parentheses of the input() function we can pass a string to prompt the user. We’ll assign the user’s input to a variable.

For this program, we would like the user to input two numbers, so let’s have the program prompt for two numbers. When asking for input, we should include a space at the end of our string so that there is a space between the user’s input and the prompting string.

number_1 = input('Enter your first number: ')

number_2 = input('Enter your second number: ')

After writing our two lines, we should save the program before we run it. We can call this program calculator.py and in a terminal window, we can run the program in our programming environment by using the command python calculator.py. You should be able to type into the terminal window in response to each prompt.

Output

Enter your first number: 5

Enter your second number: 7

If you run this program a few times and vary your input, you’ll notice that you can enter whatever you want when prompted, including words, symbols, whitespace, or just the enter key. This is because input() takes data in as strings and doesn’t know that we are looking for a number.

Explanation:

Hope This helps with your coding

( If it doesn't then sorry)

Read the code snippet below and determine which markup language it is:



Sound Card
Creative Labs
Sound Blaster Live
80.00



The code is an example of the (Blank) markup language.

Answers

Answer:

Sound Card

Explanation:

Someone please tell me what lambda does! in python!! I need help

Answers

Answer:Lambda Technologies is the he is the group name encompassing a Premier materials research laboratory with an engineering and production enterprise dedicated to the development and optimization of of surface treatments our company has been selling materials for over four decades with over 150 years of combined experience in more than 20,000 research programs we are proud of our corporate legacy in record or around standing performance in meeting or customers needs room training all excellence groundbreaking innovation and committed hard-working employees we are able to provide more than just data we provide complete service enhancement solutions are resources that can include all of our technical papers he studies defraction notes and downloads we are a well known source of research in education materials on the understanding measurement and controls of residual stress

Explanation:

If Tamya makes $1000.00 gross monthly income and her total payroll deductions are $294.00, what is her net income?

Answers

Answer:

$751

Explanation:

From the question we have the following information;

Gross income = $1000.00

Deductions =   $294.00

Now we know that;

Net income = Gross income - Deductions

Therefore;

Net income = $1000.00 -  $294.00

Net income = $751

Write a program to convert centigrade to Kelvin. It should display value in centigrade and then the value in Kelvin just as you displayed squares in the previous question. The range to be followed for this conversion is from 50-100 degree celsius.

So, it should look like this:
1. Centrigrade: 50 --> Kelvin: 323.15
2. Centrigrade: 51 --> Kelvin: 324.15
3. Centrigrade: 52 --> Kelvin: 325.15
etc.

Answers

Answer:

for degree in range(50, 101):

   kelvin = degree + 273.15

   print("Centrigrade: {} --> Kelvin: {}".format(degree, kelvin))

Explanation:

*The code is in Python.

Create a for loop that iterates from 50 to 100 (Note that the starting value is included, but the ending value is not included in the range method. That is why you need to write range(50, 101) to iterate from 50 to 100)

Convert the centigrade to kelvin using formula (Note that the degree variable represents the each centigrade degree from 50 to 100 and you need to add 273.15 to convert it to Kelvin)

Print the result as in requested format

1 Sales tax
5.00%
Use the image to help you answer the question.
Which formula will tell you the total "Before tax"
price using cell references?

A. =3+2+50
B. =B8
C. =B4+B5+B6
D. =B4*B5*B6

Answers

Answer:

Future value (FV) tells you the value in the future of money deposited in a bank account ... We can use Excel to make a table of how the future value grows with the ... 1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. A. B. C. D. E. F. Interest. 6% ... To answer the question, we compute the IRR of the investment and compare it.

Explanation:

Answer:

C. = B4+B5+B6

Explanation:

Edge 2020

if you hard working right now go to this EASY question


#BRAINLY and I will give you brainlist something I forgot what's it called for your hard work

Answers

Ok, where is the question so I can try my best?
Whats the question??? Lol

Choose the best option to answer each question on design or development.

Answers

i am sorry. I cannot see the options...

Answer:

design

requirements

code

(in that order)

Explanation:

it was right on edge

Help ASAP this assignment is due today!!!!

Answers

You want someone to do your assignment???

You have a database with three tables: one each for products, suppliers, and distributors. You need to locate the product ID number for hammers and find out who supplies them. Which database component would perform this task?

A. Form
B. Table
C. Report
D. Query

Answers

Answer:

I would say A... But that's just me

Explanation:

Hopefully this helps you :))

Answer:

The answer is C: Query

Explanation: I just did it in Edge 2021. Trust me its right! I hope this helps! :)

I really need help with this question, I can’t fail this please :) tysm

Answers

Answer:

i think its the third one, i hope this helps

Explanation:

Boolean Operators help filter information when completing a ________ ________

A. web search
B. column making​

Answers

The answer would be A: Web Search :)

PLEASE ANSWER ASAP!!!

Name the error that can happen as a result of adding binary numbers.

Answers

Answer:

Sometimes, when adding two binary numbers we can end up with an extra digit that doesn't fit. This is called an overflow error. This sum is fine as the original numbers have two digits, and the result of the sum also has two digits.

Explanation:

Can someone tell me 5 facts about Registers and RAM, please?

Answers

[tex]\int\limits^a_b {x} \, dx \left \{ {{y=2} \atop {x=2}} \right. \lim_{n \to \infty} a_n \neq \neq \geq[/tex]Answer:

A register is a temporary storage area built into a CPU. ... The instruction register fetches instructions from the program counter (PC) and holds each instruction as it is executed by the processor. The memory registers are used to pass data from memory to the processor.

PLS MARK BRAINLIEST!!!

PLEASE

:

In many supermarkets customers can pay for their shopping using credit cards. (a) Name two items of information stored on the magnetic stripe on these cards. (b) State two ways that the supermarket computer would check the credit card.

Answers

Answer:

Explanation:

Two items on the magnetic strip are, Credit Card info and Balance

Two ways supermarket may check are the PIN pad you are using to pay or their reciept system.

how many people in the world

Answers

Answer:

Around seven billion people

Why is it a good practice to use functions in programming? Select the best answer.

A.It is faster to run the code using functions.

B.Functions allow us to reuse common code.

C.All of these are correct.

D.It is easier to debug the code using functions.

Answers

Answer:

C. All of these are correct answer from the options for the question that u have given...

The good practice to use functions in programming is all of these are correct. The correct option is C.

What are functions in programming?

The repetitious codes are removed by breaking a program down into functions, which not only reduces the size of the program but also improves its effectiveness. If there were repetitive codes, we would need to alter the program from several locations rather than just one.

As a result, organizing programs into functions aid in good administration and shortens programs by removing repeated code. A functional programming language is a particular kind of language that allows for the creation and application of pure mathematical functions, along with the use of conditional expressions and recursion to carry out various computations.

Therefore, the correct option is C. All of these are correct.

To learn more about functions in programming, refer to the link:

https://brainly.com/question/24297344

#SPJ6

Identify one audience for The Sun Website

Answers

Answer:

69

Explanation:

What is web
searching engine ?​

Answers

A Web search engine is a specialized computer server that searches for information on the Web. The search results of a user query are often returned as a list. The hits may consist of web pages, images, and other types of files.

True or False? Security code is almost always open source!
True
False

Answers

Answer:

its true

Step-by-step explanation:

Security code is almost always open source is a false statement. Check more about  Security code below.

What is security code?

The  Security code  is known to be the number that is known to be found in the front or back of any credit cards. It is made just  for security use.

Conclusively,  Security code is almost always open source as one cannot get it except one is told about it. Therefore, it is not an open source.

Learn more about  Security code from

https://brainly.com/question/26260220

True or false: Machine learning lets computers
learn how to do things they weren't
specifically programmed to do.

Answers

Answer:

True

Explanation:

Why Should You Love Your Job?

Answers

Answer:

I think you should love your job because if you get good grades in high school and collage you get to pick your job and it will be amazing for you in life!

Hope that helped :)

Which of the following is NOT an acceptable way to create a color?


A) O "cyan"
B) O "#ff2341"
C) blue
D) "RGB (0, 15, 234)"

Answers

The option that is not an acceptable way to create a color is blue.

How can I create a color?

There are a lot of ways to create  some unique color  such as the additions of  colors together.  An example is the addition of purple, orange, and green together.

Note that blue on its own cannot create another color and as such, The option that is not an acceptable way to create a color is blue.

Learn more about color from

https://brainly.com/question/4431200

#SPJ2

Other Questions
hi! whats the area and formula of this problem? cual es el origen de los mapas conceptuales 1. The wolves that followed Shere Khan ate2. Bagheera explains that he offered an item in exchange for Mowgli. The item he exchanged forMowgli was a3. When the characters in the text speak about the red flower, they are not speaking about a realflower. They are actually speaking about4. At one point in the text, Bagheera tells Mowgli that he now knows Mowgli is a man. Bagheeraknows Mowgli is a man because he sees5. Before leaving the jungle, Mowgli tells Bagheera that he needs to say goodbye to someone. Thecharacter he wants to tell goodbye is 5. Do you believe that social security is a beneficial program? Why or why not? The m Sear Seart Sease Nike sineios In the 1800s, the United States was still a very young nation, trying to solidify its identity. The Industrial Revolution began in Great Britain, a fast development of society following the introduction of machines. The United States was slower than Great Britain to fully embrace the changes. Yet key technological developments caused a rapid growth in American urban areas. Better farming methods and tools in the 1800s increased food production. Americans were able to grow enough food for their families as well as to sell. The abundance caused food prices to fall. The expansion of cotton and the growth of textile factories in northern states helped produce the first wave of American industry. More people turned to work in northern factories as a way to support their families. Thousands of immigrants to the United States also settled in or near port cities, looking for work. Even today, the need for work is a common reason people move to urban areas. As a result, cities grew in numbers of people and physical space. As more people and businesses moved in, they needed buildings for living and working. They needed ways to move around the city. We call this process urbanization. In 1820, the United States had only a few cities of 10,000 residents or more. About seven percent of U.S. residents lived in urban areas. The number of cities with more than 10,000 people grew quickly over the next 40 years, especially in the Northeast and Midwest. By 1860, about 20 percent lived in cities. Philadelphia and New York City were the most populated cities in 1860 and would soon reach one million residents. The urbanization of the United States quickened due to technology improvements. Without innovations in food production, the factories could not have grown so quickly. The trend quickened after 1860 and continued throughout the 21st century as well. By 2007, more Americans lived in or near cities than they did in rural areas. Select a sentence from the body of this article that can be removed without affecting the author's explanation. Place the text in quotes and explain why it is an unnecessary detail. which of the following European countries has a marine west coast climate how does spirogyra survive in a dry pond? Sarah says that 19 divided by. 9 equals 9 divided by 4 because both are 2r1 show here mistake using decimal division. How do I find out how shes wrong? Ravonette Corporation issued 550 shares of $5 par value common stock and 300 shares of $15 par value preferred stock for a lump sum of $18,000. The common stock has a market price of $25 per share, and the preferred stock has a market price of $70 per share. Determine the amount the issuance that should go to each stock (common and preferred). Put into order the Levels of Organization from U2 M2 L11. Cells2. Organisms (humans/plants)3. Tissues4. Organ System5. Organs Mes amis sont les ___________________, ils achtent une casquette de foot pour moi.fill in the blank with the word that best fits, but to me all the answers I've found sound wrong Find the slope of the line given the two points on theline are (2, -8) and (-2, 1). please help me is importe ecris le nom des fetes qui manquent pour completer la liste des jeurs feries en france as a rollercoaster goes downhiQuestion 2 options:kinetic energy is converted into potential energypotential energy is converted into kinetic energyelectrical energy is converted into potential energypotential energy is converted into electrical energyll Can someone help me Simplify the expression How did their father's death affect the Grimm family?1. The brothers became interested in fairy tales.2. The family was reduced to near poverty.3. O The brothers decided to become lawyers.4. Jakob never married.