What is land? Explain its features​

Answers

Answer 1

Answer:

Odd question but okay....

Explanation:

Earth's surface, also known as "Land", has very many biotic(animals) and abiotic factors (plants). There are also a wide variety of land features such as mountain, plains, Hills, etc..

Within these features are small - Large ecosystems we're plants and animals thrive to create a bigger and stronger wildlife.

"Land" is a very simple word that stands for all of the different plants, mammals, ecosystems, aquatic animals and many more ways of life on Land.

I hope this helps...


Related Questions

I'm giving one hundred points, and marking brainliest for the answer that helps! I cant do python, please write the correct code for all these problems, if you know python:
8. Calculate compound interest using following formula
A = P (1 + r/n) (nt)
where P =5000
r= 5%
n=12
t=10

9. Write a program to calculate an individual's gross pay.
Gross pay equals hourly pay rate times number of hours worked.

10. Write a program to swap the values of two variables.
For example: If variable a = 40 , b = 50 but after swapping the values will interchange a will become 50 and b will become 40

Answers

Sorry, but I can’t understand this...

The diagonal of a tv set is inches long. Its length is inches more than the height. Find the dimensions of the tv set.

Answers

The diagonal length of  tv set a screen surface is measured from one corner to the other corner (bottom left to top right or top left to bottom right).

Does the diagonal length of a television determine its size?

The diagonal measurement of a television determines its size. The width to height ratio of a screen is known as its aspect ratio. An ordinary TV screen has a 4:3 aspect ratio.

How many inches does a TV have?

Today's televisions come in a variety of sizes and shapes. The most popular TV sizes are 32", 43", 55", and 65", and 75" and 85" models have been steadily on the rise lately.

To know more about diagonal length visit :-

https://brainly.com/question/1109722

#SPJ1

We can sell the Acrobat Reader software to the other users”. Do you agree with this statement? Justify your answer.

Answers

No, as a User, one CANOT sell Acrobat Reader software to the other users.

What is Adobe Reader?

Acrobat Reader   is a software developed by Adobe and is generally available as a free   PDF viewer.

While individuals can use Acrobat Reader for free,selling the software itself would be in violation of   Adobe's terms of use and licensing agreements.

Therefore, selling Acrobat Reader to other users would not be legally permissible or aligned with Adobe's distribution model.

Learn more about Adobe Reader at:

https://brainly.com/question/12150428

#SPJ1

Integer numElements is read from input. Then, numElements strings are read and stored in vector aprTopPicks, and numElements strings are read and stored in vector novTopPicks. Perform the following tasks:

If aprTopPicks is equal to novTopPicks, output "November's top picks are the same as April's top picks." Otherwise, output "November's top picks are not the same as April's top picks."

Assign novBackup as a copy of novTopPicks.

Ex: If the input is 2 brick gold red green, then the output is:

April's top picks: brick gold
November's top picks: red green
November's top picks are not the same as April's top picks.
November's backup: red green
in c++

Answers

Answer:

#include <iostream>

#include <vector>

#include <algorithm>

int main() {

   int numElements;

   std::cin >> numElements;

   std::vector<std::string> aprTopPicks(numElements);

   for (int i = 0; i < numElements; i++) {

       std::cin >> aprTopPicks[i];

   }

   std::vector<std::string> novTopPicks(numElements);

   for (int i = 0; i < numElements; i++) {

       std::cin >> novTopPicks[i];

   }

   if (aprTopPicks == novTopPicks) {

       std::cout << "November's top picks are the same as April's top picks." << std::endl;

   } else {

       std::cout << "November's top picks are not the same as April's top picks." << std::endl;

   }    

   std::vector<std::string> novBackup(numElements);

   std::copy(novTopPicks.begin(), novTopPicks.end(), novBackup.begin());  

   std::cout << "April's top picks: ";

   for (int i = 0; i < numElements; i++) {

       std::cout << aprTopPicks[i] << " ";

   }

   std::cout << std::endl;

   std::cout << "November's top picks: ";

   for (int i = 0; i < numElements; i++) {

       std::cout << novTopPicks[i] << " ";

   }

   std::cout << std::endl;    

   std::cout << "November's top picks are ";

   if (aprTopPicks == novTopPicks) {

       std::cout << "the same as ";

   } else {

       std::cout << "not the same as ";

   }

   std::cout << "April's top picks." << std::endl;

   std::cout << "November's backup: ";

   for (int i = 0; i < numElements; i++) {

       std::cout << novBackup[i] << " ";

   }

   std::cout << std::endl;

   return 0;

}

