Answer:
"A moving picture is an illusion that makes a still photo seem to move. The basic principal behind motion pictures is the fast transition between one picture to the next, almost creating a seamless transition. A flip-book is a good example of this. Another example would be film used for old movies. The film contains negatives of an image which when light is shined through creates a "shadow" of the image. If you quickly transition the film from one image to the next you end up a motion picture."
Explanation:
1 )Write two ways to customize the
pictures in HTML document.
Answer:
a)If anyone wants to append the picture on the website then he can do this with the help of <img> tag. ...
b)The CSS is used to set the border, color, height, and width of the elements of the HTML.e
What does a file extension tell your computer?
A. What type of program to open
B. When the file was created
C. Where a program is saved
D. Which file name to display
Answer:
A. what type of program to open
My name is Devin. I’m soon going to graduate from technical school as an electrician. I’ve started
looking for a job and it’s a little overwhelming.
Ideally, I’d like to work in a small family run business, where we do mostly residential businesses.
This will allow me more time to get to know our customers. In addition, I would like to feel as if I’m
part of a small, close-knit team.
But... there are a couple of larger companies in the region that are hiring entry-level electricians. I
could probably make more money at one of these companies. These companies also have
continuing educational programs, if I agreed to work for them for a few years after getting hired.
For me, the downside of working at a larger company would be that the work is usually in an
industrial setting. Additionally, I may be working different shifts and staff a lot. This would take
away from the close "team" feeling I'm looking for.
But, working off-hours does mean even more pay. I just don't know.
How might Devin’s compromises change if continuing education was a priority?
Answer:
Bro congratulations for the graduation and I hope that your job will pay good and I will pray for your success. Good luck Devin
Write a basic
to solve
30x10
Answer:
30x10
Explanation:
3 times 10 = 30
30 times 10 = 300
Answer:
30x10=300
Explanation:
3x10=30
30x10= 300
(just add another zero, if that makes sense)
Edhesive 6.8 lesson practice answers
Answer:
1.) 25 ; 15 ; 15
2.) 50 ; 15 ; 50
Explanation:
In the first function written :
The variable val was initially decaled or assigned a value of 25 and that was what was printed first.
However, after the example function was written, the val variable was finally assiagned a value of 15 within the function. However, it was also declared that the global variable takes uonthe val value. Hence, the val variable initially assigned a value, of 25 changes to 15 globally.
For the second code :
From the top:
Val was assigned a value of 50 ;
Hence,
print(val) gives an output of 50
Within the function definition which prints the value of val that is assigned a value of 25 within the function.
Since tbe global variable isnt reset.
Printing Val again outputs 50;since ito is outside the function.
The code output description can be defined as follows:
Code Explanation:
In the first code, a "val" variable is declared that hold an integer value.In the next step, a method "example" is defined.Inside the method a global keyword is used that define a variable "val" in which it hold an integer value and print its value.After defining a method two print method is used that print "val" variable value and call exmaple method.In the second code, a "val" variable is declared that hold an integer value.In the next step, a method "example" is defined.Inside the method another variable "val" is defined in which it hold an integer value and print its value.After defining a method two print method is used that print "val" variable value and call exmaple method.Code:
val = 25 #defining a variable val that holds an integer value
def example(): #defining a method example
global val #using keyword global to define variable val
val = 15#defining an integer variable that hold integer value
print (val)#print global variable value
print (val) #print val variable value
example()#calling example method
print (val)#print global variable value
print("----------------------------------------------------")
val = 50 #defining a variable val that holds an integer value
def example(): #defining a method example
val = 15 #define variable val that holds integer value
print(val)#print val variable value
print (val) #print val variable value
example() #calling method example
print (val)#print val value
Output:
Please find the attached file.
Learn more:
brainly.com/question/21866333
Could somebody please find the bugs and amend them? This question is worth 25 Brainly points!
---------------------------------------------------------------------------
#Tax Calculator with 4 bugs
salary = int(input("Please enter your annual salary: £"))
if salary < 30000
#Salaries under 30000 are taxed at 20%
tax = salary * 0.2
elif salary >= 30000:
#Salaries over 30000 are taxed at 40% for anything over 30000
salary = salary - 30000
tax = salary * 0.4 + 6000
else:
#Salaries over 150000 are taxed at 45% for anything over 150000
salary = salary - 150000
tax = salary * 0.45 + 6400 + 48000
print("Earnings of £",salary,"will attract taxes of £",round(tax,2))
input("Press ENTER to quit")
line 4
if salary < 30000
error missing ":"
solution
if salary < 30000:
line 6
tax = salary * 0.2
error is missing identifier for tax
solution add identifier for tax on line 3
tax = 0.0
line 11
error syntax
solution is move tax = salary * 0.4 + 6000 to the right
tax = salary * 0.4 + 6000
What are characteristics of fluent readers? Check all that apply. reading known words automatically pronouncing words correctly reading words as quickly as possible understanding the meanings of the words being read O looking up all unknown words in the text being read
it's A,B,D
Answer:
D,A,B hope this is it!!!!!
Answer:
The person above me is correct
Explanation: credit to him
I will mark you as brainlist
Answer:
download it
Explanation:
because if u upload it will not save .
Answer:
If you would like to view a document that is now yours you would have to upload it. If someone wants to see your document you have to download it first and then send it to the person who is going to read it, and no you don't have to use word however you can if you want to.
the answer to the question would be download
Explanation:
Consider the following code segment - 3
Answer:
The answer is "Choice C".
Explanation:
In the above-given code, a 1D array "list" is declared that holds integer values, and it uses three print which can be defined as follows:
In a first print method, it uses the length method that holds the array length that is "9".In a second print method, it uses the array that prints the first element value of the array that is "22".In the last print method, it uses the array that holds the length of the array, which will give an error message that is "ArrayIndexOutOfBoundsException". That's why only the choice C is correct.PLZZZ HELP I need this done by 7:50
Answer:
proportionally bias
Explanation:
m
Hello i should be write engilish but i from turkey and my brainly APS is engilish how can ı change this lengue haa
Explanation:
there are buttons like q ans influence and me
go to me and tap settings
Answer:
you can translate it into English if u know how to do and if there is option for that.
Explanation:
How do u reverse image search on Android?
Answer:
go to the page the image is on
hold the picture -a menu will appear
tap Search
Write a program code in the python programming language to find simple interest given the
formula SI = (P*R*T)/100.
Read P(Principal), R (Rate), T (Time) from the keyboard and Calculate Simple Interest (SI).
Answer:
p = float(input('Principal: '))
r = float(input('Rate: '))
t = float(input('Time: '))
si = (p * r * t) / 100
print(si)
The "float" before the input in the first 3 lines is so you're able to input decimals. If you're not using decimals, you can switch the "float" to "int". However, if you input a decimal number after you switched to int, you will receive an error
hannes complains that his computer is always giving error messages, the file names and folder names are garbled, and there is an odd noise coming from his computer tower. which hardware device do you suspect is causing the problem?
Answer:
It could be the hard disk drive (HDD)
does the colour intesity change of the liquid if you add more baking soda?
Answer:
adding more baking soda to the water changes the intensity of the color blue. in this case, the liquid becomes a dimmer blue. this is because the pH scale is logarithmicmeaning that a difference in one unit of pH is 10 times the difference in concentration.
Explanation:
Hope this helped Mark BRAINLEST!!!!!
Which Application program saves data automatically as it is entered?
MS Word
PowerPoint
MS Access
MS Excel
The Application program that saves data automatically as it is entered MS Access. The correct option is C.
What is MS Access?Microsoft Access is a database management system that includes a graphical user interface, the relational Access Database Engine, and software-development tools.
It is a component of the Microsoft 365 software package and is available as a standalone product or as part of the Professional and higher editions.
Data kept in Access may be found and reported on with ease. Make interactive data entry forms. a variety of data sources can be imported, transformed, and exported.
Access is often more effective at managing data because it makes it easier to keep it structured, searchable, and accessible to several users at once.
MS Access is an application tool that automatically saves data as it is entered.
Thus, the correct option is C.
For more details regarding MS access, visit:
https://brainly.com/question/17135884
#SPJ2
I tried going into a website called Utters.io, but when I typed a phrase in, the video was taking a really long time to load. Does anyone know what's wrong with it?
Answer:
Your internet or browser
Explanation:
Try another browser or resetting your router. If a YT video will load then you can rule out internet speed and try another piece of client software.
Good HTML skills will be required in order to prevent what from happening in the design of a web page?
Answer:
to properly use the tags in the web page
Explanation:
The full form HTML is Hyper Text Mark up Language. HTML is used in designing a good web page in the computer. It is used to design the document that are displayed in the web browser.
Instead of using a programming language to do the functions of a web page, the markup language uses the tags to identify the different types of the contents and purposes that they serve in the web page. A good HTML skills are required to prevent the web page from any improper designing of the contents in the web page.
Write a program code which asks for 80 numbers between 100 and 1000 to be entered.
It checks that the numbers are in the correct range, and stores them in an array. It
counts how many of the numbers are larger than 500 and then outputs the result when
the program is finished.
Answer:
If you are using Python,
```count = 0
for i in range(0, 79):
a = int(input("Input a number: "))
if 100 <= a <= 1000:
if a > 500:
count += 1
else:
print("Please input a number between 100 and 1000!")
i -= 1
print(count)```
Explanation:
count refers to the number of 500s and above,
the for loop is required for the program to loop 80 times,
a is the input collected,
the nested if is to check whether the number is above 500 and the if is used to check if the number is between 100 and 1000 if not, it will output that you need to input a number between 100 and 1000,
the i-=1 is required to make sure that part wasn't counted.
and the last print is to output the number of numbers above 500
Match each definition with the term it describes. A(n) ______ provides identification and addressing information for computers and devices on a network. A(n) ________ is a network that covers an area of less than a mile. The Internet is an example of a(n) ______.
Answer:
IP address, LAN, WAN
Explanation:
Answer:
Sentence 1: IP Address
Sentence 2: LAN
Sentence 3: WAN
Explanation:
Edge 2022
What type of computer/device do you have i need it for a survey and it due today soooooooooooooo
Answer:
ooh I have a I phone computer
Use the drop-down menu to complete the steps for creating a scenario.
1. Go to the
tab.
2. In the
group, select
from the drop-down What If Analysis menu.
3. Click the Add button.
4. Specify the name of the scenario.
5. Specify the cells containing the values to change and click OK.
6. Specify
and click OK
Answer:
1. Data
2. Forecast
3. Scenario Manager
4. values for the changing cells
Explanation:
On edge
The Internet is considered a WAN.
True or False
Answer:
True
Explanation:
The Internet can be considered a WAN as well, and is used by businesses, governments, organizations, and individuals for almost any purpose imaginable.
Answer:
True
The internet is considered a WAN
Computer software consists of
A.) the peripheral equipment such as a scanner
B.)the physical parts of the computer such as the keyboard.
C.)the programs inside of a computer such as the d.)operating system and gaming.
a monitor and the CPU
Answer:
The programs inside of a computer
. Suppose client A initiates an FTP session with server S. At about the same time, client B also initiates an FTP session with server S. Provide possible source and destination port numbers for: (a) the segments sent from A to S? (b) the segments sent from B to S? (c) the segments sent from S to A? (d) the segments sent from S to B? (e) If A and B are different hosts, is it possible that the source port numbers in the segments from A to S are the same as those from B to S? (f) How about if they are the same host?
Answer:
Follows are the solution to this question:
Explanation:
The segments send port "A to S" numbers below 1024 and use 1024 and 65535 as standard numbers, that are using as a temporary connection. The port number for Server "S" is =23, and the port number for Client"A" is between 1024 and 65535, and its standard value is 467, and other calculation can be defined in the table:
[tex]Serial \ \ \ \ \ \ \ \ \ \ \ \ \ port \ \ number \ \ \ \ \ \ \ \ \ \ \ \ \ Destination \ port\ number[/tex]
[tex]a) A \to S \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ 467 \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ 23\\\\b) B \to S \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ 513 \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ 23\\\\c) S \to A \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ 23 \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ 467\\\\d) S \to B \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ 23 \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ 513\\\\[/tex]
[tex]e) Yes\\\\f) No\\\\[/tex]
Fill in the blanks. The ______ starts out from the server and goes to a ______, which reads the packet’s addressing information. On the Internet, a network packet usually makes a few ______ from router to router before reaching its destination.
Answer:
1. Network Packet
2. Router
3. Hops
Explanation:
Answer:
Network packet, router, hops
Explanation:
Edge 2022
On start up, which of these windows is not displayed ?
2.
(a) The Blank Form window
(b) The Class window
(c) The Project window
(d) The Properties windov
Answer:
(d) The Properties window
Answer:
The Project Explorer window .
Explanation:
displays a list of forms and modules that make up your application. Generally, this is positioned under the tool bar on the right side of the screen. It acts a s a quick reference to the forms, classes and modules in a project.
free ten points,, it would be batter if you answered though
Answer:
I think A
Explanation:
Answer:
I think it's A
Hope it helps :D
In a sport like baseball, which of the following could be considered a “rule”?
following an umpire’s decision on whether a pitch is a ball or a strike
the force of gravity on the ball
the kinds of safety equipment players are asked to wear
all of the above
This assignment is based on Exercise 8.4 from your textbook. Each of the following Python functions is supposed to check whether its argument has any lowercase letters.
For each function, describe what it actually does when called with a string argument. If it does not correctly check for lowercase letters, give an example argument that produces incorrect results, and describe why the result is incorrect.
# 1
def any_lowercase1(s):
for c in s:
if c.islower():
return True
else:
return False
# 2
def any_lowercase2(s):
for c in s:
if 'c'.islower():
return 'True'
else:
return 'False'
# 3
def any_lowercase3(s):
for c in s:
flag = c.islower()
return flag
# 4
def any_lowercase4(s):
flag = False
for c in s:
flag = flag or c.islower()
return flag
# 5
def any_lowercase5(s):
for c in s:
if not c.islower():
return False
return True
Explanation:
#1 is wrong because if the first character is not lowercase, it stops and returns false, ignoring all the other characters. It can be fixed by removing the else: statement and moving the return False statement outside of the loop.
This is efficient; if one lowercase character is encountered, the function 'knows enough' and can return true. Only if no lowercase is encountered it has to loop all the way to the end.
You can try this out on repl.it.
Many of the others functions have problems in them. #4 looks OK.