English : asked on 378491
 13.01.2020


please cite evidence

. 0

Step-by-step answer

28.03.2023, solved by verified expert
Unlock the full answer
1 students found this answer . helpful

Answer:

See below

Step-by-step explanation:

Think Question #1: The traveler in the poem describes the statue and the area that surrounds it as desolate and ruined. He notes the "vast and trunkless legs of stone" (line 2) and the "shattered visage" (line 4) lying half-buried in the sand. He also mentions the "lone and level sands" (line 11) stretching around the statue, which emphasizes the emptiness and barrenness of the landscape.

Think Question #2: In the inscription on the pedestal, the term "works" refers to Ozymandias's accomplishments and achievements, which he wants other mighty rulers to admire and envy. The full inscription reads: "My name is Ozymandias, king of kings: / Look on my works, ye Mighty, and despair!" (lines 14-15). The use of the term "works" suggests that Ozymandias wanted to leave a lasting legacy of his power and grandeur.

Think Question #3: The word "pedestal" in line 9 of the poem "Ozymandias" refers to the base or support on which the statue of Ozymandias stands. I determined this meaning from the context of the poem, which describes the pedestal as bearing an inscription about the king's greatness. A synonym for pedestal is "base" or "platform." Checking a dictionary confirms that pedestal means "the base or support on which a statue, obelisk, or column is mounted" (Oxford English Dictionary).

Think Question #4: The word "colossal" in line 13 of the poem "Ozymandias" means "extremely large or massive" and is derived from the Greek word "kolossos," which means a "gigantic statue." According to the Oxford English Dictionary, the term "colossal" was first used in English in the 18th century to describe a statue of the Greek titan Helios at Rhodes, which was considered one of the Seven Wonders of the ancient world. The word is an adjective that emphasizes the scale and grandeur of the object it describes.

It is was helpful?

Faq

Computers and Technology
Step-by-step answer
P Answered by PhD

1.  

num1 = input("Enter the value of n")  

n = int(num1)  

def calc(n):  

Lst = []  

while n > 0:  

remainder = n % 10  

Lst.append(remainder)  

quotient = int(n / 10)  

n = quotient  

i = len(Lst) - 1  

sum = 1  

for i in range(0, len(Lst)):  

if(i % 2 != 0):  

sum *=Lst[i];  

else:  

continue  

print(sum)  

return(0)  

\ r2

num=input("Enter the value of n")

arr=[12,-12,13,15,-34,-35,35,42]

def div7positive():

  sum = 0

  m = 0

  i = 0

  while m <= 7:

      if(arr[i]>=0 and arr[i]%7 == 0):

          sum +=arr[i]

      i = i + 1

      m += 1

       

   

  print("sum of number divisible by 7 and positive is", +sum);

div7positive()

\ r

\ r3.Write an algorithm that reads a natural number n and calculates the sum:

\ rS = 1 / (1 * 2) + 1 / (2 * 3) + 1 / (3 * 4) +… + 1 / ((n-1) * n)

\ r

num=input("Enter the value of n")

def sumseries():

  sum = 0

  m= 0

  while m <= 7:

      sum +=1/((int(num)-1)*int(num))

      m += 1

  print("sum of series is", +sum)

sumseries()

\ R4. Read a natural number n. Calculate the sum of its own divisors n. For example, for n = 12, the sum of its own divisors is 2 + 3 + 4 + 6 = 15

num=input("Enter the value of n")

def sumdivisors():

  sum = 0

  m= 2

  while m <= int(num):

      if int(num) % m == 0:

          sum += m

      m += 1

  print("sum of divisors is", +sum)

sumdivisors()\ r

\ R5. We read a natural number n and then whole numbers. Calculate and display the sum of the natural numbers between 10 and 100. For example, if n = 5 and then read 30, –2, 14, 200, 122, then the sum will be 44 (that is, 30 + 14).

\ r

Lst = []  

