Answer:
It's cool!
Explanation:
Everything coalesces together perfectly! Despite the fact the boy and his ray gun are vastly different in style, I think it's cool overall! :)
. 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]
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:
Describe how a black and white image could be represented in binary
Images known as binary images include pixels with only two possible intensities. Normally, they are shown in black and white. In terms of numbers, the two values are frequently 0 for black and 1 or 255 for white.
What represents of black and white image in binary?Each pixel in an image is made up of binary numbers. Binary may be used to make a straightforward black-and-white image.
If we declare that 1 represents black (or on) and 0 represents white (or off). A grid can be laid out and the squares colored to form the image (1 – black and 0 – white).
The most well-known instance of monochrome photography is black and white photography, which only uses neutral gray colors to depict its topics.
Therefore, tones of a single hue are used in monochrome photography to represent all the other colors in an image.
Learn more about binary here:
https://brainly.com/question/3708556
#SPJ2
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
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.
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
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
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
How to create a checkerboard on Python turtle?
I need to create a generic checkerboard in that box, if anyone knows how to code this I would be absolutely grateful and grant you brainliest for sure!
Answer:
here is my crude attempt:
import turtle
t = turtle.Turtle()
t.speed(0)
colors = ["black", "yellow"]
SQUARES = 8
SQUARESIZE = 20
def rectangle(color, s):
t.begin_fill()
t.pendown()
t.color(color)
for i in range(4):
t.forward(s)
t.right(90)
t.end_fill()
t.penup()
for row in range(SQUARES):
for col in range(SQUARES):
t.setpos(row*SQUARESIZE, col*SQUARESIZE)
rectangle(colors[(row+col)%2], SQUARESIZE)
Which layer in the Internet Protocol Suite model verifies that data arrives without being lost or damaged?
A. Link
B. Internet
C. Application
D. Transport
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
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)
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
What are some ways you can give staying off your phone a "boost" and make it easier to do?
If you're trying to break a bad habit, what are some things you can do so that you don't slip back into old ways?
Please help this is due today and I really need help.
Answer:
go do something outside and leave your phone inside to charge
Explanation:
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:
PLZZZ HELP I need this done by 7:50
Answer:
proportionally bias
Explanation:
m
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)
Match the Internet protocol with its purpose.
News:
http://
ftp://
file://
mailto:
Answer:
News: enables you to access newsgroups
http:// enables transfer of hypertext documents
ftp:// enables you to download from and upload to a remote computer
file:// loads a local file from your computer
mailto: loads the browser's e-mail screen to send an e-mail message
Answer:News:
✔ Enables you to access newsgroups
http://
✔ Enables transfer of hypertext documents
ftp://
✔ Enables you to download from and upload to a remote computer
file://
✔ Loads a local file from your computer
mailto:
✔ Loads the browser's e-mail screen to send an e-mail message
Explanation:
Right on Edge 2022
What is the significance of XML tags?
A.) They are self-descriptive.
B.) They are predefined.
C.) They are only computer readable.
D.) They are only human readable.
Answer:
your answer would be to ur question would be B
Answer:
It is self-descriptive
Explanation:
Plato Users
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
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
What is one way the Design tab in the PowerPoint Online application is used?
Add a chart
Choose a variant
Create an image
Transition slides
Answer:
select a theme
Explanation:
One way the Design tab in the PowerPoint Online application is used is to: B. choose a variant.
What is PowerPoint Online?PowerPoint Online can be defined as a web-based software application that is designed and developed by Microsoft Inc., in order to avail its end users an ability to create slides, customize backgrounds and choose a variant, especially during a presentation.
This ultimately implies that, choosing a variant is one way the Design tab in the PowerPoint Online application is used by end users.
Read more on PowerPoint here: https://brainly.com/question/26404012
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
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
A record is a specific piece of information state true or false
Explanation:
I think it is Falsehope it's help
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!!!!!
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.
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.
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
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