how do you activate windows on a lenovo computer?

Answers

Answer 1

Answer:

Go to settings

Explanation:

Go to settings, buy an activation key, and activate Windows


Related Questions

A beam of light travels in air and then passes through a piece of glass at an angle of 45 degrees to the normal. As the light passes from the air into the piece of glass, the light ray is bent, what is the angle of refraction measured from the normal?

Answers

Answer:

The angle of refraction measured from the normal is approximately 28.13°

Explanation:

The angle of refraction is the angle made by the refracted ray and the normal line drawn at the point where the ray passes through the interface of the two mediums

According to Snell's law, we have;

[tex]_1 n_2 = \dfrac{n_1}{n_2} = \dfrac{sin \, \theta _2}{sin \, \theta _1}[/tex]

n₁·sin (θ₁) = n₂·sin(θ₂)

Where;

₁n₂ = The refractive index of air to glass = 1.5

n₁ = The refractive index of air = 1

n₂ = The refractive index of glass ≈ 1.5

θ₁ = The angle of incidence = 45°

θ₂ = The angle of refraction measured from the normal

Therefore, we have;

1/1.5 = sin(θ₂)/sin(45°)

sin(θ₂) = sin(45°)/1.5 = (√2)/2/(3/2) = (√2)/3

∴ θ₂ = arcsin((√2)/3) ≈ 28.13°

The angle of refraction measured from the normal = θ₂ ≈ 28.13°.

Anyone know answer to this?

Answers

Answer:

the original poster that it might have been clearer and, perhaps, preferable to choose a description with less potential to lead to confusion if a student were coming from (or going to), for instance, the python, php or java track.

Explanation:

Can someone help me figure out why my else statment is not working?




----------------------------------------------------------------------------------------------------------------------------
print("\tBank of The Funny Money Bunny Farm\n")
print("Client\t\tDeposits\tWithdrawals\tBalance\t\tNotes:")
print("__________________________________________________________________________________________________________________________")

names = ['Judith', 'Jimmie', 'Johnny', 'Joseph', 'Jeffry', 'Buddie', 'Charlie', 'Maxine', 'Jannis', 'Bodine']
deposists = [255.23, 525.55, 323.21, 651.48, 507.11, 101.11, 253.36, 323.22, 611.45, 252.91]
withdrawals = [255.76, 128.65, 156.22, 175.33, 390.12, 255.41, 128.22, 156.23, 728.98, 251.43]
balance = []
notes = []

for i in range(len(names)):
balance.appened(deposits[i] - withdrawals[i])
if(balance < 0):
print((names[i] + ", you are overdrawn. Your account balance is " + "$%.2f"%(balance[i]))
else:
print("" + names[i] + "\t\t" + "%.2f"%(deposits[i]) + "\t\t" + "%.2f"%(withdrawals[i]) + "\t\t" + "%.2f"%(balance[i]) + "\t\t" + notes[i])

print("__________________________________________________________________________________________________________________________")
print("\© Copyright 2021 Funny Bunny Money Productions")

#Main

print("\tBank of The Funny Money Bunny Farm\n")
account = int(input("How many new accounts are needed: "))
for i in range(account):
input("Enter the name of the client: ")
input("Enter the deposist of the client: ")
input("Enter the withdraral of the client: ")

Answers

Answer:

below is a version of your code that runs.

I'm not sure if it does what you expect it to do.

PLEASE ANSWER ASAP! 10 POINTS!

Answers

the answer : it’s 0, carry 1

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)

How do libraries let you write programs at a higher level? Why is testing important when building and sharing libraries?

Answers

Answer:

libraries do this so that you dx chae

Explanation:

what three factors helped the Wright brothers achieve success in controlled sustained and powered flight?​

Answers

In 1903 the Wright brothers achieved the first powered, sustained and controlled airplane flight; they surpassed their own milestone two years later when they built and flew the first fully practical airplane.

why it is important for steel to go through a fluid phase as it is being produced.

Answers

Answer: It is important because the object must go through heat to be melted and then it should be put into a mold to be formed. Also, it go though heat to keep it from cracking and go to be cooled and harden

Explanation:

If you came across an article that discussed the benefits of studying the night before a test rather than the morning of, what could you do to form your own opinion about such information? A. Do your own research including reading articles related to the same topic. B. Ask a trusted family member their opinion after they read the article. C. Check different social media accounts for articles on sleep studies. D. Read another article on this topic written by the same journalist.

Answers

Answer:

A. Do your own research including reading articles related to the same topic.

Explanation:

To confirm online information that is not made by reputable experts, professionals, journals, or websites, it is always recommended to cross-check such information carefully. To do that is to make research on the same topic and confirm if the actual information is the same.

Hence, in this case, the correct answer is "Do your own research including reading articles related to the same topic."

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 :)

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

