Help!! Its not working at all and idk what to do!

Help!! Its Not Working At All And Idk What To Do!

Answers

Answer 1

Answer:

1st. Let the teacher know

2nd. Check your internet

3rd. Make sure all other tabs are closed

Explanation:

This always helps me I hope it helps you too !! :3


Related Questions

over the past few years a very definite need has arisen in the electrical trades for:

Answers

Data and communication wiring technicians. Run Ethernet/cat5, 5e from switch and server rooms to outlying jacks for PC users. Tagging wires, testing db loss and other cable polarization spec’s

In other words, no longer just power wiring components and techniques.

who is known as the first computer programmer​

Answers

Answer:

Ada Lovelace

Explanation:

English mathematician Ada Lovelace, the daughter of poet Lord Byron, has been called "the first computer programmer" for writing an algorithm for a computing machine in the mid-1800s.

Answer:

i think its ada lovelalce

A workstation has been moved from the first floor to the fifth floor within an organization. The user is now reporting that the workstation cannot connect to the network. A technician suspects that the workstation could not obtain an IP address from a DHCP server. What is a possible cause of the problem?

Answers

Answer:

The workstation has been configured with a static IP address.

Explanation:

A computer network connects two or more computers together. It provides this interconnection between them using several protocols.

A computer in a network is called a node or workstation and must have an IP address. IP addresses can be assigned statically or dynamically. The static IP address permits the administration to manually configure the IP address, while dynamic addressing is done by the DHCP server protocol.

If a workstation is moved from a network of workstations with static addresses to a dynamically assigned address network, it should be configured to a DHCP server or its static address may conflict or not exist in the network.

The bindery process of cutting irregular shapes and patterns in press sheets is called what?

a. stitching
b. die cutting
c. comb binding
d. folding​

Answers

B. Die cutting. Typically a metal die with various shapes and patterns is rolled over paper, cardboard, etc to punch out.

what is the true colar of water

Answers

Answer:

blue

Explanation:

becausse it's blue and it's water

It’s translucent it doesn’t have a color it looks blue cause of the sky?

what are your favorite and least favorite things to do with microsoft powerpoint presentation​

Answers

Answer:

Animations , Motion Paths , Text and Image Emphasis are my favorite .

I like every about it

witchs one better mr beast or pewdiepie















(mrbeast)

Answers

Answer:

MR BEAST IS MR BEST

Explanation:

ANSWER: Mr. Beast because he does not buy subscribers

Which is the best description of the difference between bound and unbound forms? O Bound forms are similar to hierarchical forms but pop up in a separate window, while unbound forms are flat forms that do not have subforms. O Bound forms are linked to a table or query, while unbound forms are not linked to a table or query but are used to operate and navigate a database. O Bound forms perform tasks based on user input, while unbound forms navigate between multiple forms. O Bound forms are the basic interface for inputting information into tables or queries, while unbound forms ha more subforms within the main form. one or​

Answers

i think it’s B not sure tho

Answer:

B. Bound forms are linked to a table or query, while unbound forms are not linked to a table or query but are used to operate and navigate a database.

Explanation:

What is some advice you would give someone who is just starting online learning 2 sentences

Answers

Answer:

It sucks. But i would say if you get behind do your homework for that day and then doing one or two missing assignments. It really helps to take more notes than you would in actual school because its harder to ask the teacher for help.

Explanation:

ASAP ε=ε=ᕕ(°□°)ᕗ
Sorry if you can't see it but please help me if you can!

Answers

Answer:
I would say C

you want some points? whoever answers first gets 48 points. no cap. better be quick.
what's 2+2=?

Answers

Answer:

4

Explanation:

Answer:

4444444444444444444444444

Select all that apply.

Which font types are appropriate for use in text paragraphs?

serif
sans-serif
historical
script
novelty

Answers

Answer:

sans-serif, novelty, and script.

Explanation:

Which game is better? Among us or ROBLOX -

Answers

Answer:

Both are equally good, but Roblox is better for kids

Explanation:

This is because when you are imposter and kill someone it shows a bone and there is a bit of blood!

Answer:

Gud question...

Explanation:

Among us is violent

Roblox is good for kids

so 50 50

LEAF library in py can be expressed in what form?

Answers

