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
Dmitry_Shevchenko [17]
4 years ago
11

Identify which parts of the sentence belong in the "noun" column and which belong in the "not a noun" column.

SAT
1 answer:
ANEK [815]4 years ago
3 0

Answer:

   N                             N

<u>Owls</u> nested in the <u>barn</u>.

Explanation:

You might be interested in
How does the amount, or magnitude, of charge on an object affect its attraction or repulsion of another object?
lubasha [3.4K]
The magnitude of an object's charge can either increase or decrease the attraction/ repulsion between another object. The larger the difference of the two object's charges, the stronger opposite charges attract, and the stronger like charges repel.
5 0
4 years ago
the reduction of carbon dioxide emissions poses few threats to sustaining economic growth in developing countries.
Oksi-84 [34.3K]

It is false that the reduction of carbon dioxide emissions poses few threats to sustaining economic growth in developing countries.

Given that the reduction of carbon dioxide emissions poses few threats to sustaining economic growth in developing countries.

We are required to say whether the statement is true or false.

Economic growth basically defined as the increase or improvement in the inflation-adjusted market value of the goods and services produced by an economy over a certain period of time.

The reduction of carbon dioxide emissions does not poses threats but benefits our country and in result lead to increase in economic growth of the countries.

Hence it is false that the reduction of carbon dioxide emissions poses few threats to sustaining economic growth in developing countries.

Learn more about economic growth at brainly.com/question/1690575

#SPJ4

3 0
2 years ago
Which are steps that could be used to solve 0 = 9(x2 6x) – 18 by completing the square? Check all that apply. 18 81 = 9(x2 6x 9)
Marina CMI [18]

Answer:

18 + 81 = 9(x² + 6x + 9) 11 = (x + 3)²

Explanation:

because  This is the value that completes the square. However, since the entire square is multiplied by 9, this value must be multiplied by 9 before we can add it across the equals:

18 + 9 (9) = 9 (x² + 6x + 9)

18 + 81 = 9 (x² + 6x + 9)

99 = 9 (x² + 6x + 9)

Dividing both sides by 9, we have:

11 = x² + 6x + 9

11 = (x + 3) ²

4 0
3 years ago
1. The electric field at the point of charge!
Tju [1.3M]

Answer:so what is your question

Explanation:

6 0
3 years ago
Once you have your heap structure created, next you must use it as a backing structure to a priority queue. Develop a PriorityQu
saveliy_v [14]

Using the knowledge in computational language in python it is possible to write a code that Develop a PriorityQueue data structure in a file.

<h3>Writting the code in python:</h3>

<em>import sys</em>

<em>class Node:</em>

<em>def __init__(self,key):</em>

<em>self.left = None</em>

<em>self.right = None</em>

<em>self.val = key</em>

<em>self.parent = None</em>

<em>class MinHeap:</em>

<em>def __init__(self, maxsize):</em>

<em>self.maxsize = maxsize</em>

<em>self.size = 0</em>

<em>self.Heap = Node(-1 * sys.maxsize )</em>

<em>self.FRONT = self.Heap</em>

<em># A utility function to do inorder tree traversal</em>

<em>def isLeaf(self, node):</em>

<em>if node.left == None and node.right == Node:</em>

<em>return True</em>

<em>return False</em>

<em># Function to swap two nodes of the heap</em>

<em>def swap(self, node1, node2):</em>

<em>node1.data, node2.data = node2.data, node1.data</em>

<em># Function to heapify the node at pos</em>

<em>def minHeapify(self, node):</em>

<em># If the node is a non-leaf node and greater</em>

<em># than any of its child</em>

<em>if not self.isLeaf(node):</em>

<em>if (node.data > node.left.data or</em>

<em>node.data > node.right.data):</em>

<em># Swap with the left child and heapify</em>

<em># the left child</em>

<em>if node.left.data < node.right.data:</em>

<em>self.swap(node, node.left)</em>

<em>self.minHeapify(node.left)</em>

<em># Swap with the right child and heapify</em>

<em># the right child</em>

<em>else:</em>

<em>self.swap(node, node.right)</em>

<em>self.minHeapify(node.right)</em>

<em># Function to insert a node into the heap</em>

<em>def insert(self, element):</em>

<em>if self.size >= self.maxsize :</em>

<em>return</em>

<em>self.size+= 1</em>

<em>self.bst_insert(FRONT, element)</em>

<em>current = FRONT</em>

<em>while current.parent != None and current.data < current.parent.data:</em>

<em>self.swap(current, current.parent)</em>

<em>current = current.parent</em>

<em># Function to print the contents of the heap</em>

<em>def Print(self):</em>

<em>self.inorder()</em>

<em># Function to build the min heap using</em>

<em># the minHeapify function</em>

<em>def inorder(self, root):</em>

<em>if root:</em>

<em>inorder(root.left)</em>

<em>print(root.val)</em>

<em>inorder(root.right)</em>

<em>def bst_insert(self, root, node):</em>

<em>if root is None:</em>

<em>root = node</em>

<em>else:</em>

<em>root.next = node</em>

<em>self.FRONT = node</em>

<em># Driver Code</em>

<em>if __name__ == "__main__":</em>

<em>r = Node(50)</em>

<em>bst_insert(r,Node(30))</em>

<em>bst_insert(r,Node(20))</em>

<em>bst_insert(r,Node(40))</em>

<em>bst_insert(r,Node(70))</em>

<em>bst_insert(r,Node(60))</em>

<em>bst_insert(r,Node(80))</em>

<em># Print inoder traversal of the BST</em>

<em>inorder(r)</em>

<em>print('The minHeap is ')</em>

<em>minHeap = MinHeap(15)</em>

<em>minHeap.insert(5)</em>

<em>minHeap.insert(3)</em>

<em>minHeap.insert(17)</em>

<em>minHeap.insert(10)</em>

<em>minHeap.insert(84)</em>

<em>minHeap.insert(19)</em>

<em>minHeap.insert(6)</em>

<em>minHeap.insert(22)</em>

<em>minHeap.insert(9)</em>

<em>minHeap.minHeap()</em>

<em>minHeap.Print()</em>

<em>print("The Min val is " + str(minHeap.remove()))</em>

See more about python at brainly.com/question/13437928

#SPJ1

6 0
2 years ago
Other questions:
  • An accountant reviews a business’s utility bills over the past year.
    11·1 answer
  • Of the following Who is most likely to become ill
    5·2 answers
  • Free 100 points whos you favorite NFL team and player
    14·2 answers
  • so my grades in middle school weren't good i had some d' c' e' but overall most of my grades were good does that affect my futur
    14·2 answers
  • Discuss religiou challenges faced by Budhists in Kenya today<br>​
    6·1 answer
  • GPA Scale:
    8·1 answer
  • The density of solid aluminum is 2. 70 g/cm3. If a 1g piece of aluminum is dropped in a cup of water, what will happen to the al
    6·1 answer
  • Which is the best inference from the author's statement that world war ii ""ended the great depression""? the best inference fro
    7·1 answer
  • Using good judgment and making decisions are examples of which career skill?.
    10·1 answer
  • which strategies did benjamin lee and his family use to assimilate? they stopped speaking chinese. they stopped talking about th
    11·2 answers
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!