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
Someone plz Help I am desperate.
sasho [114]

It would help if there is a programming language in the context of which you need this answered. For instance in Python you can create a program like this:

print(type("Hello"))

print(type(1337))

print(type(True))

print(type("3.14"))

It will return:

<class 'str'>

<class 'int'>

<class 'bool'>

<class 'str'>

8 0
3 years ago
The data in RAM is saved when the computer is turned off. True or False
IgorLugansk [536]

Answer:

False

Explanation:

This is False because when the computer shuts off completely all the data in the ram is deleted

4 0
3 years ago
$2,000 is deposited into a savings account that receives 4% annual interest . How long will it take for the amount of money in t
anzhelika [568]
The answer would be 25 years is what it would take for it to double 2000x.04=80 . The interest would add up to 80 for 1 year. Multiple 80 by 25 and you get 2000.
8 0
3 years ago
Peter has a website that promotes his local vacation rental site. He uses Google Ads to manage his advertising campaign. He's cr
Mkey [24]

Answer:

The attributed reason for the discrepancy is that Conversion tracking is generating duplicate conversions.

4 0
2 years ago
Explain 5 documents that can<br>be created by using<br>ms word?​
arlik [135]
I don’t understand? What you mean by that
4 0
2 years ago
Read 2 more answers
Other questions:
  • You want some points? whoever answers first gets 48 points. no cap. better be quick.
    5·2 answers
  • Linux would be a good example of?
    6·1 answer
  • How might a company go about performing a load test on their website?
    7·1 answer
  • Ciscon Telecom is a mobile operator in the European Union. The company provides personalized services to its customers, and its
    8·2 answers
  • Assume phrase= "Peter Piper picked a peck of pickled peppers", What will be returned if phrase.search(/[aeiou]/) is called?
    9·1 answer
  • Question 1
    10·1 answer
  • What types of printed information are useful to obtain from your target employers?
    5·1 answer
  • What is the base of a number system?
    8·1 answer
  • In which situation is coauthoring of presentations primarily utilized?
    13·2 answers
  • Intelligent transportation systems use GPS to<br> Select all that apply.
    5·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!