Answers

Answer 1

Answer:

Ubuntu includes thousands of pieces of software, starting with the Linux kernel version 5.4 and GNOME 3.28, and covering every standard desktop application from word processing and spreadsheet applications to internet access applications, web server software, email software, programming languages and tools

Explanation:

Answer 2

Answer:

Explanation:

It is a free OS


Related Questions

someone, please answer this.

This lesson showed you the general form of the syntax for a for loop in JavaScript:for

(initialize counter; condition; update counter) {code block;}

What does each part do, and why is it necessary?

Answers

Answer: A loop will continue running until the defined condition returns false . ... You can type js for , js while or js do while to get more info on any of these. ... initialization - Run before the first execution on the loop. ... But it can be used to decrement a counter too. statement - Code to be repeated in the loop.

Explanation:

i need an quote for a ad im using gatorade

Answers

Answer

Want the best aid for after a game, then try some Gatorade!

Explanation:

Hope this helps lol! plz mark as brainliest!

Put the steps in order to produce the output shown below. Assume the indenting will be correct in the program.
JDoe
1. Line 1
answer = username ('Joann', 'Doe')
2. Line 2
print (answer)
3. Line 3
def username (strFirst, strLast):
4. Line 4
return strFirst[O] + strLast

Answers

Answer:

The correct code is:

def username (strFirst, strLast):

      return strFirst[O] + strLast

answer = username ('Joann', 'Doe')

print (answer)

Explanation:

The given code illustrates the use of functions.

i.e passing values to a function and retrieving values from it

So, first: We start with the def statement

def username (strFirst, strLast): ----> This defines the function

Then the return statement

      return strFirst[O] + strLast --- > This passes value to the main

Next, is the main function of the program which is:

answer = username ('Joann', 'Doe') ---> This passes values to the username function

print (answer) ---> This prints the returned value from the function

Es la actividad que posibilita comunicar gráficamente ideas, hechos y valores procesados y sintetizados en términos de forma y comunicación, factores sociales, culturales, económicos, estéticos y tecnológicos

Answers

Answer:

La estadística es una rama de las matemáticas aplicadas que se ocupa de la recopilación, evaluación, análisis y presentación de datos o información. El trabajo también utiliza elementos de cognición, psicología, informática y ciencias de sistemas, cálculos numéricos y contribuciones de otras materias que tratan de matemáticas, datos y métodos informáticos intensivos.

El resultado, también llamado estadística, a menudo se presenta en forma numérica en números absolutos, números de frecuencia, números proporcionales, promedios, en tablas con series de tiempo o con otros números comparativos y a menudo también se ilustra en diagramas o figuras. El resultado se usa en parte para mostrar cómo se maneja algo en este momento y en parte como una herramienta para predecir eventos futuros mediante inducción. La estadística se utiliza en muchas disciplinas científicas, desde las ciencias naturales hasta las humanidades, pero también en la política y los negocios.

Implement the function printTwoLargest that inputs an arbitrary number of positive numbers from the user. The input of numbers stops when the first negative or zero value is entered by the user. The function then prints the two largest values entered by the user. If fewer than two distinct positive numbers are entered a message to that effect is printed instead of printing any numbers. Hint: Duplicates will cause problems. Try to make sure that you find a way to ignore them.

Answers

Answer:

The function in Python is as follows:

def printTwoLargest():

   chk = 0

   list1 = []

   num = int(input("Enter: "))

   while num > 0:

       for i in list1:

           if i == num:

               chk+=1

               break;

       if chk == 0:

           list1.append(num)

       chk = 0

       num = int(input("Enter: "))

   list1.sort()

   if len(list1) >= 2:

       print("Largest:", list1[-1])

       print("Second:", list1[-2])

   else:

       print("Length of list must be at least 2")

Explanation:

This defines the function

def printTwoLargest():

This initializes a check variable to 0

   chk = 0

This initializes an empty list

   list1 = []

This prompts the user for input

   num = int(input("Enter: "))

The following loop is repeated until input is 0 or negative

   while num > 0:

The following for loop checks for duplicate

       for i in list1:

           if i == num: If duplicate is found

               chk+=1 The check variable is set to 1

               break; And the for loop is exited

The input is appended to the list if the check variable is 0 (i.e. no duplicate)

       if chk == 0:

           list1.append(num)

This sets the check variable back to 0, for another input

       chk = 0

This prompts the user for another input

       num = int(input("Enter: "))

This sorts the list

   list1.sort()

This prints the two largest if valid user input is 2 or more

   if len(list1) >= 2:

       print("Largest:", list1[-1])

       print("Second:", list1[-2])

if otherwise, this prints that the length must be at least 2

   else:

       print("Length of list must be at least 2")

HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP

Answers

Answer:

I should be C! :D

Answer:

B

Explanation:

Which of the statements below describe how to print a document?

Click on the Print icon at the tip of the screen.

Click on Print in the system tray.

Select Print from the Start menu.

Select Print from the File menu.


(On the picture above is what I have plz let me know if I’m wrong)

Answers

I pretty sure it’s the first one also I don’t think that you pick two answers because it does not say to do so
Other Questions
Instructions: From these five factors affecting climate, choose one particular factor you agree that affects the climate in your area and a factor that does not. Describe how it affects or did not affect. Write an essay.1. Latitude2. ALTITUDE3. DISTANCE FROM BODIES OF WATER4. OCEAN CURRENT5. TOPOGRAPHY how do you found your eating practice Which statement correctly compares a scientific theory with a scientific law?A. A scientific theory is an observation of specific natural events under givencircumstances, while a scientific law is a broad explanation of how all objectsbehave.B. A scientific theory is a broad explanation of phenomena, while a scientific law is anobservation of specific natural events under given circumstancesC. A scientific theory is a vague idea about the natural world, while scientific law isbased on rigorous testing involving multiple experiments.D. A scientific theory is a specific explanation of a single event, while scientific law is abroad description of many events happening in a row. what is the impact on both natural and human systems. Write the equation of a line parallel to the line y = 4x - 3 and passing through the point (0,10). Which point has coordinates (-2, 3)? What is the axis of symmetry and vertex?y=-3x2-24x-42Can someone help me pls Prefixes, Roots, and SuffixesIdentifying PrefixesWhich of these word parts are examples of prefixes?a. arthob. inter-c. -iosisd. tensie. -omaf. tri-g. poly- Compute the range of the box and whisker plot. Type a numerical answer in the space provided. DO not type spaces in your answer. Conservation of matter means that:55Matter is never created nor destroyed.Matter is always created and destroyed.Matter always turns into energyMatter is flexible, it can be created destroyed, or turned into energy True or false question !50 POINTS!Which number is a solution of the inequality?6 greater than z left-parenthesis 10 minus z right-parenthesis A. 0 B. 1 C. 2 D. 3I'm super confused on this question. Awarding Brainiest for Answer and Step By Step Explanation. Thanks! What is the measure of Angles are not necessarily drawn to scale,AB73x O How to do this one too What type of figurative language is used:"A flag wags like a fishhook there in the sky." A math teacher at George Washington Middle School asked boys in the 6th and 7th grades to report their shoe size. She used the results to create these histogramsWhich conclusion best supported by the histograms?A as boys get older, shoe sizes become more normally distributed with fewer large outliers.B As boys get older, shoe size range, defined by the minimum and maximum, decreasesC As boys get older, shoe sizes increase and the distribution remains relatively unchanged.D As boys get older, shoe size distribution becomes more spread with more large outliers Dr. Raman is a psychologist who believes that personality traits are consistently stable across time and situations. He also believes that they give rise to measurable behavior. Dr. Raman would likely use _____ to measure personality. 52. With respect to the bank reconciliation which is correct?A. Subtract outstanding checks from the company's balance.B. Add deposits in-transit to the company's balance.C. Add service charge to the company's balance.D. Subtract NSF checks from the company's balance.E. Subtract interest earned from the bank's balance. Mushrooms are usually considered part of the microbial world because their fungal hyphae are microscopic. Some mushrooms have a fruiting body known as a ___ that is visible to the naked eye above ground.