num=input("Enter the value of n")

i = 0

while i<= int(num):

  num1=input("Enter the element of array")

  Lst.append(int(num1));

  i += 1

def numbet0and100():

  sum = 0

  m= 0

  while m <= int(num):

      if Lst[m] <= 100 or Lst[m] >=0:

          sum += Lst[m]

      m += 1

  print("sum of numbers between 0 and 100 is", +sum)

numbet0and100()

\ R6. A natural number n of maximum 4 digits is read. How many digits are in all numbers from 1 to n? For example, for n = 14 there are 19 digits, and for n = 9 there are 9 digits.

\ r

num = input("Enter the value of n")

n = int(num)

print(“sum as required is:” (n -9) + n)  

 

\ R7. Read the natural numbers n and S, where n can be 2, 3, 4 or 5. Show all the numbers of n digits that have the numbers in strictly ascending order, and the sum of the digits is S. For example, for n = 2 and S = 10, 19, 28, 37, 46 will be displayed.

num = input("Enter the value of n")

n = int(num)

Lst = []

def calc(n):

  i = 1

  total = pow(10,n)

  while i <= total:

      j = i

      while j > 0:

          remainder = j % 10  

          Lst.append(remainder)

          quotient = int(j / 10)

          if quotient > 0:

              j = quotient

          else:

              length = len(Lst) - 1

              sum = 0

              while length >= 0:

                  sum += Lst[length]

                  length = length - 1

              if sum == pow(10,n):

                  print(j)

              k = len(Lst)

              del Lst[0:k]

      i = i + 1

  return(0)

calc(n)

\ r

\ R8. We consider the row 1, 1, 2, 3, 5, 8, 13, ... in which the first two terms are 1, and any other term is obtained from the sum of the preceding two. Write an algorithm that reads a natural number n and displays the first n terms of this string. For example, for n = 6, 1, 1, 2, 3, 5, 8 will be displayed.

\ r

nterm = int(input("What number of terms do you want?"))

a, b = 0, 1

totalcount = 0

if nterm <= 0:

 print("Please input a positive number")

elif nterm == 1:

 print("Fibonacci number upto which",nterm,":")

 print(a)

else:

 print("Fibonacci series:")

 print(nterm)

 while totalcount < nterm:

     print(a)

     nth = a + b

     a = b

     b = nth

     totalcount += 1

 

\ 9. Write an algorithm that reads two natural numbers n1 and n2 and displays the message "yes" if the sum of the squares of the digits of n1 is equal to the sum of the numbers of n2 or "no" otherwise. For example, for n1 = 232 and n2 = 881, "yes" will be displayed, and for n1 = 45 and n2 = 12, "no" will be displayed.

num1 = input("Enter the value of n")

num3 = input("Enter the value of n")

n = int(num1)

num2 = int(num3)

def calc(n):

  Lst = []

  while n > 0:

      remainder = n % 10  

      Lst.append(remainder)

      quotient = int(n / 10)

      n = quotient

       

  i = len(Lst) - 1

  sum = 0

  while i >= 0:

      sum += Lst[i]* Lst[i]

      i = i - 1

  return(sum)

def calc1(num2):

  Lst = []

  while num2 > 0:

      remainder = num2 % 10  

      Lst.append(remainder)

      quotient = int(num2 / 10)

      num2 = quotient

       

  i = len(Lst) - 1

  sum = 0

  while i >= 0:

      sum = Lst[i] + Lst[i]

      i = i - 1

  return(sum)

a = calc(n)

b = calc1(num2)

if a == b:

  print("yes")

else:

  print("No")

\ r

\ R10. Write an algorithm that reads a natural number n and displays the message "yes" if all of its n numbers are distinct, or "no" if n does not have all the distinct digits. For example, for n = 37645 it will display "yes" and for 23414 it will show "no".

\ r

num1 = input("Enter the value of n")

n = int(num1)