Explanation:

Answer:

c++

Explanation:

Trong mạng internet, chúng tôi thay đổi công nghệ mạng LAN sang một công nghệ
mới. Những lớp nào trong bộ giao thức TCP / IP cần được thay đổi?

Answers

Answer

Explanation:

The nth Fibonacci number Fn is defined as follows: F0 = 1, F1 = 1 and Fn = Fn−1 + Fn−2 for n > 1.
In other words, each number is the sum of the two previous numbers in the sequence. Thus the first several Fibonacci numbers are 1, 1, 2, 3, 5, and 8. Interestingly, certain population growth rates are characterized by the Fibonacci numbers. If a population has no deaths, then the series gives the size of the poulation after each time period.
Assume that a population of green crud grows at a rate described by the Fibonacci numbers and has a time period of 5 days. Hence, if a green crud population starts out as 10 pounds of crud, then after 5 days, there is still 10 pounds of crud; in 10 days, there is 20 pounds of crud; in 15 days, 30 pounds of crud; in 20 days, 50 pounds of crud, and so on.

Write a program that takes both the initial size of a green crud population (in pounds) and some number of days as input from the keyboard, and computes from that information the size of the population (in pounds) after the specified number of days. Assume that the population size is the same for four days and then increases every fifth day. The program must allow the user to repeat this calculation as long as desired.
Please note that zero is a valid number of days for the crud to grow in which case it would remain at its initial value.
You should make good use of functions to make your code easy to read. Please use at least one user-defined function (besides the clearKeyboardBuffer function) to write your program.

basically I've done all the steps required except the equation in how to get the final population after a certain period of time (days). if someone would help me with this, I'll really appreciate it.

Answers

In Python, it can be expressed as follows. Using the recursive function type, we find the sum of the previous term and the sum of the two previous terms.

Python:

x=int(input("Initial size: "))

y=int(input("Enter days: "))

mod=int(y/5)-1

def calc(n):

   gen_term = [x,2*x]

   for i in range(2, n+1):

       gen_term.append(gen_term[i-1] + gen_term[i-2])

   return gen_term[n]

if(mod==0):

   print("After",y,"days, the population is",x)

else:

   print("After",y,"days, the population is",calc(mod))

The nth Fibonacci number Fn is defined as follows: F0 = 1, F1 = 1 and Fn = Fn1 + Fn2 for n &gt; 1.In

Dynamic Computer Programs Quick Check (Help pleasee!!)

Which best explains why many organizations want computer programs that are adaptable to different computing platforms? (1 point)

A. maintenance costs are lower across a single platform

B. lower maintenance costs, better user experience, and higher agility

C. not important to most companies

D. able to switch between platforms with no negative impact on user experience

2.why were different devices developed over time?

A. Computing and technical advances

B. To use different software

C. Experiment with new platforms

D. To integrate connectivity in new devices

3. What determines if a program is scalable?

A. Having the ability to be downloaded to different platforms

B. Accessible libraries

C. Memory storage

D. Stability during changes, upgrades, overhauls, and resource reduction

4. What is the difference between a single platform and a dynamic adaptive platform?

A. All programs that make use of the internet devices are dynamic

B. On a single platform, a device only functions in one type of environment like on the cloud or hardware whereas a dynamic adaptive platform can be downloaded from the could or installed on the hardware or accessed remotely via mobile

C. Single and dynamic platforms are the same, so there is no difference

D. Single platforms exclusively make use of networking tools

5. How does the concept “garage collector” affect a programs scalability?

A. The concept of scalability is itself invalid

B. Memory management does not impact scalability

C. The garage collector or (memory management) idea is not a valid concept

D. A good garage collector frees up more memory so programs can transition effortlessly into other platforms

Answers

The answer choice that best explains why many organizations want computer programs that are adaptable to different computing platforms is D. ability to switch between platforms with no negative impact on user experience.

The main reason why different devices were developed over time is A. Computing and technical advances

The answer choice that determines if a program is scalable is D. Stability during changes, upgrades, overhauls, and resource reduction

The difference between a single platform and a dynamic adaptive platform is B. On a single platform, a device only functions in one type of environment like on the cloud or hardware whereas a dynamic adaptive platform can be downloaded from the could or installed on the hardware or accessed remotely via mobile

What is a Computer Program?

This refers to the set of instructions that are given to a computer system to be able to execute specific tasks.

