Answer:
BMP
Explanation:
The BMP file format, also known as bitmap image file, device independent bitmap (DIB) file format and bitmap, is a raster graphics image file format used to store bitmap digital images, independently of the display device (such as a graphics adapter), especially on Microsoft Windows[2] and OS/2[3] operating system
It is possible for the router to know whether it is supposed to send a cat photo to your laptop because It uses the private IP address.
Router is a device that help to transfer data and across the internet or across the user device and the internet.
Private IP addresses are internet protocol addresses that is often assign to user device by router in order to a successful communicate to take place between the internet and user device.
Private IP addresses are mostly at:
•Home
•Office
•Business environments
Inconclusion It is possible for the router to know whether it is supposed to send a cat photo to your laptop because It uses the private IP address.
Learn more here:
brainly.com/question/19112414
Answer:
String date = "21/05/2020";
String dayStr = date.substring(0,2);
int day = Integer.parseInt(dayStr);
System.out.println(day);
Explanation:
Create a variable called <em>date</em> which holds the current date
Create a variable called <em>dayStr</em>. Initialize it to the day part of the <em>date</em> using the substring method
Create a variable called <em>day</em>. Parse the <em>dayStr</em> and assign it to the <em>day</em>
Print the <em>day</em>
A symbol which should be used for entering a formula in a cell is: B. =.
<h3>What is Microsoft Excel?</h3>
Microsoft Excel can be defined as a software application that is designed and developed by Microsoft Inc., for analyzing and displaying spreadsheet documents by using rows and columns in a tabulated format.
<h3>What is a spreadsheet?</h3>
In Computer technology, a spreadsheet can be defined as a document which comprises cells that are arranged in a tabulated format with rows and columns. Also, a spreadsheet is typically used in various field to do the following on a data:
As a general rule, "B. =" is a symbol which should be used for entering a formula in a cell on a spreadsheet application such as Microsoft Excel.
Read more on spreadsheets here: brainly.com/question/4965119
#SPJ1
Answer:
Explanation:
The following python code loops through each line within a file called text.txt and counts all the words, then it divides this count by the number of sentences in the text file. Finally, output the average number of words per sentence.
f = open("text.txt", "r")
all_words = 0
sentences = 0
for x in f:
list = x.split(' ')
all_words += len(list)
sentences += 1
average = all_words / sentences
print("There are an average of " + str(average.__round__()) + " words in each sentence.")