Computer Science, asked by Elsaringa, 7 months ago

5.
is a name given by user for a part of the program
7. A
is a word having special meaning reserved by programming
language.
refers to iterating through the elements of a string, one
character at a time.
9. The
method adds an item to the end of the list.
10. The is used to remove the item from the list.
11. The
reserves the items of the list.
12.
create individual values from a tuple's elements.
13.
arrange elements of a
of a sequence in some order
(ascending/descending).
14. The
refers to the order in which statements are executed
during a program run.
15. Program execution begins with first statement of
segment.
16.Python supports types of formal augments/parameters.
17. The time of which a variable or name remains in memory is called
of variable
I
in the function header is known as a​

Answers

Answered by mafattah
1

Answer:

Function or module or method

Reserved keyword

Loop

Add method

Remove

11.

12.

13. SORT

14. Flow of execution

15.true

16. True

17.

18

Answered by aryansuts01
0

Answer:

5. Identifiers.

7. Reserved word.

8. slice operator ([])

9. Python list append() method

10. remove()

11. Reserves and Surplus

12. Packing

13. arrayed data

14. flow of execution

15. __main__

16.

  •     Positional arguments (Required arguments)
  •     Default arguments.
  •     Keyword Argument.
  •     Variable-length arguments.

17. RAM

18. parameters.

Explanation:

5. In computer languages, identifiers are symbolic names that are used for identification. Prior to designating an identifier, it is recommended to employ a few specific keywords.

7. A word with a specific meaning that has been reserved by a computer language is referred to as a reserved word.

8. Using the Python slice operator, you can iterate across a string as a substring ([]). It enables for partial iteration over the original string by removing a substring from it. This method traverses the string after receiving the starting and ending indices, as well as a step value.

9. With the aid of examples, we will understand well about Python list append() method in this article. The append() method is used to add a new item to the end of the queue.

10. One of the most popular techniques for list object removal of items or elements is the remove() method. You must identify the specific object that is to be eliminated when using this approach.

11. Unspent profits are used to develop reserves. It could take the shape of a capital reserve or common reserve. The Balanced Sheet's Reserves and Surplus section includes the Capital Redemption Reserve, General Reserve, Security Charge, and other items.

12. tupling a set of values together. Creating personal views from a tuple's elements is known as unpacking. Elements and objects can be deleted with the del statement. However, since tuples are irreversible, as was said before, a single item cannot be removed from a tuple.

13. Data is referred to as arrayed data when it is organized in ascending or descending order from the raw data.

14. You must understand the flow of execution—the order in which statements are carried out—in order to guarantee that a function is defined before being used for the first time. The program's opening statement is where execution always starts. In ascending order, each assertion is followed out one at a period.

15. The first statement in segment __main__ starts the programme.

16. Formal Arguments are the names for the parameters we use in the specification of functions to hold the values returned by function calls. In Python, passing arguments from the a callback function to a program code is known as parameter passing. According to the picture below, logical argument can be divided into four different categories.

17. Variable values are stored in RAM memory. The computer stores temporary files during execution of a program in Random Access Memory. Two bytes, or 16 bits, are needed to store each integer. Give some information are the names given to these numbers. A variable sets aside one or more locations for storing a binary value.

18. The parameters are the variables in the function header.

#SPJ3

Similar questions