Hence, we can see that the way the concept “garage collector” affects a program's scalability is D. A good garage collector frees up more memory so programs can transition effortlessly into other platforms

Read more about computer programs here:

https://brainly.com/question/23275071

#SPJ1

How have advancements in technology and social media impacted communication and relationships in our society?

Answers

Answer:The advancement of technology has changed how people communicate, giving us brand-new options such as text messaging, email,  and chat rooms,

Explanation:

Answer: the answer will be they allow faster and more efficient communication and can help build relationships.

Explanation:

Print numbers 0, 1, 2, ..., userNum as shown, with each number indented by that number of spaces. For each printed line, print the leading spaces, then the number, and then a newline. Hint: Use i and j as loop variables (initialize i and j explicitly). Note: Avoid any other spaces like spaces after the printed number. Ex: userNum = 3 prints:
0
1
2
3

Print numbers 0, 1, 2, ..., userNum as shown, with each number indented by that number of spaces. For

Answers

Answer:

Here is an example of how you could use Java to print the numbers 0, 1, 2, ..., userNum as shown, with each number indented by that number of spaces:

import java.util.Scanner;

public class NumberIndent {

 public static void main(String[] args) {

   // Create a Scanner object to read input from the user

   Scanner input = new Scanner(System.in);

   // Prompt the user to enter a number

   System.out.print("Enter a number: ");

   int userNum = input.nextInt();

   // Use two loop variables, i and j, to print the numbers

   for (int i = 0; i <= userNum; i++) {

     for (int j = 0; j < i; j++) {

       // Print a space for each iteration of the inner loop

       System.out.print(" ");

     }

     // Print the number after the spaces

     System.out.println(i);

   }

 }

}

Explanation:

This code uses a nested for loop to print the numbers 0, 1, 2, ..., userNum, with each number indented by that number of spaces. The outer loop iterates through the numbers, and the inner loop prints a space for each iteration of the outer loop. Finally, the number is printed after the spaces.

I hope this helps! Let me know if you have any questions.

Problem: Longest Palindromic Substring (Special Characters Allowed)

Write a Python program that finds the longest palindromic substring in a given string, which can contain special characters and spaces. A palindrome is a word, phrase, number, or other sequence of characters that reads the same forward and backward. The program should find and return the longest palindromic substring from the input string, considering special characters and spaces as part of the palindrome. You do not need a "words.csv" as it should use dynamic programming to find the longest palindromic substring within that string.

For example, given the string "babad!b", the program should return "babad!b" as the longest palindromic substring. For the string "c bb d", the program should return " bb " as the longest palindromic substring.

Requirements:

Your program should take a string as input.
Your program should find and return the longest palindromic substring in the input string, considering special characters and spaces as part of the palindrome.
If there are multiple palindromic substrings with the same maximum length, your program should return any one of them.
Your program should be case-sensitive, meaning that "A" and "a" are considered different characters.
You should implement a function called longest_palindrome(string) that takes the input string and returns the longest palindromic substring.
Hint: You can use dynamic programming to solve this problem. Consider a 2D table where each cell (i, j) represents whether the substring from index i to j is a palindrome or not.

Note: This problem requires careful consideration of edge cases and efficient algorithm design. Take your time to think through the solution and test it with various input strings.

Answers

A Python program that finds the longest palindromic substring in a given string, considering special characters and spaces as part of the palindrome is given below.

Code:

def longest_palindrome(string):

   n = len(string)

   table = [[False] * n for _ in range(n)]

   # All substrings of length 1 are palindromes

   for i in range(n):

       table[i][i] = True

   start = 0

   max_length = 1

   # Check for substrings of length 2

   for i in range(n - 1):

       if string[i] == string[i + 1]:

           table[i][i + 1] = True

           start = i

           max_length = 2

   # Check for substrings of length greater than 2

   for length in range(3, n + 1):

       for i in range(n - length + 1):

           j = i + length - 1

           if string[i] == string[j] and table[i + 1][j - 1]:

               table[i][j] = True

               start = i

               max_length = length

   return string[start:start + max_length]

# Example usage

input_string = "babad!b"

result = longest_palindrome(input_string)

print(result)

This program defines the longest_palindrome function that takes an input string and uses a dynamic programming approach to find the longest palindromic substring within that string.

The program creates a 2D table to store whether a substring is a palindrome or not. It starts by marking all substrings of length 1 as palindromes and then checks for substrings of length 2.

Finally, it iterates over substrings of length greater than 2, updating the table accordingly.

The program keeps track of the start index and maximum length of the palindromic substring found so far.