Answer:

In open form

Explanation:

What are orphan records?

Answers

Answer:An orphaned record is a record whose foreign key value references a non-existent primary key value. Orphaned records are a concept within database relationships. If a record in a related table references a non-existent record in the primary table, it is said to be an orphaned record

Explanation:

hope this helps:)

Why did LISD had to block the game “among us”?

Answers

Lewisville Independent School District blocked the following program: Among Us because the game was a distraction to online education. Normally, school districts disable/block games that students play to make sure they are not just playing games and that they are paying attention during class.
To cut off anything I that might not be school related like for example distractions

uses computer resources from multiple locations to solve a common problem ​

Answers

Distributed memory systems
I think is the answer

Answer:grid computing

Explanation:

Select the appropriate things to try if you are unable to connect to the Internet.

A) Check the correct IP address.

B) Switch to a different router.

C) Turn the power off and on repeatedly.

D) Run net start.

F) Switch cable types.

G) Check the browser configuration.

H) Check

Answers

Answer:

the correct answer is C and G.

Explanation:

Usually when a home router isnt working properly the first thing you should do is restart the router. Then, check your browser config to see if theres any issues.

what is the definition of a virus?​

Answers

An infective agent that typically consists of a nucleus acid molecule in a protein coat

Answer:

Any of a large group of submicroscopic infectious agents that are usually regarded as nonliving extremely complex molecules, that typically contain a protein coat surrounding an RNA or DNA core of genetic material but no semipermeable membrane, that are capable of growth and multiplication only in living cells, and that cause various important diseases in humans, animals, and plants.

Explanation:

Modify the guessing-game program so that the user thinks of a number that the computer must guess.



The computer must make no more than the minimum number of guesses, and it must prevent the user from cheating by entering misleading hints.

Answers

Answer:

Follows are the code to this question

import random as R #import randaom package

import math as M #import randaom package

S= int(input("Input smaller number: "))#defining variable and input value

L= int(input("Input larger number: "))#defining variable and input value

C= 0#defining variable and assign value

while True:#define loop

   C+= 1#count value

   num= (S+L) // 2#calculate average

   print('%d %d' % (S,L))#print value

   print('number : %d' % num)#print average

   choice = input('Input =, <, or >: ')#input value in choice variable

   if choice == '=':#define if to check value

       print("Hooray, you get %d tries" % C)#print message

       break#use break  

   elif S==L:#defining and condition to check it is equal

       print("I'm out from the guesses, and you cheat")#print message

       break#use break

   elif choice == '<':#defining another condition to check

       L = num - 1#calculate larger value

   else:#else  

       S= num + 1# calculate smaller value

Output:

please find the attached file.

Explanation:

In the code first, we import the "math and random" package, then two-variable "S and L" is defined, in which it is used to input the value from the user-end, and variable "c" is defined to count the value.

In the next step, a while loop is defined, that uses the input value and print its average vale, and the choice variable to input the symbol value and use the conditional statement, which is defined as follows:

In if block, if the choice is equal it will print a message.In elif s is equal to l it will print message.In elif, the choice is "<" it will calculate the less value and print its value, otherwise, it will go in else, in this it calculates the value of "S".

Discribe a place that you have dremed about that does not exit in a real life

Answers

Candy land ??? A cotton candy land with trees filled with sweet fruits and candy ?
Game world where you play games all day in that world and it looks like a swamp

What do you think could be done to encourage more women to study computer science

Answers

   many top colleges are making efforts to recruit female computer science students, making it an ideal time for women to pursue computer science degrees. The computer science field has been trying to appeal more to female employees by moving toward longer maternity leave and better work-life balance for working moms. I think that there have been great strides in encouraging women and minorities to consider studying computer science. I see increased interest and participation among women and minorities in my community and it is encouraging, however, I also recognize that I live in a pretty unique place. To combat this type of challenge, I think we need to continue to normalize the idea of females in Computer Science and also expand the programs outside of big cities and academic towns.

Explanation: these are reasons why women should do computer science.

hope this helps :)

true or false: if a comment is posted anonymously, it cannot be considered hate speech or cyber bullying

Answers

Answer:

false

Explanation:

Think about it

It is false that if a comment is posted anonymously, it cannot be considered hate speech or cyber bullying.