Answers

Answer:

True

Explanation:

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

Function of an actuator

Answers

Answer:

an actuator is a device that uses a form of power to convert a control signal into mechanical motion


I really hope this helps you with your studies

Identify one audience for The Sun Website

Answers

Answer:

69

Explanation:

Stacy plans to print her contacts and would like to choose an option that will print select information for each contact in a business card format. Which option should she choose?

Answers

Answer: card style

Explanation:

From the question, we are provided with the information that Stacy plans to print her contacts and the option that she would like to choose is an option that will print select information for each contact in a business card format.

Based on the above information that is given, the option that she should choose is the card style.

What are some potential challenges that society will face given the digital revolution? You may want to think particularly of the news industry. Discuss how these challenges could impact young people such as yourself.

Answers

Answer:

Some said that technology causes more problems than it solves. ... Others said humans' uses and abuses of digital technologies are causing ... Highly technological societies have to be iterative if they hope to ... where we believe we can tell honestly delivered information from fake news and disinformation.

hope this helps...

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.

future quirk ideas for bnha

Answers

Niceeeeeeeeeeee lololololol
Hello there just a fellow MHA fan :)

Which are the following 4 things something must be able to do in order to be a computer? *

Answers

Answer:

There are four main equipment functions of a computer system: Input, Processing, Storage and Output.

Explanation:

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:

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

Answers

Answer:

what do you mean

Explanation:

Information system are too important to be left to computer specialist.Do you agree? Why or why not.

Answers

Answer:

Yes

Explanation:

Yes, information systems control all the information that goes through the system. This information is incredibly valuable and is very vast. Computer specialists are trained in helping others with regular computer problems both in hardware and software. They are not trained to analyze and handle giant databases of information. If they make a single mistake they can cost the organization millions of dollars in damages. Therefore, yea it is very risky to be left to a computer specialist.


what is
Force (N) = Mass (kg) x acceleration (m/s)

If a 80-kg swimmer pushes off a pool wall with a force of 225 N, at what rate with the swimmer

accelerate forward?​

Answers

Hope this really helps u with your studies
225/80=2.8125m/s

Which steps should you follow to show the Developer tab after clicking Options in the File tab?

Click Customize Ribbon, and check next to Developer in the Main Tabs area.
Click the Developer tab, click Switch View, and click OK in the Main Tabs area.
Click Open, and add a check mark next to Developer in the Customize area.
Click the View tab, add a check mark next to Developer, and click OK.

Answers

Answer:

A Click Customize Ribbon, and check next to Developer in the Main Tabs area.

Explanation:

Answer:

c

Explanation:

Some Tiny College staff employees are information technology (IT) personnel.


Some IT personnel provide technology support for academic programs, some provide technology infrastructure support, and some provide support for both.


IT personnel are not professors; they are required to take periodic training to retain their technical expertise.


Tiny College tracks all IT personnel training by date, type, and results (completed versus not completed).


Given that information, create the complete ERD that contains all primary keys, foreign keys, and main attributes.

Answers

xndnxbxnndndndnndnxndnnxndndnndndndnndndndndndnndnxnx

How is a digital representation of analog data a form of abstraction? Why is the quality of the photo, music, etc better when more samples are taken? Music is an example of analog data. What other examples of analog data can you think of?

Answers

Answer:

1. This is because non-essential parts of the analog data is cut of so as to represent the analog data digitally.

2. This is because it mirrors closely to the original analog material.

3. i. Temperature ii. Speed ii. Distance iv. Electric current

Explanation:

1. How is a digital representation of analog data a form of abstraction?

Digital representation of analog data is a form of abstraction because, since abstraction, which is the removal of non-essential parts of a material so as to reduce complexity, also non-essential parts of the analog data is cut of so as to represent the analog data digitally.

2.Why is the quality of the photo, music, etc better when more samples are taken?

The quality of these items is better because, as more samples are taken, it reduces the error in the sampling and the item(photo, music etc) mirrors closely to the original analog material.

3. What other examples of analog data can you think of?

i. Temperature ii. Speed ii. Distance iv. Electric current

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

why would computer programmers want to use an object to change the instructions they already created in a computer program ​

Answers

Answer:

bank rupt

Explanation:

no money on your card lol have  a graey day dont wish for what your not willing to work for

Write a C++ program to add two integers. Make a function add() to add integers and display sum in main() function.

Answers

Answer:

In C++:

#include <iostream>

using namespace std;

int add(int a, int b){

   int c = a + b;

   return c;

}

int main(){

   int a, b;

   cout<<"Enter two numbers: ";

   cin>>a;

   cin>>b;

   cout<<add(a,b);

   return 0;

}

Explanation:

The add() function begins here

int add(int a, int b){

This adds the two integers

   int c = a + b;

This returns the sum of the two integers

   return c;

}