After processing all substrings, it returns the longest palindromic substring using the start index and maximum length.

For more questions on Python program

https://brainly.com/question/30113981

#SPJ8

what is a decryption key?​

Answers

Answer:

A decryption key is a digital information used to recover the plain text from the corresponding ciphertext by decryption.

Sam will be using several chemicals for processing photographic negatives and prints. What must he do before he uses darkroom chemicals?

А.thicken them

В.concentrate them

C.mix them together

D.dilute them

Answers

Answer:

dilute them

Explanation:

Binary Search and Selection Sort Use a binary search to find a value. A binary search first requires a sort. Use a selection sort to organize an array, then find the value using a binary search. Input the array, and a value to find. Output the sorted array and the value if contained in the array. See the test case for the format used.Points 0 out of 1Input
96-14-34-94-88-86-32-34-17-83-4
52-55-16-20-46-81-99-85-23-14-d
22-23-34-45-79-27-81-29-32-50- 54-18-74-41-99-46-89-36-55-95.d 99-93-23-36-92-71-13-36-84-53- 15-95-21-10-73-13-64-41-24-24- 18-82-24-41-26-29-53-60-21-32- 73-97-10-18-88-34-97-66-27-31-d 23-86-69-87-49-59-20-46-16-23- 59
37-11-42-91-29-58-45-94-31-94-Your Output
Enter the value to find:
10-96-15-75-58-70-94-10-88-42-
19-69-49-11-16-68-40-25-43-24-
86-28-37-56-78-34-31-44-16-86- 64-65-67-45-56-21-50-32-69-51-
96-45-80-55-28-78-69-78-62-41- 39-65-56-67-52-48-25-83-87-41-
91-82-64-58-54-52-26-36-40-19-
24-39-92-77-28-53-79-78-96-88-
18-42-96-30-32-73-83-58-21-66- 12-81-79-70-79-59-88-41-52-55-
96 was found-at-indx--14Expected Output
10-10-10-10-11-13-13-14-14-15-
16-16-17-18-20-20-21-21-22-23-
23-23-23-23-24-24-24-26-27-27-
29-29-29-31-31-32-32-32-34-34-
34-34-36-36-36-37-41-41-41-42-
45-45-46-46-46-49-50-52-53-53- 54-55-55-58-59-60-64-66-69-71-
73-73-74-79-80-81-81-82-83-84-
85-86-86-87-88-89-91-92-93-94- 94-94-95-95-96-97-97-99-99-99.Input-the-value to find in the arraye 59 was found-at-indx. 64

Answers

The user is first prompted by the application to enter the array's size and elements. The array is then sorted using selection sort in ascending order.

What is the first stage in a binary search for a target value in an array that has been sorted?

The array's middle member is first put up for comparison against the target value in a binary search. The element's position in the array is returned if the target value matches the element.

Here's an example implementation in C++:

#include <iostream>

using namespace std;

// Function to perform selection sort on array

void selectionSort(int arr[], int n)

{

   for (int i = 0; i < n-1; i++)

   {

       int min_idx = i;

       for (int j = i+1; j < n; j++)

       {

           if (arr[j] < arr[min_idx])

               min_idx = j;

       }

       swap(arr[min_idx], arr[i]);

   }

}

// Function to perform binary search on sorted array

bool binarySearch(int arr[], int n, int val, int &idx)

{

   int left = 0, right = n-1;

   while (left <= right)

   {

       int mid = (left + right) / 2;

       if (arr[mid] == val)

       {

           idx = mid;

           return true;

       }

       else if (arr[mid] < val)

           left = mid + 1;

       else

           right = mid - 1;

   }

   return false;

}

// Function to print array

void printArray(int arr[], int n)

{

   for (int i = 0; i < n; i++)

       cout << arr[i] << " ";

   cout << endl;

}

int main()

{

  // Input the array and value to search

   int n, val;

   cout << "Enter the size of the array: ";

   cin >> n;

   int arr[n];

   cout << "Enter the elements of the array: ";

   for (int i = 0; i < n; i++)

       cin >> arr[i];

   cout << "Enter the value to find: ";

   cin >> val;

// Sort the array using selection sort

   selectionSort(arr, n);

   cout << "Sorted array: ";

   printArray(arr, n);

  // Perform binary search on sorted array

   int idx;

   if (binarySearch(arr, n, val, idx))

       cout << val << " is found at index " << idx << endl;

   else

       cout << val << " is not found in the array." << endl;

   return 0;

}