What is cyberbullying?

The use of technology to harass, threaten, embarrass, or target another person is known as cyberbullying.

Online threats, as well as mean, aggressive, or rude texts, messages, posts, or messages, are all considered. Posting personal information, pictures, or videos intended to hurt or embarrass someone else is also prohibited.

One or both of the following are involved in cybercrime: Using viruses and other types of malware, criminals target computers. Criminal activity involving the use of computers to commit other crimes.

Cyberbullying or cyber harassment is a type of bullying or harassment that takes place over the internet. Online bullying includes cyberbullying and cyber harassment.

When a comment is made anonymously, it is considered hate speech or cyberbullying.

Thus, the given statement is false.

For more details regarding cyberbullying, visit:

https://brainly.com/question/8142675

#SPJ2

What are the different kinds of program control structures?

Answers

Answer:

Flow of Control:

Flow of control through any given function is implemented with three basic types of control structures:

Sequential: default mode. Sequential execution of code statements (one line after another) -- like following a recipe

Selection: used for decisions, branching -- choosing between 2 or more alternative paths. In C++, these are the types of selection statements:

if

if/else

switch

Repetition: used for looping, i.e. repeating a piece of code multiple times in a row. In C++, there are three types of loops:

while

do/while

for

why is sequencing important in coding

Answers

It allows us to carry out task with multiple steps.

Answer:

To make sure you get the pattern correct.

Explanation:

Each code has a different detail that makes it do what it needs to do

Dave is a recruiter for a large video and animation firm. He is looking for an employee who is willing to give productive hours to activities related to the job. Which quality is he looking for? A. responsibility B. flexibility C. trust D. reliability E. integrity

Answers

Answer:

reliabitlity

Explanation:

What are the 3 general themes that are found in great advertising

Answers

Answer:

Personal Appeal, Social Appeal, and Humor Appeal

Explanation:

Summarize these two up-and-coming leadership positions in digital media: digital media supervisor and chief digital officer (CDO). What does each job entail? What is one way they are different? What is one way they are similar? Which one sounds more appealing to you, and why?

Answers

Answer:

The big differences in the CIO and the Chief Digital Officer is this responsibility for turning IT into a value creator, being a business to the extent of actually having a P&L, which is something that the CIO typically doesn’t have in most organizations.

And so we also see the CDO as something that is really leading digital business from the front in a way that most CIOs aren’t. Most CIOs are not trying to think of new markets, new channels, new business models that the organisation should be getting and making that a top priority. And that’s pretty much all the Chief Digital Officer thinks about is how to take existing assets, existing information, existing knowledge and making a business out of that creating products and services and entering new markets.

I think that the CIO, however, is used to operating much larger operations, so I think what remains to be seen we’re not seeing Chief Digital Officers have as much operational experience, or even necessarily seem to require it. Although I think the really successful digital businesses will be able to scale up their organizations really well, they’re going to have Chief Digital Officers that are good at that, we’re not seeing operational jobs as job number one, quite the same way as we’re seeing it in traditional CIOs.

In terms of really any other big differences, we see that Chief Digital Officers are very multidisciplinary, so they have a lot of different experiences, and there’re very comfortable in talking with marketing and sales in their language. They’re very good at talking to the product teams in their language and operations in their language, and executives and so on. And not to the same degree that we see the CIOs that don’t really talk the language of business, and they talk the language of the IT department but that tends to be it.

Explanation:

Digital Media Supervisor ( CIO )

Chief Digital Officer ( CDO )

Select the correct answer.
What is the postcondition of an expression or variable?
a. the condition of the expression before you execute a control structure
B. the value of the expression when you increment a variable
c. the value of the expression when you decrement a variable
d. the condition of the expression once you exit a control structure
e. the condition of the expression while running a control structure

Answers

A. the condition of the expression before you execute a control structure

Answer:

D.

Explanation:

You're Welcome

Can you clone apps form your PC and to other PC?
Yes or No

Answers

Answer:

Yes, a USB cable can help transfer data you obtained to another PC.

Explanation:

Hope this helps :)

