Answer:
try this
Explanation:
def SieveOfEratosthenes(n):
prime = [True for i in range(n+1)]
p = 2
while (p * p <= n):
if (prime[p] == True):
for i in range(p * p, n+1, p):
prime[i] = False
p +=1
c=0
for p in range(2, n):
if prime[p]:
print(p," ",end=" ")
c=c+1
if(c==10):
print("")
c=0
n= 1000
print("prime number between 2 to 999 as determined by seive of eratostenee ")
SieveOfEratosthenes(n)
How can technical writers help readers focus on important information in a set of instructions?
Technical writers can bring a reader's attention to important details in a set of instructions by ___.
1. adding an explanation and caution
2. using a highlighting technique
3. repeating the information
4. adding graphics to the introduction
Answer:
2. using a highlighting technique
Explanation:
highlighting is for to draw attention