To know more about array visit:-

https://brainly.com/question/19570024

#SPJ4

How wireless communication might affect the development and implementations of internet of things?​

Answers

If people send a link don’t try them report them!

Transmissions in wireless networks do not allow for collision detection but try to avoid collision. Briefly describe this process and explain why it is termed as unreliable.

Answers

Transmissions in wireless networks do not allow for collision detection but try to avoid collision and also  It is especially crucial for wireless networks since wireless transmitters desensing (turning off) their receivers during packet transmission prevents the option of collision detection using CSMA/CD.

What are the different types of wireless transmission?

Wireless transceivers are unable to send and receive on the same channel simultaneously, hence they are unable to identify collisions. This is because the send power (which is typically around 100mw) and the receive sensitivity have such a huge disparity (commonly around 0.01 to 0.0001mw).

Therefore, Infrared, broadcast radio, cellular radio, microwaves, as well as communications satellites are examples of wireless transmission media that are used in communications. Infrared (IR), which is a wireless transmission medium that uses infrared light waves to transmit signals, was covered previously in the chapter.

Learn more about collision detection  from

https://brainly.com/question/14775265

#SPJ1

why is creating a program important to society?​

Answers

When creating a program it is important because you can organize an institution with this program or help an organization whether it is financial or not.

In that way we can say that Social protection programs guarantee access to food – often expanding what the families themselves already produce – with greater diversity and healthier food. These programs can have positive impacts on maternal and child nutrition, the reduction of child labor and access to education.

See more about program at brainly.com/question/11288081

Most of the devices on the network are connected to least two other nodes or processing
centers. Which type of network topology is being described?

bus

data

mesh

star

Answers

The network topology “mesh” is being described. In terms of computer science, a kind of topology where devices connect to 2+ nodes is called mesh.

In most cases, the word "software" is interchangeable with the word

Answers

Answer:

In most cases, the word "software" is interchangeable with the word "program"

Explanation:

The terms software and program are used interchangeably as they often refer to the same thing in daily usage.

where in system settings can you find which version of Windows is installed on your computer?​

Answers

Answer:

Select the Start button > Settings > System > About . Under Device specifications > System type, see if you're running a 32-bit or 64-bit version of Windows. Under Windows specifications, check which edition and version of Windows your device is running.

Explanation:

brainliest pls

give me the answers to all the tasks

give me the answers to all the tasks

Answers

Task one; Immersion and Interaction are most important for virtual reality to provide a smooth and enjoyable experience for the user

For task two the multiple choice on slide 5 has the answers to the quiz

Which core business etiquette is missing in Jane

Answers

Answer:

As the question does not provide any context about who Jane is and what she has done, I cannot provide a specific answer about which core business etiquette is missing in Jane. However, in general, some of the key core business etiquettes that are important to follow in a professional setting include:

Punctuality: Arriving on time for meetings and appointments is a sign of respect for others and their time.

Professionalism: Maintaining a professional demeanor, dressing appropriately, and using appropriate language and tone of voice are important in projecting a positive image and establishing credibility.

Communication: Effective communication skills such as active listening, clear speaking, and appropriate use of technology are essential for building relationships and achieving business goals.

Respect: Treating others with respect, including acknowledging their opinions and perspectives, is key to building positive relationships and fostering a positive work environment.

Business etiquette: Familiarity with and adherence to appropriate business etiquette, such as proper introductions, handshakes, and business card exchanges, can help establish a positive first impression and build relationships.

It is important to note that specific business etiquettes may vary depending on the cultural and social norms of the particular workplace or industry.

Given string userText on one line and character fourthChar on a second line, change the fourth character of userText to fourthChar.

Ex: If the input is:

cheetah
v

then the output is:

chevtah

Note: Assume the length of string userText is greater than or equal to 4.

Given string userText on one line and character fourthChar on a second line, change the fourth character

Answers

Answer:

# Get the input from the user

userText = input()

fourthChar = input()

# Replace the fourth character of the string with the new character

userText = userText[:3] + fourthChar + userText[4:]

# Print the modified string

print(userText)

Explanation:

This code first gets the input from the user and stores it in the userText and fourthChar variables. It then uses string slicing to replace the fourth character of the string with the new character. Finally, it prints the modified string.

The input string is cheetah, and the fourth character is e. The code replaces this character with the new character v, resulting in the modified string chevtah.

Select the items that can be measured.
capacity
smoothness
nationality
thickness
distance
scent
income

Answers

Answer:

distance

