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
Nutka1998 [239]
2 years ago
11

9.6 Code practice Edhesive

Computers and Technology
1 answer:
Oxana [17]2 years ago
7 0

Answer:

N = [1,1,1,1,1],

[2,2,2,2,2],

[3,3,3,3,3],

[4,4,4,4,4]

def printIt(ar):

   for row in range(len(ar)):

       for col in range(len(ar[0])):

           print(ar[row][col], end=" ")

       print("")

           

N=[]

for r in range(4):

   N.append([])

   

for r in range(len(N)):

   value=1

   for c in range(5):

       N[r].append(value)

       value=value + 1

           

printIt(N)

print("")

newValue=1

for r in range (len(N)):

   for c in range(len(N[0])):

       N[r][c] = newValue

   newValue = newValue + 1

       

printIt(N)

Explanation:

I got 100%.

You might be interested in
Jamie is not sure a new medication will work because it has not had a large test group. Is Jamie being creative?
Mumz [18]
No, they're being skeptical.
4 0
2 years ago
Read 2 more answers
Suppose during a TCP connection between A and B, B acting as a TCP receiver, sometimes discards segments received out of sequenc
Shalnov [3]

Answer:

Yes

Explanation:

We known that TCP is the connection \text{oriented} protocol. So the TCP expects for the target host to acknowledge or to check that the \text{communication} session has been established or not.

Also the End stations that is running reliable protocols will be working together in order to verify transmission of data so as to ensure the accuracy and the integrity of the data. Hence it is reliable and so the data can be sent A will still be delivered reliably and it is in-sequence at B.

4 0
2 years ago
Oops, we made a mistake: we created a key "short" and gave it the value "tall", but we wanted to give it the value "long" instea
AnnZ [28]
Be consistent in whether you use single or double quotes to declare your strings: our autograder assumes you'll be consistent.
3 0
3 years ago
Three consecutive even integers heve a sum of 66. find the integers
Drupady [299]
Let us call x the smallest integer<span>. Because the next two </span>numbers<span> are </span>consecutive even integers<span>, we can call represent them as x + 2 and x + 4. We are told the </span>sum<span> of x, x+2, and x+4 is equal to 72. This means that the </span>integers<span> are 22, 24, and 26.</span>
6 0
2 years ago
Which term describes a number in base 16, using the digits from zero to nine along with A, B, C, D, E, and
cupoosta [38]

Answer:

It is Hexadecimal

Explanation:

Hexadecimal EX: A3 B8

8 0
2 years ago
Other questions:
  • When did the silver market drop sharply, hurting Bolivia's income?
    7·2 answers
  • An email message form includes all of the following main areas except
    11·2 answers
  • A(n) __________ port, also known as a monitoring port, is a specially configured connection on a network device that is capable
    13·1 answer
  • Andy wants to install a new Internet connection. He wants to take the fastest he can get. What are the maximum speeds for the fo
    9·1 answer
  • What types of information are commonly included in headers and footers? Check all that apply.
    10·1 answer
  • Use the drop-down menus to answer the questions.
    6·1 answer
  • What is the type of data in the list [103, 405, 527, 396, 503]?
    7·2 answers
  • Class 10 computer unit 1 all excersise​
    12·1 answer
  • Please help me asapppp!​
    8·2 answers
  • To behave ethically means
    7·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!