Yes. ^^^ they are correct
Other Questions
( x + 7 ) ( 5x + 4 ) expand and simplify Complete the statements about finding the equation of the line that is parallel to line n and passes through point (2, 3). The slope of the graphed line is . The slope of the parallel line is . An equation that can be used to find the y-intercept of the parallel line is . The y-intercept of the parallel line is . The equation of the parallel line is .This is for edge 2020 and It's urgent! Pleeeeeeeaese! Help me please!!!!!!!!! When may you drive in the left lane of a road with two lanes? With four lanes? What are the male and female reproductive parts of a flower anybody read a short play, Gray Matter, by Jeanette D ????? again i need help. why dose my math teacher hate me. idk i have like 15 more things to do but whatever...but hey more points for yall :) help me please I will give the first person five out of five stars Why was Ibn Battuta so important to historians. some one knows how doing this Who entered North America nearly 12000 years ago.(Native Americans) Physical health refers to the degree of functionality of a person's body.Please select the best answer from the choices provided.OF The Pythagorean theorem states that the sum of the squares of the legs of a right triangle is equal to the square of thehypotenuse by the formula a2 + b2 = c2.If a is a rational number and b is a rational number, why could c be an irrational number?O The square of rational numbers is irrational, and sum of two irrational numbers is irrational.O The product of two rational numbers is rational, and the sum of two rational numbers is irrational.O The left side of the equation will result in a rational number, which is a perfect square.O The left side of the equation will result in a rational number, which could be a non-perfect square. Which supporting detail is most helpful in determining whether the author'spurpose is to inform, explain, persuade, inspire, or entertain?Recently, automobile laws in several states have changed to requirefront seat passengers to be both over 60 pounds and over 12 years ofage. Like many people, you may be skeptical of the necessity of theselaws. What you should realize is that automobile engineering hasimproved, and front seat airbags have changed. While they havebecome safer and more effective, they have made it necessary foryounger children to remain in the backseat. When drivers like youunderstand the reasons for this change, everyone will surelyappreciate that it is for the safety of their children.O A. ...younger children to remain in the backseat.B. Recently, automobile laws in several states have changed...O C. While they have become safer and more effective,...O D. What you should realize is that automobile engineering hasimproved... PLZ Hurry! I will give Braniliest to the first answer! By 1900, the only two African nations that remained independent were __________.A.South Africa and TanzaniaB.Rwanda and the Democratic Republic of the CongoC.Liberia and EthiopiaD.Libya and Egypt The reason that we want to develop a confidence interval for the population mean is because:_____.1. the sample mean is an efficient estimate of the population mean. 2. the chance that the sample mean is equal to the population mean is zero. 3. the sampling distribution of the sample mean is normally distributed. 4. the standard error of the sample mean is an efficient estimate of the population error. 5. the value of the sample mean varies from sample to sample. Why can certain things only be turned into certain other things? For example, if you mixed flour, sugar, eggs, and other ingredients, you will not make gold. You will not make rubber, or diamond, or straw either. Why not? In the following space, explain why someone cannot make gold by mixing flour, sugar, and eggs. The system shown above consists of two identical blocks that are suspended using four cords, each of a different length. Which of the following claims are true about the magnitudes of the tensions in the cords? Select two answers. Which of the following is true about the strength of attraction or repulsion between particles with charge.A. The larger the absolute value of the charges, the larger the force between them. B. The larger the absolute value of the charges, the smaller the force between them. C. The larger the distance between particles with charge, the larger the force between them. D. The larger the distance between particles with charge, the weaker the force between them. In 1990, Ivanhoe Company completed the construction of a building at a cost of $800,000 and first occupied it in January 1991. It was estimated that the building would have a useful life of 40 years and a salvage value of $24,000 at the end of that time. Early in 2001, an addition to the building was constructed at a cost of $200,000. At that time, it was estimated that the remaining life of the building would be, as originally estimated, an additional 30 years, and that the addition would have a life of 30 years and a salvage value of $8,000. In 2019, it is determined that the probable life of the building and addition will extend to the end of 2050, or 20 years beyond the original estimate.Required:a. Using the straight-line method, compute the annual depreciation that would have been charged from 1991 through 2000:b. Compute the annual depreciation that would have been charged from 2001 through 2018.c. Prepare the entry, if necessary, to adjust the account balances because of the revision of the estimated life in 2019.