capacity

smoothness

thickness

capacity, smoothness, thickness, distance, income

differentiate between cu and mu​

Answers

Control Unit is 5he part of computer where data is store to CPU.

MU directs the entire computer system to carry out stored programs..

Select the correct answer.
James wants to delete some critical data from the web server. What precautions should he take before doing so?
O A. Run a recovery test to see if the backup is working properly.
OB.
Recover the data he plans to delete.
Check if there are any bugs in the server software.
O C.
O D. Configure the hardware components.

Answers

Answer:

A and C

Explanation:

Trust me Bro

A LinkedIn profile is required to be able to share your work experience and qualifications with potential employers.

True
False

Answers

Answer:

False

Explanation:

A LinkedIn profile is not required.

Which programming language uses objects? C++ ALGOL Pascal BASIC

Answers

Answer:

C++

Explanation:

I am a c++ dev

Answer:

its A

C++

Explanation:

Youre amazing

What is the word to tell excel that you want it to do math

Answers

Are you referring to functions? In a cell you can type "=" and it will allow you to enter a formula to insert math equations involving other cell values.

Write a program to test the class LinkedBag. For example create a bag by asking the user for few names then 1.Put those names in the bag. 2. ask the user for a name and delete it from the bag. 3. ask for a name and check whether it is in the bag or not 4. print all names in the bag.

Answers

Answer:  lolllllllllllllllllllllllllllllllllllllllllllllllllllllllll

What is used to prevent all vlans from going across a trunk?

Answers

If you want to play Valorant with me my name is
Ticklemyguitar and my riot id is 2735
Other Questions
Your goal is to design a new arena for the Expo2020 that is spacious and costeffective for the Expo2020 administrators. Role: You are a financial advisor who has designed optimal infrastructure for your clients all around the world. Your goal is to create a proposal for an administrator at the Expo2020 for a new dazzling arena. Audience: Your audience will be the administrators of the Expo2020 who will need to approve your proposal. They will be concerned with the attributes of the arena that will make the most money. Situation: Dubai Expo2020, explore the power of connections in shaping our world. From organisations to 192 participating nations, you'll be engulfed in unique architecture, culture and inspiring innovations. For the first time in World Expo history, every participating country will have its own pavilion. Enjoy immersive cultural experiences and discover what makes each country unique. Inspiring collective and meaningful action to address the world's most critical challenges and opportunities. As you explore the various districts, you'll see some of the world's most advanced technology in action, what countries are doing to champion sustainability, and experience how the human race can enjoy living in harmony with nature in a high-tech future. As a financial advisor, you have been contacted by the Expo2020 administrators that want to "wow" the world with a new arena for the Expo2020. The arena needs to have between (18000 and (22) 500 seats in total, at least (4)rows, and an appropriate and fair price per seat. Draw a sketch of roughly what your arena would look like. Your design should catch the administrators' attention and be creative. please can someone help me with this please What is the freezing point of a solution that contains 10.0 g of glucose c6h12o6 in 100 g of h2o? Please help.......... Help me ASAP! ANSWER ALL which outcome resulted from military buildups and increasing rivalries among European powers in the early 20th century?A. The collapse of the European alliance system that had maintained a balance of power.B. A growing willingness among European powers to fight one another for for supremacy.C. A decline in nationalism as more national groups became eager to join large empiresD. The rise of absolute monarchies in countries that had previously established a republics Please refer to the picture. 11) (-x - 3) + (3x + 8)i dont understand these How many moles are in 2.8x10^23 atoms of Calcium?a. 6.98 moles Cab. 0.47 moles Cac. 1.1x10^25 moles Cad. 1.7x10^47 moles Ca 1kg is the mass of of water in 4 degree C i got like 4 more left ;) 3/8+1/4 in to simplest form?explain steps A decrease in sensory responsiveness accompanying an unchanging stimulus is called. How will discounts affect the price of the product? your friend has betrayed you. (make regret) A farmer has a rectangular field with an area of 3/4 square mile. The field is 1/2 mile wide. What is the length of the field?A. 2/3B. 1 1/3C. 2 2/3D. 3/8 what was the transcendentalist general attitude towards child labor Astronomers have measured that there is more helium in the universe than can be explained by the fusion in stars over the last 13 billion years. How do they think the extra helium got into the universe HURRY !!! Translate each expression or equation into a verbal phrase.21) 2 (5+t) = 8 Match the base to the corresponding height.Base (b)Height (h)Stuck?Review related articles/videos or use a hint.