def calc(n):

  Lst = []

  while n > 0:

      remainder = n % 10  

      Lst.append(remainder)

      print( remainder)

      quotient = int(n / 10)

      n = quotient

       

  flag = 1

  for i in range(0, len(Lst)):

      for j in range(i+1, len(Lst)):    

          if Lst[i] == Lst[j]:    

              flag = 0

              break

           

  if flag == 1:

      print("YES")

  else:

      print("NO")

  return(0)

Explanation:

Please check answer.  

Computers and Technology
Step-by-step answer
P Answered by PhD

1.  

num1 = input("Enter the value of n")  

n = int(num1)  

def calc(n):  

Lst = []  

while n > 0:  

remainder = n % 10  

Lst.append(remainder)  

quotient = int(n / 10)  

n = quotient  

i = len(Lst) - 1  

sum = 1  

for i in range(0, len(Lst)):  

if(i % 2 != 0):  

sum *=Lst[i];  

else:  

continue  

print(sum)  

return(0)  

\ r2

num=input("Enter the value of n")

arr=[12,-12,13,15,-34,-35,35,42]

def div7positive():

  sum = 0

  m = 0

  i = 0

  while m <= 7:

      if(arr[i]>=0 and arr[i]%7 == 0):

          sum +=arr[i]

      i = i + 1

      m += 1

       

   

  print("sum of number divisible by 7 and positive is", +sum);

div7positive()

\ r

\ r3.Write an algorithm that reads a natural number n and calculates the sum:

\ rS = 1 / (1 * 2) + 1 / (2 * 3) + 1 / (3 * 4) +… + 1 / ((n-1) * n)

\ r

num=input("Enter the value of n")

def sumseries():

  sum = 0

  m= 0

  while m <= 7:

      sum +=1/((int(num)-1)*int(num))

      m += 1

  print("sum of series is", +sum)

sumseries()

\ R4. Read a natural number n. Calculate the sum of its own divisors n. For example, for n = 12, the sum of its own divisors is 2 + 3 + 4 + 6 = 15

num=input("Enter the value of n")

def sumdivisors():

  sum = 0

  m= 2

  while m <= int(num):

      if int(num) % m == 0:

          sum += m

      m += 1

  print("sum of divisors is", +sum)

sumdivisors()\ r

\ R5. We read a natural number n and then whole numbers. Calculate and display the sum of the natural numbers between 10 and 100. For example, if n = 5 and then read 30, –2, 14, 200, 122, then the sum will be 44 (that is, 30 + 14).

\ r

Lst = []  

num=input("Enter the value of n")

i = 0

while i<= int(num):

  num1=input("Enter the element of array")

  Lst.append(int(num1));

  i += 1

def numbet0and100():

  sum = 0

  m= 0

  while m <= int(num):

      if Lst[m] <= 100 or Lst[m] >=0:

          sum += Lst[m]

      m += 1

  print("sum of numbers between 0 and 100 is", +sum)

numbet0and100()

\ R6. A natural number n of maximum 4 digits is read. How many digits are in all numbers from 1 to n? For example, for n = 14 there are 19 digits, and for n = 9 there are 9 digits.

\ r

num = input("Enter the value of n")

n = int(num)

print(“sum as required is:” (n -9) + n)  

 

\ R7. Read the natural numbers n and S, where n can be 2, 3, 4 or 5. Show all the numbers of n digits that have the numbers in strictly ascending order, and the sum of the digits is S. For example, for n = 2 and S = 10, 19, 28, 37, 46 will be displayed.

num = input("Enter the value of n")

n = int(num)

Lst = []

def calc(n):

  i = 1

  total = pow(10,n)

  while i <= total:

      j = i

      while j > 0:

          remainder = j % 10  

          Lst.append(remainder)

          quotient = int(j / 10)

          if quotient > 0:

              j = quotient

          else:

              length = len(Lst) - 1

              sum = 0

              while length >= 0:

                  sum += Lst[length]

                  length = length - 1

              if sum == pow(10,n):

                  print(j)

              k = len(Lst)

              del Lst[0:k]

      i = i + 1

  return(0)

