Answer:
[-1, 0, 1]
Explanation:
Given
The above procedure
Required
Which list does not work as intended
The question has missing options (the options are available online).
From the question, we understand the procedure is to return true for lists that contain only positive numbers.
However, the list does not work for [-1, 0, 1]
The reason is that; the procedure starts checking from index 1.
i.e. index ←← 1
In [-1, 0, 1], the element at index 0 is negative (-1).
Since the procedure starts checking from index 1, the procedure will not check the element at index 0 (i.e. -1).
Hence, it will return true, instead of false
In this exercise we have to use the knowledge of computational language in python, so we have that code is:
It can be found in the attached image.
So, to make it easier, the code in python can be found below:
NumList = []
Number = int(input("Please enter the Total Number of List Elements: "))
for i in range(1, Number + 1):
value = int(input("Please enter the Value of %d Element : " %i))
NumList.append(value)
print("\nPositive Numbers in this List are : ")
for j in range(Number):
if(NumList[j] >= 0):
print(NumList[j], end = ' ')
See more about python at brainly.com/question/2266606
Which of the following is true of how packets are sent through the Internet?
Packet metadata is only included on important packets to indicate they should get access to faster paths through the network
Packet metadata is used to route and reassemble information travelling through the Internet
Information sent through the internet is only encapsulated in packets if the message is too large to be sent as a datastream
Information sent through the internet is split into two packets, one which contains the message and another which contains the metadata
Packet metadata is used to route and reassemble information travelling through the Internet
-scav
What is the relationship between optical drives and WORMs?
Optical drives are advanced versions of WORMs.
WORMs do not affect optical drives.
Optical drives are susceptible to WORMs.
WORMs are types of optical drives.
Answer:
When data is written to a WORM drive, physical marks are made on the media surface by a low-powered laser and since these marks are permanent, they cannot be erased. Rewritable, or erasable, optical disk drives followed, providing the same high capacities as those provided by WORM or CD-ROM devices.
Explanation:
Good luck
In a word-processing program, what are the easily accessible icons that allow you to print, save and change fonts with a click of a button?
A- tool bar
B- keyboard shortcuts
C- preferences
D- printing options
The answer is A. tool bar
Item 3
Which of the following describes new technology development?
A harmless process
A somewhat assured process
A partially risky process
A very risky process
Answer:
A somewhat assured process
B. A somewhat assured process is describes new technology development
What are the five phases in technology development process?Five phases guide the new product development process for small businesses: idea generation, screening, concept development, product development and, finally, commercialization.
What is technology development process?Technology Development Process, is a directed process at developing new knowledge, skills and artefacts that in turn facilitates platform development
To learn more about new technology development, refer
https://brainly.com/question/27090068
#SPJ2