The main begins here

int main(){

This declares two numbers

   int a, b;

This prompts user for two numbers

   cout<<"Enter two numbers: ";

The next two lines gets the two numbers

   cin>>a;

   cin>>b;

This gets the sum of the two numbers from the add() function. The sum is also printed

   cout<<add(a,b);

   return 0;

}

Help ASAP this assignment is due today!!!!

Answers

You want someone to do your assignment???
Other Questions
Use the GCF and the distributive property to find the sum of 22+33 6. Un tomo de sodio tiene 11 protones, 12 neutrones y 11 electrones, a) cul es la masa en gramos de este tomo de sodio? b) Si este tomo de sodio pierde un electrn para quedar cargado positivamente (Na+1) Cul es su nueva masa? cunto cambi en porcentaje con respecto a la masa original (la del literal a))? c) Si todos los tomos de sodio fueran iguales cuntos tomos de sodio hay en un miligramo? I need assistance please Explain how the ocean affects human life through medicine, nutrition and the economy? National artists are recognized because of their significant contribution in the Philippine literature. Who contributed lyrical prose-poetic form? Solve the given equation. Check your solution and show all your work. 7/10 r = 4 3/5(this is the last question i have on my test i swear) 2. A business installs a free chilled water drinking machinefor staff. This is an example of: (1)ABDa non-financial method of motivationa promotional methodan improvement to customer serviceorganic growth PLZZZZ HELP QUICKTed and Katie have saved up a total of $94.00. Ted has saved 6 dollars less than 4 times as much as Katie. How much has Katie saved? \begin{aligned} f(x)&=x^2 \\\\ g(x)&=(x - 6)^2 \end{aligned} f(x)g(x) =x 2=(x6) 2 We can think of ggg as a translated (shifted) version of fff.Complete the description of the transformation.Use nonnegative numbers.To get the function ggg, shift fff by units. How can a chemical reaction be sped up? I need help on this problem really I would be grateful I really need help please The time of a pendulum varies as the square root of its length. If the length if a pendulum which beats 15seconds is 9cm, find the length that beats 80seconds and the time of a pendulum with length 36cm Read this passage about Christopher Reeve.Christopher Reeve was born on September 25, 1952, in New York City. His mother was a journalist, and his father was a professor. As a kid he played sports, did well in school, and liked acting. His passion for acting goes back to playing with his brother when they were little. Reeve acted in his first play at the age of nine. After attending college, taking acting classes, and acting in many plays and movies, Reeve landed his biggest role. In 1978, he played the title role in Superman. He received very positive reviews for his performance and starred as Superman in all the sequels. Reeve was soon acting as the lead role in dozens of movies after Superman. Once well-known, Reeve used his celebrity status for good causes, such as visiting very sick children through the Make-A-Wish foundation. He was also a track and field coach at the Special Olympics.Besides acting, Reeve was also a licensed pilot and liked horseback riding. He learned to ride horses for a movie role, and he continued riding in his free time. Unfortunately, while riding one day in 1995, Reeve fell from his horse and became paralyzed from the neck down. Being confined to a wheelchair did not hold back Reeve from being socially active, and after many surgeries and rehabilitation, he decided to dedicate his life to helping people with spinal-cord injuries. He created the Christopher Reeve Foundation, which supports the improvement of the lives of people with disabilities and helps fund research to find a cure for paralysis. He was also politically active, working with senators to make sure that people with disabilities were treated fairly in the workplace. Reeve received many awards for his dedication to public service. He also wrote two books about his experiences, and a documentary was made about his life. Reeve passed away in 2004, but his legacy lives on today. He touched the lives of many people and showed us what it means to overcome extreme odds by never giving up.Based on this passage, Reeve best fits in the yearbook categoryMost Likely to Take Risks.Most Likely to Help Others.Most Likely to Run for President.Most Likely to Be a Musician.PLEASE HURRY ONLY 10 MINUTES LEFT If you know that lions are dangerous to people, and you read that lions are losing habitat due to human settlements, what inference should you make?Lions are running away from humans.Lions will go extinct soon.Humans are giving the lions diseases.Humans are killing or driving away the lions from their settlements. What is The quotient of 16and z minus 12? (HELP FAST PLEASE)Rodrigo scored 17 goals in 6 games. At this rate how many goals will he score in 4 games? Round your answer to the nearest whole number. Matt went to the student health center and sought the support of Ella, a student who is specially trained in maintaining confidentiality, who was able to offer Matt advice and a sympathetic ear. This is best described as:____________ Write down the use of light pipe.??? Pencils cost 2 dollars each.Rulers cost 3 dollars each.Edith buys p pencils and r rulers.The total cost is T dollars.Write down a formula for Tin terms of p and r.(3 marks)