calc(n)

\ r

\ R8. We consider the row 1, 1, 2, 3, 5, 8, 13, ... in which the first two terms are 1, and any other term is obtained from the sum of the preceding two. Write an algorithm that reads a natural number n and displays the first n terms of this string. For example, for n = 6, 1, 1, 2, 3, 5, 8 will be displayed.

\ r

nterm = int(input("What number of terms do you want?"))

a, b = 0, 1

totalcount = 0

if nterm <= 0:

 print("Please input a positive number")

elif nterm == 1:

 print("Fibonacci number upto which",nterm,":")

 print(a)

else:

 print("Fibonacci series:")

 print(nterm)

 while totalcount < nterm:

     print(a)

     nth = a + b

     a = b

     b = nth

     totalcount += 1

 

\ 9. Write an algorithm that reads two natural numbers n1 and n2 and displays the message "yes" if the sum of the squares of the digits of n1 is equal to the sum of the numbers of n2 or "no" otherwise. For example, for n1 = 232 and n2 = 881, "yes" will be displayed, and for n1 = 45 and n2 = 12, "no" will be displayed.

num1 = input("Enter the value of n")

num3 = input("Enter the value of n")

n = int(num1)

num2 = int(num3)

def calc(n):

  Lst = []

  while n > 0:

      remainder = n % 10  

      Lst.append(remainder)

      quotient = int(n / 10)

      n = quotient

       

  i = len(Lst) - 1

  sum = 0

  while i >= 0:

      sum += Lst[i]* Lst[i]

      i = i - 1

  return(sum)

def calc1(num2):

  Lst = []

  while num2 > 0:

      remainder = num2 % 10  

      Lst.append(remainder)

      quotient = int(num2 / 10)

      num2 = quotient

       

  i = len(Lst) - 1

  sum = 0

  while i >= 0:

      sum = Lst[i] + Lst[i]

      i = i - 1

  return(sum)

a = calc(n)

b = calc1(num2)

if a == b:

  print("yes")

else:

  print("No")

\ r

\ R10. Write an algorithm that reads a natural number n and displays the message "yes" if all of its n numbers are distinct, or "no" if n does not have all the distinct digits. For example, for n = 37645 it will display "yes" and for 23414 it will show "no".

\ r

num1 = input("Enter the value of n")

n = int(num1)

def calc(n):

  Lst = []

  while n > 0:

      remainder = n % 10  

      Lst.append(remainder)

      print( remainder)

      quotient = int(n / 10)

      n = quotient

       

  flag = 1

  for i in range(0, len(Lst)):

      for j in range(i+1, len(Lst)):    

          if Lst[i] == Lst[j]:    

              flag = 0

              break

           

  if flag == 1:

      print("YES")

  else:

      print("NO")

  return(0)

Explanation:

Please check answer.  

English
Step-by-step answer
P Answered by PhD

1. Cite - to refer to a source as an authority

2. Direct quotation - using the exact words of an author. Must always be put into quotation marks; must be cited in parentheses following the quote in the text; and must also be given an entry in the works-cited list

3. Documentation - the acknowledgment of all outside sources researched and used in an assignment; citation

4. MLA format - the Modern Language Association style of citation for research sources, commonly used in schools and universities in the areas of language and the humanities

5. Paraphrase - restating the author's ideas in one's own words; much longer than a summary; must be documented

6. In-text citation - a technique for citing sources in which the source information immediately follows the fact or quote given in the paper

7. Plagiarism - the use of someone else's information, whether quoted directly, summarized, or paraphrased, without permission or citation so that the information appears to belong to the person using it rather than to the actual owner

8. Source - in research, all outside material used to research information for an assignment

9. Works-cited page - an alphabetical listing of all sources investigated and used to complete the project

