Python is used to give instructions and logic to a website while HTML is used to describe how a website would be structured and displayed in a web browser.
What is Python?Python is a high-level programming language that is designed and developed to build websites and software applications, especially through the use of dynamic semantics and data structures.
What is HTML?HTML is an acronym for hypertext markup language and it is a standard programming language that is typically used for designing, developing and creating websites.
A difference between Python and HTML is that Python is a programming language which is used to give instructions and logic to a website while HTML is a markup language that is used to describe how a website would be structured and displayed in a web browser.
In conclusion, it is much more better to have two different coding systems because each of them perform a unique task in computer programming.
Read more on HTML here: https://brainly.com/question/4056554
Which of the following represents a bit?
0
01010110
3F02C
12.356
Answer:
0
Explanation:
A bit is a single piece of information and the smallest unit that can possibly represented by a computer, like 1 or 0.
The one that represents a bit is 0. The correct option is A.
What is a binary digit?A binary digit (bit) is the smallest unit of binary data that can be stored in a computer system.
A bit can only be in one of two states: on or off, which are frequently represented by ones and zeros. Which information is entered into and processed by the computer is determined by the combination of ones and zeros.
One of the four types of number systems is a binary number system. Binary numbers are basically represented in computer applications by merely two symbols or digits, namely 0 (zero) and 1 (one).
A bit is a binary digit, which is the smallest data increment on a computer. A bit can only hold one of two values: 0 or 1, which correspond to the electrical values off or on.
Thus, the correct option is A.
For more details regarding binary number, visit:
https://brainly.com/question/28222245
#SPJ2
What is the difference between iterative and sequential?
Answer:
iterative means to iterate, or "repeat" ex: 4,4,4,4,4
sequential means to increase with a constant ex:
1,3,5,7,9,11,13. the constant that the terms are incremented by is 2
What are the steps for inserting an internal link?
1. Type into a cell.
2. Then, select the that includes the cell you wish to link to.
3. Next, click the cell you wish to reference.
4. Finally, press .
Answer:
=
Worksheet
Ctrl + Enter
Explanation:
Answer:
=, worksheet, Ctrl+Enter
Explanation:
Consider the following code segment
Answer:
E
Explanation:
The first loop assigns "John" to name and prints name
The second loop iteratively prints every name in order in the given array.
Factorise (x+y)^3- (x^3+y^3)
Answer:
3xy(x+y)
Explanation:
if you want to simplify it it's 3x^2y+3xy^2 but you said factorise so it should be the answer 3xy(x+y)
Hope this helps:)
Answer:
3xy (x +y)
Explanation:
Step 1 Evaluate: (x+y)^3 = x^3+3x^2y+3xy^2+y^3
Step 2 Pull out like terms: 3x^2y+3xy^2 = 3xy × (x+y)
Answer:
3xy (x +y)
What will the following program display in the console?
var sum = 0
for(var i = 0; i < 5; i++){
sum = sum + i
}
console.log(sum);
A. 15
B. 10
C. 5
D. 0
Answer:
b- 10
Explanation:
The display of the given program will be 10. The correct option is B.
What is console?The text entry as well as display device for systems management messages, particularly those from the BIOS or boot loader, the kernel, the init system, and the system logger, is one definition of system console, computer console, root console, operator's console, or simply console.
The console on modern small computers is usually the computer's attached monitor and keyboard.
The console on many older computers is an RS-232 connection to a terminal, such as a DEC VT100. This terminal is kept in a secure room and is constantly monitored by the minicomputer's operators.
The given program's display will be ten, as the for loop will continue till the number is less than 5.
Thus, the correct option is B.
For more details regarding console, visit:
https://brainly.com/question/28702732
#SPJ6
I really need this answer please
Which of the following describes passing by reference?
passing a memory address
passing a defined value
passing a data type copy
passing a variable name
Please help me
Answer:
Passing by memory address
Explanation:
When you pass a memory reference like &a the data stored at this location can be directly accessed by the function through a dereference like *a = 2;
Q.3- What are keywords?
A. These are names given to variables, constants, classes and
methods.
B. These are constants that hold a fixed value of any of the data types.
C. These are special symbols that perform specific operations,
D. These are reserved words that have special meaning in java
language
Answer:
These are reserved words that have special meaning in java language
Explanation:
Literally, keywords are special words that have special meaning and purpose and can not be used from any other purpose aside from its predefined purpose.
In other words, they are reserved words.
Examples are: public, class, String, int, and many more
Hence, option (d) is correct
Write the code (from to )using for loop andif elseif statementto accept themobile phone numbersof200 residents of Dubaiasstringand check if thelength of eachmobile number is10. Depending on the first 3 characters of the mobile number,display the messagefrom the table below:First 3 charactersMessage“050”, “054”, “056”Etisalat number“052”,“055”, “058”DunumberFor anyother input(if the phone number is not a ten digit number or if it does not start with any of the above digits)Not a valid mobile number
Answer:
In Python:
nos = int(input("How many phone number: "))
for i in range(1,nos+1):
phn = input("Phone Number: ")
if not len(phn) == 10:
print("Invalid")
else:
charactersMessage = phn[0:3]
if charactersMessage in ['050', '054', '056']:
print("Etisalat Number")
elif charactersMessage in ['052', '055', '058']:
print("Du Number")
else:
print("Invalid")
Explanation:
Prompts the user for the frequency of phone numbers to check
nos = int(input("How many phone number: "))
This iterates through the phone numbers
for i in range(1,nos+1):
This prompts the user for phone number
phn = input("Phone Number: ")
Prints invalid id number length is not 10
if not len(phn) == 10:
print("Invalid")
If otherwise
else:
This gets the first 3 characters
charactersMessage = phn[0:3]
Prints Etisalat number if the characters are either 050, 054 or 056
if charactersMessage in ['050', '054', '056']:
print("Etisalat Number")
Prints Du number if the characters are either 052, 055 or 058
elif charactersMessage in ['052', '055', '058']:
print("Du Number")
Prints error if otherwise
else:
print("Invalid")
1) You are working with an organization as a network manager. The organization has
two offices in Abu Dhabi. Each office is equipped with 25 computers. The
management wants the smooth flow of information between both the offices and
does not want any delay.
a. Management has asked you to connect the computers in both the offices with
each other. What type of network will you suggest to them and what can be
some possible benefits of using that network?
b. The management wants that in the Head Office, there can be no access to data
from outside. Which type of network will be your preference to implement in
that case and what will be the benefit of that?
Answer:
Explanation:
a. In this specific scenario, the best option would most likely be a site-to-site VPN. This would allow each office to be independently connected to the internet and at the same time be connected to each other securely and efficiently. There should be unnoticeable or no delay at all between the two offices and sensitive files will be completely secure. Therefore, the two offices can easily transfer data securely between one another without fear of the data being intercepted.
b. The same VPN network would work on the head office, but instead we can implement firewall restrictions to the head office network itself. These restrictions would prevent any or all incoming connections that are trying to request data from the local head office network. This would allow the head office to continue working without worry of unwanted intruders in their network.
What is the output of this program? Assume the user enters 2, 5, and 10.
numA = 0
for count in range(3):
answer = input ("Enter a number: ")
fltAnswer = float(answer)
numA = numA + fltAnswer
print (numA)
Output:
Answer: 17.0
Explanation: I did ran it on PyCharm and that was the outcome.
PLEASE MARK BRAINLIEST AND RATE MY ANSWER :)
write the html code to get the following webpage
the solar system
ina solar system the planets move around a star. earth is a planet around sun .there are eight planets in a solar system . in order of increasing distance from the sun these are 1.mercury 2.venus 3.earth 4.mars 5.jupiter 6.saturn 7.uranus 8.neptune
save the html document as solarsystem.html
Answer:
<!DOCTYPE html>
<html>
<head> <title>webpage</title>
</head>
<body>
<h1>The Solar System</h1>
<p>In a solar system the planets move around a star. Earth is a planet around sun. There are eight planets in a solar system . In order of increasing distance from the sun these are: </p>
<ol>
<li>Mercury</li>
<li>Venus</li>
<li>Earth</li>
<li>Mars</li>
<li>Jupiter</li>
<li>Saturn</li>
<li>Uranus</li>
<li>Neptune</li>
</ol>
</body>
</html>
<!-- and save the file as solarsystem.html -->
Brainliest or whatever
Answer:
Brainliest
Explanation:
Yea
Answer:
tim berners lee
Explanation:
plz give brainliest
sorry if im wrong
Alex works as a customer-service representative at an insurance company. Before starting his shift, Alex reviews issues from his last shift to make sure they have been resolved. What workplace habit does Alex show by doing this? problem solving initiative efficiency interpersonal skills
Answer:
problem-solving
Explanation:
he is making sure all his problems have been resolved before starting a new shift.
Answer:
It's initiative
l
What do we call a statement that displays the result of computations on the screen?
ОА.
result statement
ов.
screen statement
OC output statement
OD
answer statement
OE.
input statement
Answer:
Output statement. The others do not make sense.
8.1 edhesive answer please
Answer:
dont understand what u mean
Star and peer-to-peer are types of
communication network
a worksheet can have a maximum of number of rows
-FOR EXCEL AND WILL GIVE BRAINLIEST-
The numbers in our worksheet look like this: 1000
You want them to look like this: $1,000.00
How can you accomplish this?
A. Select Format>Money from the menu
B. Click currency style button on the formatting toolbar
C. You have to retype everything and manually add the dollar signs, commas, and decimals
D. None of the above
Answer:
I believe the answer is B. Click currency style button on the formatting toolbar
Explanation:
Ill give brainliest if possible
Answer:
it is C
Explanation:
it is C because it will check morning list and afternoon list to find the kid
what is the shortcut to select all text?
Project: Big Data Programming - Section 2
Finding and Analyzing Your Data
a temperature map of the US
A temperature map of the US (Courtesy of the National Weather Service)
You need a large data set. If you are interested in weather data, try these search prompts. By adding “site:.gov” to your search, you are more likely to find government websites. Be careful in your search to use a trusted and reliable website. You do not want to download a virus along with your data!
climate at a glance site:.gov
statewide time series site:.gov
Examine Your Data
Once you have downloaded data, you will probably need to delete some of the top lines before you read the file. For instance, the following are the top few lines from a file that holds the average February temperature for 126 years. The data lines have three entries: the date, the average February temperature in degrees Fahrenheit, and the departure from the mean February temperature of 33.82 °F. The date is a string composed of the year and month. Since every month is February, all the date strings end in “02.”
Think of what will happen when you read the data in the file. Most of the rows are structured, but the first five rows have identifying information. Be sure you remove such rows from your data file before you process it.
Contiguous U.S., Average Temperature, February
Units: Degrees Fahrenheit
Base Period: 1901-2000
Missing: -99
Date,Value,Anomaly
189502,26.60,-7.22
189602,35.04,1.22
189702,33.39,-0.43
This is how this file should start.
189502,26.60,-7.22
189602,35.04,1.22
189702,33.39,-0.43
Be sure to check your file for the leading lines you need to delete.
Your Task
Now that you have your file holding your data, you need to analyze the data in three different ways that answer questions you pose. How you analyze is up to you, since what you analyze depends on what kind of data you have. As an example, with this data file, you can look for weather trends. You could find the average temperature of each decade, find the decade with the lowest average temperature, and the decade with the highest average temperature. It is a shame that the data table does not go back further. The Krakatoa volcano in Indonesia had a major eruption in 1816. It had such an epic effect on the climate that 1813 was known as the year without a summer.
You need your data file saved in the same folder as your program.
Open your data file with Notepad or Wordpad.
Open a new file in Python.
Copy and paste the contents from Notepad to the Python file.
Save the Python file with a .txt extension in the same folder where you save your program.
Analyzing Your Data
Your program will read your data file, perform the analysis, and write the results to a separate file with a .txt extension.
Write a pseudocode plan for your program. Show your plan to a partner. Ask the partner for any suggestions to improve your plan.
When done, show your results to a partner. Ask your partner what parts they found interesting.
Your Word Document Requirements
Part 1: Name: your name
Part 2: Data Source: the source of your data (do not copy and paste your data into the Word document)
Part 3: Questions to Answer: the questions your analysis will answer
Part 4: The Plan: the pseudocode outline of your program
Part 5: Plan Feedback from Your Partner: suggestions from your partner
Part 5: Results: copy and pasted results from your data file
Part 6: Interpretation: your interpretation of the results
Part 7: Final Feedback from Your Partner: description of what your partner found interesting
You can use this rubric
to evaluate your project before you submit it.
What to Submit
You will submit each of the following.
A Word document: Organize it as shown below.
Your data file: Saved with a .txt extension
Your program: Saved with a .txt extension since you cannot upload a .py file.
Your results file: Saved with a .txt extension.
Does anyone have the code for this?
Answer:
were you able to figure it out man, i need help with the same thing and im so lost right now. please say something back if you did, i could use the help
Explanation:
thanks
e-What is the important of Recycle bin?
Ans:
What is Internet Service Provider ?
Answer:
A company that provides subscribers with access to the internet.
Explanation:
Answer:
A company that supplies wifi service to access, use or participate in the internet.
Explanation:
Some examples would be Comcast, Verizon, Time Warner or ISP.
write a loop that finds the sum of the numbers between 7 and 34
THIS IS FOR PYTHON
total = 0
for i in range(7, 35):
total += i
print(i)
print(total)
I forgot the reason but python always stops one number before your desired value. So that's why it's 35
The loop that finds the sum of the numbers between 7 and 34 i2 as follows:
x = 0
for i in range(7, 35):
x += i
print(x)
The code is written in python.
The variable x is initialise with the value zero.
For loop is used to loop through the range of value 7 to 35, excluding 35.
The looped values are then added to the variable x
The final sum is then printed out using the print statements in python.
learn more on loop: https://brainly.com/question/21897044?referrer=searchResults
Which basic design principle is primarily made up of lines?
Answer:
Shape
Explanation:
1. This are tools used to make any presentation interesting and exciting.
a. audio and video
c. hyperlinks
b. animations
d. text and graphics
Answer:
c. hyperlinks
Explanation:
The correct option is - c.hyperlinks
Reason -
The "hyperlink" function in PowerPoint allows users to advance from one slide to another slide in the presentation when they click on a predetermined word, shape, or image, thereby allowing for a more dynamic and interactive experience than can be obtained with serial presentation of slides alone.
Plz help me I need this done by 7:50
Answer:
proportionality bias
Explanation:
The proportionality bias is the tendency to assume that big events have big causes. It is a type of cognitive bias and plays an important role in people's tendency to accept conspiracy theories
I hope this helps! ^^
☁️☁️☁️☁️☁️☁️☁️
how do i solve this?
Answer:
turn it left then ,ove foreward
Explanation:
write a loop that will input 8 numbers from the keyboard and find the sum
THIS IS FOR PYTHON
total = 0
for i in range(8):
number = int(input('Number: '))
total += number
print(total)
The loop that will input 8 numbers from the keyboard and find the sum is as follows:
user_input = [int(input('Enter your value: ')) for i in range(8)]
print(sum(user_input))
The code ask for the user's input for 8 times. Recall the range is 8.
Then we loop through the users input values
The looped users input will be summed using the sum() function. The sum function sums all the users input value.
The summed value is then printed with the print statement.
learn more on loop: https://brainly.com/question/14201070?referrer=searchResults