1answer.
Ask question
Login Signup
Ask question
All categories
  • English
  • Mathematics
  • Social Studies
  • Business
  • History
  • Health
  • Geography
  • Biology
  • Physics
  • Chemistry
  • Computers and Technology
  • Arts
  • World Languages
  • Spanish
  • French
  • German
  • Advanced Placement (AP)
  • SAT
  • Medicine
  • Law
  • Engineering
denis-greek [22]
2 years ago
9

Define a function FindLargestNum() with no parameters that reads integers from input until a negative integer is read. The funct

ion returns the largest of the integers read
Computers and Technology
1 answer:
Phoenix [80]2 years ago
6 0

The FindLargestNum program is an illustration of function; where its execution is done when its name is called or evoked

<h3>The function FindLargestNum </h3>

The FindLargestNum function written in Python, where comments are used to explain each action is as follows:

#Thie defines the FindLargestNum function

def FindLargestNum():

   #This gets the first input

   num = int(input())

   #This initializes the minimum value

   maxm = num

   #The following is repeated until the user enters a negative input

   while num >= 0:

       #This determines the largest input

       if num > maxm:

           maxm = num

       #This gets the another input

       num = int(input())

   #This prints the largest input

   print(maxm)

Read more about functions at:

brainly.com/question/24941798

You might be interested in
alina is preparing to scan a microsoft sql server database server for open ports. what port should she expect to find supporting
zheka24 [161]

Answer:

Hi, you haven't provided the options to the question but I will give the answer and you can check with the options.

The answer is PORT 1433.

Explanation:

Microsoft SQL servers store data in a table structure, this stored data is then organised into rows and columns within the table object. This servers can be used to store vast quantities of data that can be easily retrieved by using SQL statements.

SQL is useful for data administrator to manage and organize the data, however, the administrator must specify precisely what data they are searching for.

A port number is a way to identify a specific process to which an internet or other network message is to be forwarded when it arrives at a server. They include; TCP port 1433, TCP 1434, UDP 1434...

TCP port 1433 is the default port for SQL server. Port 1433 is the only port that must be open on the desktop computer that hosts the SQL database client application.

Therefore, Alina should expect to find PORT 1433 as the port that supports the Microsoft SQL server database.

5 0
3 years ago
Read 2 more answers
Which version represents the video project after the assembly cut has been completed, transitions and special effects have been
yuradex [85]

Answer:

D.final cut

Explanation:

it well help for the non-liris editing in film or others

7 0
3 years ago
B. Does “refactoring” mean that you modify the entire design iteratively? If not, what does it mean?
Liono4ka [1.6K]

Explanation:

Refactoring consists of improving the internal structure of an existing program's source code, while preserving its external behavior. 

6 0
3 years ago
The _____ is the button that you push to take a photograph. i think its B Help PLZ
Sati [7]

Answer:

C

Explanation:

see the image on this web site as example: https://www.digitaltrends.com/photography/what-does-this-do-an-explanation-of-dslr-buttons/

4 0
4 years ago
What is the limitation of computer<br>​
eimsori [14]

The limitation of computer are:

  1. No self-intelligence
  2. No feeling
  3. No learning power
  4. Dependency

3 0
3 years ago
Other questions:
  • The main storage device inside a computer where programs and files are saved is called the
    5·1 answer
  • What can help prevent issues related to downloading content from the internet
    11·2 answers
  • What hernia repair codes can be reported with add-on code 49568?
    6·1 answer
  • is the process of creating a message to be communicated. a. Encoding b. Decoding c. Receiving d. Sending
    10·2 answers
  • Which of the following components helps to limit the front-to-back movement of the crankshaft? 
    9·2 answers
  • Which changes should be made to establish and maintain formal writing conventions? Select two options.
    10·1 answer
  • Which of the following letters do the most reliable websites end in?
    12·2 answers
  • Hello Answerers it would be great if you could answer this:
    12·2 answers
  • Last one, this is fashion marketing and I need to know the answer to get the 80%
    6·1 answer
  • It is not important to type '=' before a formula or a function
    12·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!