Explanation:

All given terms are related to the process of writing an essay/research. If we want to write an essay of any kind correctly, we need to be familiar with these terms and acknowledge them. If we do not, we may end up in legal trouble because incorrect citation leads to plagiarism, which can be treated as a crime in some cases.

English
Step-by-step answer
P Answered by PhD

1. Cite - to refer to a source as an authority

2. Direct quotation - using the exact words of an author. Must always be put into quotation marks; must be cited in parentheses following the quote in the text; and must also be given an entry in the works-cited list

3. Documentation - the acknowledgment of all outside sources researched and used in an assignment; citation

4. MLA format - the Modern Language Association style of citation for research sources, commonly used in schools and universities in the areas of language and the humanities

5. Paraphrase - restating the author's ideas in one's own words; much longer than a summary; must be documented

6. In-text citation - a technique for citing sources in which the source information immediately follows the fact or quote given in the paper

7. Plagiarism - the use of someone else's information, whether quoted directly, summarized, or paraphrased, without permission or citation so that the information appears to belong to the person using it rather than to the actual owner

8. Source - in research, all outside material used to research information for an assignment

9. Works-cited page - an alphabetical listing of all sources investigated and used to complete the project

Explanation:

All given terms are related to the process of writing an essay/research. If we want to write an essay of any kind correctly, we need to be familiar with these terms and acknowledge them. If we do not, we may end up in legal trouble because incorrect citation leads to plagiarism, which can be treated as a crime in some cases.

English
Step-by-step answer
P Answered by PhD

Answer:

Cite web postings as you would a standard web entry. Provide the author of the work, the title of the posting in quotation marks, the web site name in italics, the publisher, and the posting date. Follow with the date of access.

Step-by-step explanation:

I think D is the answer

Schooler, Ivan. &quot;Medical Innovations.&quot; MedNow. The Medical Group,
8 Mar. 2012. Web. 2 Nov. 2012.

English
Step-by-step answer
P Answered by PhD

college athletes should not get paid to play because its an extra-curricular activity, like marching band.

Ответ

Wikipedia might not be your best option because the information can come from anyone.

Ответ

this sentence is a run on. it should be, the truck driver backed his vehicle between two building. the truck driver did not have an inch to spare.

Ответ

Chicago is not a state, the capital of illinois would be springfield.

English
Step-by-step answer
P Answered by PhD

college athletes should not get paid to play because its an extra-curricular activity, like marching band.

Ответ

Wikipedia might not be your best option because the information can come from anyone.

Ответ

this sentence is a run on. it should be, the truck driver backed his vehicle between two building. the truck driver did not have an inch to spare.

Ответ

Chicago is not a state, the capital of illinois would be springfield.

History
Step-by-step answer
P Answered by PhD

Explanation:

A. In citing cases, the unofficial cite should precede the official cite. - FALSE.

b. When citing to the United States Code, all three publications (i.e., U.S.C., U.S.C.A.and U.S.C.S.) must be set forth. - FALSE.

c. In citing persons who are parties to litigation, cite the person's last name only. - TRUE.

d. All federal court opinions have parallel cites. - TRUE

English
Step-by-step answer
P Answered by Specialist
1: Any source you read, skimmed, or even considered while you were researching, regardless of whether you used it in the final paper or not, is listed in the Works Cited page.

2. False

3.Last name, first name. “Title of the article.” Title of the larger work. Volume, Issue, Year, Publisher, Publisher Date, Location, Page numbers.
English
Step-by-step answer
P Answered by Specialist
1: Any source you read, skimmed, or even considered while you were researching, regardless of whether you used it in the final paper or not, is listed in the Works Cited page.

2. False

3.Last name, first name. “Title of the article.” Title of the larger work. Volume, Issue, Year, Publisher, Publisher Date, Location, Page numbers.

Try asking the Studen AI a question.

It will provide an instant answer!

FREE