STRINGS Implement a program that reads two strings from the user and merges them into a new string, as the following examples show. The program should then print the resulting string. Examples. string 1 = "ccccc" string 2 = "ggggg" result string 1 = "XYZ" string 2 = "cccccc" result = "XcYcZcccc" = "cgcgcgcgcg" string 1 = "00000000" string 1 = "" string 2 = "TBA" string 2 = "ABC" result = "OTOBOA00000" result = "ABC" Notes. You can assume that no string entered by the user is longer than 100 characters. Define your strings as arrays of characters. However, you must use pointer arithmetic when processing the strings. You are not allowed to to use array notation anywhere other than when defining the strings. • You are not allowed to use the string.h library.

Answers

Answer 1

By avoiding the use of the string.h library and relying on pointer arithmetic, you can develop a program that efficiently merges strings and produces the desired output.

To implement a program that merges two strings into a new string, you can follow these steps:

Define two character arrays to store the input strings. Use pointer arithmetic to manipulate the strings throughout the program.

Read the two input strings from the user. You can use the scanf function to read the strings into the character arrays.

Create a new character array to store the resulting merged string. Allocate enough memory to accommodate the merged string based on the lengths of the input strings.

Iterate through the first string using a while loop and copy each character into the merged string using pointer arithmetic. After copying each character, increment the pointers accordingly.

Repeat the same process for the second string, copying each character into the merged string.

Once both strings are copied into the merged string, append a null character '\0' at the end to mark the end of the string.

Finally, print the merged string using the printf function.

By following these steps, you can implement a program that reads two strings from the user, merges them into a new string, and prints the resulting string.

In the implementation, it's important to use pointer arithmetic instead of array notation when manipulating the strings. This involves using pointers to iterate through the strings and perform operations such as copying characters or incrementing the pointers. By using pointer arithmetic, you can efficiently process the strings without relying on the array notation.

Pointer arithmetic allows you to access individual characters in the strings by manipulating the memory addresses of the characters. This provides flexibility and control when merging the strings, as you can move the pointers to the desired positions and perform the necessary operations. It's important to handle memory allocation properly and ensure that the merged string has enough space to accommodate the combined lengths of the input strings.

By avoiding the use of the string.h library and relying on pointer arithmetic, you can develop a program that efficiently merges strings and produces the desired output. Remember to handle edge cases, such as when one of the strings is empty or when the merged string exceeds the allocated memory.

To learn more about  string.h library click here:

brainly.com/question/15119441

#SPJ11


Related Questions

Falling If the user doesn't do anything, the player sprite should fall. Do This • Find the code comment // FALLING . • Use the counter pattern with the player sprite's velocityy to make the flyer fall. Test your code to make sure that it works. The sprite should fall faster as it goes down the . screen. Toolbox ♡ Workspace World Sprites 1 77 GAME SETUP Drawing Control 2 // create player, target, and obstacles Math Variables 3 var rock = createSprite(109 100) var sprite = createSpritex, 4 rock.scale = 0.5; sprite.setAnimation (label) 5 var player createSprite(200, 100) 1: player.setAnimation "fly_bot"); sprite.x 6​

Answers

sdcyecreat nobody cares because nobody asked nobody likes you I’m just kidding I love you so much have a great day

Grace would like to calculate a field in a Word table and add up values from a list of regional sales data.

Which function should she use?

AVERAGE
MAXIMUM
SUM
IF

Answers

Answer:

she should use sum

Explanation:

cuz sum is the best

Answer:

Sum

Explanation:

edg 2021

During his speech, Mark Antony repeatedly says that Brutus is an honorable man. What effect does it have on you (and his audience) the first time he says it? What effect does it have the last time he says it? Explain.

Answers

The effect that it have on the last time he says it was that He succeeded in turning the Roman people to work against Brutus and the other of the assassins.

What is the speech about?

The speech is said to be one that was made at Antony's funeral and it was said to be an oration over Caesar, whom Brutus has a hand in his death.

Note that “Brutus is tagged to be honorable man” and this is said to be ironic, as Antony is trying to show so that people we see Brutus as ungrateful and treacherous in nature.

Hence, The effect that it have on the last time he says it was that He succeeded in turning the Roman people to work against Brutus and the other of the assassins.

Learn more about Brutus  from

https://brainly.com/question/12227505

#SPJ1

The people who perform jobs and tasks are part of which factor of production?
A.land
B.scarcity
C.capital
D.labor

Answers

the answer is D. Labor

The people who perform jobs and tasks are part of  Labor.

What is Labor?

The procedure by which the placenta and fetus depart the uterus is called labor. Vaginal delivery (via the birth canal) and cesarean delivery (surgery) are the two possible methods of delivery.

Continuous, increasing uterine contractions during labor help the cervix widen and efface (thin out). The fetus can now pass through the birth canal as a result.

Typically, two weeks before or after the anticipated birth date, labor begins. However, it is unknown what precisely starts labor.

Therefore, The people who perform jobs and tasks are part of  Labor.

To learn more about Labor, refer to the link:

https://brainly.com/question/14348614

#SPJ2

In Microsoft Windows 10,

In Microsoft Windows 10,

Answers

Answer: Cancel all Print Jobs

Explanation: Whoever gave you this clearly doesn't know how to themselves cause the exact wording to cancel all print jobs is as follows

"Cancel All Documents". if this was a teacher tell them to read up on their technology skills before they give the next test. I'm currently working on my Master's in computer Programming and have been working with Computers for over 15 years. I could put a better multiple choice quiz together in less than 10 mins. I wonder how long it took this idiot to put that quiz together.

Which type of view is created from the following SQL statement?
CREATE VIEW balancedue
AS SELECT customer#, order#, SUM(quantity*retail) amtdue
FROM customers NATURAL JOIN orders NATURAL JOIN
orderitems NATURAL JOIN books
GROUP BY customer#, order#;
A - simple C - inline
B - complex D - partial

Answers

The following determines what kind of view is produced: A complicated SQL statement.

What does a fundamental SQL statement look like?A successful SQL statement is a set of instructions made up of identifiers, parameters, variables, names, data types, and SQL-reserved words. If a BeginTransaction command does not specify the beginning of a transaction, Analysis Services constructs an implicit transaction for the SQL query. From one or more tables, the SQL SELECT operation returns a result set of records. From one or more database tables or database views, a SELECT statement extracts zero or more rows. SELECT is the most often used data manipulation language command in the majority of applications. While using a database to carry out operations, functions, and queries on data, SQL commands are the instructions used to communicate with the database.

To learn more about SQL statement, refer to:

https://brainly.com/question/29524249

The type of view created from the given SQL statement is B) Complex view.

The statement is as follows: CREATE VIEW balancedue AS SELECT customer#, order#, SUM(quantity*retail) amtdue FROM customers NATURAL JOIN orders NATURAL JOIN orderitems NATURAL JOIN books GROUP BY customer#, order#;

View in SQL is a virtual table whose contents are produced from an SQL query. Views are widely used to handle user access to particular data since they can provide restricted access to the database. The VIEW in SQL works as an image of the SQL queries. A View may be a simple view, a complex view, or a composite view. Balance due view is created from the given SQL statement which contains multiple tables and uses the group by clause. Thus, the correct answer is a complex view.

Learn more about SQL queries visit:

https://brainly.com/question/31077928

#SPJ11

Choose the correct color to complete the sentence.
It is generally understood that
Blank is the best color choice for a global audience.

Answers

Answer:blue is the best color choice for a global audience.

Cuál es la dirección de la última fila y columna de excel

Answers

Answer:

XFD 1,048,576.

Explanation:

Excel es un programa de Microsoft por el cual se generan bases de datos y planillas de cálculo, que permiten al usuario desarrollar registros contables referidos a sus distintas actividades comerciales, laborales o de otra índole, así como también realizar cálculos matemáticos y operaciones lógicas a través de distintas fórmulas. En la actualidad, el programa tiene un máximo de 16.384 columnas y 1.049.576 filas, con lo cual la ultima fila y columna de una hoja de cálculo será XFD 1.048.576.

when windows first starts and the user signs in, a message about a missing dll appears. which tool or method should you use first to solve the problem? second?

Answers

The first tool or method that should be used to solve the problem of a missing DLL message that appears when Windows first starts and the user signs in is to run a System File Checker (SFC) scan. The second tool that can be used is to perform a clean boot and check for the missing DLL error.

The System File Checker (SFC) scan is a built-in Windows tool that scans all the protected system files, restores missing or corrupted system files with a cached copy, and repairs other system issues. This tool can be run from the command prompt or PowerShell with administrative privileges.

If the SFC scan does not solve the problem, a clean boot can be performed to identify if the error is caused by a third-party application or a service. To perform a clean boot, all the startup programs and services are disabled except the Microsoft services, and then the system is restarted to check for the missing DLL error.

You can learn more about DLL message at

https://brainly.com/question/27910177

#SPJ11

Which of the following is an advantage of using variables?

A.It reduces the number of functions that are necessary in the program.
B.It increases the number of values that are used in a program.
C.It erases the default values.
D.It makes it less likely that an error will be introduced into the code.

Answers

Answer:

D. It makes it less likely that an error will be introduced into the code.

Explanation:

Can anyone help with this

Can anyone help with this

Answers

a) Cost: However, HDDs are a lot cheaper. In terms of price for each GB of storage, the SSD is much more costly than the HDD. SSD costs twice as much as HDDs for an identical storage capacity. This means that computers with solid-state drives will be much more expensive than those with traditional hard drives
b) Hard Disk
c) Solid state drives (SSD)

12 POINTS!!!!
Choose the value that best completes each sentence.
There are currently more than four --------internet users regularly connecting around the globe. And less than ------- percent of them live in North America.

Answers

Answer:

1) daily

2)37%

Explanation:

1) regularly implies it

Answer:billion AND 8

Explanation:

correct

Activity 15: enhance an ajax application so it uses an expanded json file the goal of this activity is to modify the json application so it uses an expanded json file. The resulting page should look like this:

Answers

Only supplied the Pham-Activity13.js file. The remaining HTML, JSON, and CSS files were not modified by me. The same folder or directory must include all of your JSON, HTML, and CSS files.

DynamoDB is a fully-managed NoSQL server platform that enables the creation of server tables with unlimited data storage and recovery capabilities. An AWS server platform called DynamoDB encourages software designs and key-priced web resources. DynamoDB can support peaks of over 20 million queries per second and can handle more than 10 billion requests per day.

Learn more about Dynamo here:

https://brainly.com/question/15110162

#SPJ4

What is another solution to IP exhaustion that will create more public IP addresses as it is implemented? multiple choice, shuffle. A.IP masquerading
B.IPv6
C.Port preservation
D.RFC1918

Answers

Another solution to IP exhaustion that will create more public IP addresses as it is implemented is B.IPv6.

IP exhaustion is a situation where the available public IP addresses have been used up and there are no more to assign to new devices or networks. One solution to this problem is the implementation of IPv6, which creates more public IP addresses. IPv6 is the latest version of the Internet Protocol and it uses 128-bit addresses, which allows for a significantly larger number of addresses than the 32-bit addresses used by IPv4. This means that there are more public IP addresses available for use and IP exhaustion is less of a problem.

Learn more about IPv6 here:https://brainly.com/question/28316205

#SPJ11

which of the following do you typically see in a convnet? a. multiple conv layers followed by a pool layer. fc layers in the last few layers. b. multiple pool layers followed by a conv layer. fc layers in the first few layers. c. multiple pool layers followed by a conv layer. fc layers in the last few layers. d. multiple conv layers followed by a pool layer. fc layers in the first few layers.

Answers

A pool layer comes after several conv layers fc layers in the final few levels, several pool layers, and a conv layer beyond that In a convnet, fc layers can be seen in the final few levels.

What is a fc layer?

A high-speed data transfer technology called Fibre Channel (FC) offers lossless, in-order delivery of raw block data. Fibre Channel is largely utilized in storage area networks (SAN) in commercial data centers to link servers and computer data storage.

The switches in a network function together as one large switch in Fiber Channel networks, forming a switched fabric. Although copper cabling can sometimes be used, fiber channel primarily uses optical fiber cables to connect data centers to one another.

Because of advancements in subsequent technological generations, supported data speeds now range from 1, 2, 4, 8, 16, 32, 64, and 128 gigabit per second. This is currently known as Gigabit Fibre Channel in the industry (GFC).

Hence, A pool layer comes after several conv layers fc layers in the final few levels, several pool layers, and a conv layer beyond that In a convnet, fc layers can be seen in the final few levels

To learn more about fiber channel refer to:

https://brainly.com/question/28045778

#SPJ4

mike is sending david an encrypted message using a symmetric encryption algorithm. what key should he use to encrypt the message?

Answers

To encrypt the message using a symmetric encryption algorithm, Mike should use a symmetric key. Symmetric encryption algorithms use the same key for both encryption and decryption. This means that the key used to encrypt the message should also be used by David to decrypt the message.

Symmetric encryption algorithms are fast and efficient because they operate on blocks of data at a time. The key length used in symmetric encryption algorithms varies depending on the algorithm being used. Common key lengths include 128-bit, 192-bit, and 256-bit.

When selecting a key for symmetric encryption, it is important to use a strong and secure key. A strong key should have a high level of randomness and should be kept confidential. It is also recommended to periodically change the key to enhance security.

In summary, Mike should use a symmetric key to encrypt the message. The key should be strong, secure, and shared with David so that he can decrypt the message using the same key.

Learn more about encryption algorithm

https://brainly.com/question/31718006?

#SPJ11

Why we need to learn ict?

Answers

Answer:

Explanation:  ICT stands for information and communication technology . As we know we are living in a world which is digital and with the passage of time it is going to get more digitalized , so there is demand of people who have computational skills.

we need to learn ICT cause it helps us to be smart .ICT helps in achieving a good knowledge of technology and make us future and job ready .

ICT tools help to get our education system digitalized and help to build an interactive environment for students

Serial loading into a register is faster than parallel loading.
-True/False

Answers

False.

Parallel loading is faster than serial loading. In parallel loading, multiple bits or the entire data word are loaded simultaneously into a register. This takes advantage of parallelism and allows for a faster loading process. Each bit or data element is loaded in parallel, reducing the overall loading time. On the other hand, serial loading involves loading data bit by bit or sequentially, one after another. This sequential process takes more time as each bit needs to be loaded individually, leading to a slower loading speed compared to parallel loading.

Learn more about loading techniques here:

https://brainly.com/question/32322121

#SPJ11

why hand tools are important in repairing personal computer?​

Answers

Answer:

Using the appropriate tools helps ensure that computer components are not damaged during cleaning.

Explanation:

If you don't use the right hand tools, you could easily damage or scratch computer components that are vital to run the computer.

Answer:

Because the parts of the computer are at the micro level, repairing them is a very important job. That's why these tiny tools are used in the repair of computers.

Explanation:

If It was helpful, can you make me brainliest please?

Find and enter the correct amount. 5 9 of a $18 restaurant bill = $

Answers

Answer:

Calculate a tip or gratuity and get the total amount to pay. Enter your meal or dinner cost along with the tip percentage.  If you are splitting the cost at a restaurant among several people you can divide by the number of people to get the total cost each.  Optionally round the results to dollars.

BRAINLIEST PLEASE

Tip = Cost * 0.xx

Total including Tip = Cost * 1.xx Explanation:

Ava, a system administrator, configures 45 remote access clients to use the VPN server in the organization using the SSTP protocol. On any day, the number of users that work remotely does not exceed 15, so AVA configures the SSTP VPN protocol for 25 connections on the server. One day, owing to extreme weather, many employees are asked to work from home. When more than 25 users try to connect to the organization's servers, they are not allowed access. Ava uses the Routing and Remote Access tool to increase the number of connections for the SSTP protocol to 45. When she asks these additional users to confirm if they have received access, the users tell her that they are unable to connect to the organization's servers.



Required:


If some or all of these users were able to remotely connect on a previous occasion, what is the most likely issue in this scenario?

Answers

After the most recent updates, the remote access server was not rebooted, the most likely problem in this circumstance if some or all of these users were able to remotely connect in the past.

Rebooting is the act of purposefully or unintentionally restarting a previously operational computer system. Warm reboots, in which the system restarts while still powered on, and cold reboots, in which the power to the system is physically turned off and back on, are the two types of reboots. The reboot is known as a restart when the operating system closes all running programmes and completes all pending input and output tasks before beginning a soft reboot. Early electrical computers lacked an operating system and had limited internal memory. The input was often a Switch Register or a stack of punch cards. On systems using cards, turning on the computer was accomplished by pressing a start button, which issued a single command.

Learn more about rebooted from

brainly.com/question/13869329

#SPJ4

With bluetooth printing, the computer and printer need to be within an approximate ______-foot range.

Answers

     The wireless technology used by Bluetooth printers can be set up to work with iOS, Android, and Windows devices. These systems use 2.4GHz low-power radio waves to convey data.

What does the term "wireless printer" mean?

     Wireless printers, also referred to as WiFi printers, may connect to a network without the need for a hard connection or cable. The laptops, cellphones, and tablets linked to a WiFi network can print to a wireless printer once it has been connected to the network.

     Is a Bluetooth printer available?  Inkjets, lasers, and even multifunction devices that print, scan, and copy are all options. A Bluetooth printer is the best option if you want a printer that can go anywhere you do and work with your laptop or other mobile devices.

      If the network is congested, if there is network interference, or if the signal strength is weak, Wi-Fi printers may experience lengthy print times and print problems. With Bluetooth, printing is rapid and interference-free.

     The two most common types of wireless printers are Bluetooth and Wi-Fi. Although Bluetooth is easy to set up and use, it is best suited for small offices with a small number of users. Wi-Fi can accommodate more users across a wider area, but it requires more time to set up.

To Learn more About Bluetooth printer, Refer:

https://brainly.com/question/27408724

#SPJ1

Analogy
Frugality: Stingy
1. Warmth; generous
2. Resolution; whimsical
3. Reflection; thoughtful
4. Pride; haughty
5. Jauntiness; morose

Answers

The analogy presented is "Frugality: Stingy." Frugality refers to the quality of being economical or sparing in the use of resources, especially money.

It implies a conscious effort to avoid waste and unnecessary expenses. The word "stingy" describes someone who is unwilling to spend money or resources, often being excessively cautious or tight-fisted.

To determine the correct answer, we need to identify a word pair that exhibits a similar relationship to the given analogy. Among the options provided, the most suitable choice is:

Warmth; generous

This option presents a similar relationship to the original analogy. "Warmth" can be associated with being generous, indicating a willingness to share and provide comfort or assistance to others. This aligns with the idea of frugality, as someone who is frugal may still be generous and warm-hearted.

The other options do not exhibit the same relationship as frugality and stingy. "Resolution; whimsical," "Reflection; thoughtful," "Pride; haughty," and "Jauntiness; morose" do not capture the concept of being economical or sparing in the use of resources.

Therefore, option 1, "Warmth; generous," is the correct answer as it reflects a comparable relationship to the analogy "Frugality: Stingy."

For more questions on analogy

https://brainly.com/question/24452889

#SPJ11

T/F: to toggle between navigation mode and editing mode press the f2 keyboard shortcut.

Answers

The statement that pressing the F2 keyboard shortcut toggles between navigation mode and editing mode is false.

The F2 key is primarily used for renaming files or folders in Windows Explorer. To toggle between navigation mode and editing mode, different software applications might have different keyboard shortcuts. In general, navigation mode refers to the state in which the user can move around the document or application using the arrow keys or other navigation tools, but cannot edit the content. Editing mode, on the other hand, allows the user to modify or create content by typing or using other input methods.
For example, in Microsoft Word, pressing the F2 key will open the Editing mode, allowing the user to edit the current document. To toggle back to Navigation mode, the user can press the Esc key or use the arrow keys to move to a different part of the document. In Adobe Photoshop, pressing the Tab key will toggle between the Standard mode and the Full Screen mode, which could be considered navigation and editing modes, respectively.

In summary, while the F2 keyboard shortcut may be useful for renaming files, it is not typically used to toggle between navigation and editing modes in most software applications. Each program may have its own set of keyboard shortcuts or menu options for switching between these modes.

To learn more about toggles:

https://brainly.com/question/30638140

#SPJ11

Write a program in the if statement that sets the variable hours to 10 when the flag variable minimum is set.

Answers

Answer:

I am using normally using conditions it will suit for all programming language

Explanation:

if(minimum){

hours=10

}

Aidan is an experienced graphic artist who recently began coding for a software company. Aidan is fully involved in various online communities and has been for many years. Based on this information, how would Aidan BEST be described?

Answers

Based on this information, Aidan will BEST be described as a versatile individual.

How to explain the information

Aidan can be summarized as a highly capable person who has involvement in both graphic designing and programming, along with participation within different online societies. This alludes that he is tech-acute, knowledgeable in creativity, and has the assurance to seamlessly transition into brand-new circumstances and commitments.

Furthermore, participation inside electronic corporations reveals Aidan to be amiable, cooperative, and enthusiastic about discovering fresh perspectives, facts, and theories with peers.

Learn more about information on

https://brainly.com/question/4231278

#SPJ1

8.3.7: Exclamat!on Po!nts
Write the function exclamation that takes a string and then returns the same string with every lowercase i replaced with an exclamation point. Your function should:

Convert the initial string to a list
Use a for loop to go through your list element by element
Whenever you see a lowercase i, replace it with an exclamation point in the list
Return the stringified version of the list when your for loop is finished
Here’s what an example run of your program might look like:

exclamation("I like music.")
# => I l!ke mus!c.

Answers

The function is an illustration of loops.

Loop instructions are used to repeat operations

The function in Python, where comments are used to explain each line is as follows:

#This defines the function

def exclamation(myStr):

   #This iterates through the string

   for i in range(len(myStr)):

       #This checks if the current character of the string is "i"

       if myStr[i] == "i":

           #If yes, this converts the string to a list

           s = list(myStr)

           #This replaces i with !

           s[i] = '!'

           #This gets the updated string

           myStr = "".join(s)

   #This returns the new string

   return myStr

       

Read more about similar programs at:

https://brainly.com/question/22444309

How does 2022 rogue sport’s sport steering mode produce a sportier steering feel?.

Answers

Answer:

آمل أن يساعد هذا  Sport Mode For the open road, select Sport Mode for livelier engine response and sportier steering. When the road gets twisty, put the transmission in manual mode, and flick the paddle shifters like you're driving a sports coupe.

Explanation:

67.185.94.80

24) By definition, a DSS must include ________.
A) business intelligence
B) an expert system
C) an animation system
D) a user interface

Answers

By definition, a DSS must include a d) user interface.

The user interface is a crucial component of a DSS, as it facilitates interaction between the system and its users, enabling them to input data, manipulate the system, and view the generated results.

While a DSS may also incorporate elements of business intelligence (A), expert systems (B), and even animation systems (C), these are not required by definition. Business intelligence refers to the use of data analysis and visualization tools that can help inform decision-making. An expert system is a type of artificial intelligence that emulates the decision-making abilities of a human expert. Animation systems may be used to create visual representations of data or processes.

Other components, such as business intelligence, expert systems, and animation systems, can enhance a DSS's functionality, but they are not mandatory by definition.

Therefore, the correct answer is d) a user interface.

Learn more about user interface here: https://brainly.com/question/29541505

#SPJ11

Which string method returns true if the character is a lowercase letter?
letter = input("Enter a letter: ")
Oletter.isLower()
O letter.islower()
O isLower(letter)
O islower(letter)

Answers

Answer:

Option 2, letter.islower() is correct

Explanation:

letter.islower() returns true when the string "letter" is lowercase.

Answer:

C

Explanation:

Other Questions
Sur Amrica Parte 2: La Geografa (South America Part 2: The Geography)Use the word bank to complete the descriptions below.__________________________________________________________________Amazon Great Water OceansAndes Mountains Iguaz Falls SeaAtacama Desert Lake Titicaca Tierra del FuegoEcuador marine iguana VinicuncaGalapagos Islands_________________________________________________________________1. Oceans and Seas: Sur Amrica is bordered by the Atlantic and Pacific _________________, as well asthe Caribbean ____________________.2. __________________________________________________: The worlds highest lake, on the border of Peruand Bolivia, inhabited by the Uru, a tribe that lives on floating islands made of papyrus.3. __________________________________________________: The Earths driest and oldest desert, withinteresting geographical features and a network of space telescopes and observatories.4. Amazon Rainforest: Home of the __________________________ River and millions of species of plants,insects, and animals.5. __________________________________________________: A group of islands belonging to Ecuador that ishome to many unique subspecies plants and animals, including the giant tortoise,___________________________________________, and giant daisy trees.6. __________________________________________________: A group of islands at the southern point of SurAmrica known for its beautiful mountains, lakes, and glaciers.7. Equator: The Equator is the widest point in Earths diameter and runs through the countries of____________________, Colombia, and Brasil where it crosses Sur Amrica.8. ________________________________________________: The name of this impressive waterfall on the borderof Argentina and Brasil means ______________________________________ in the Guaran language.9. __________________________________________________: This mountain in Per is known for being vibrantlycolored due to its mineral makeup and weathering patterns, and is also called RainbowMountain because of its many colors.10.__________________________________________________: This is the longest mountain range in the world,and is home to more than 50 volcanos, impressive glaciers, and the ruins of native civilizations.PLEASE HELP ME The sum of a number and two is equal to negative seven. Translate this sentence to an equation and then find the number.59-9-5 Which of the following is a regionthat shares a common government?A. CapitalB. EmpireC. State A laptop has a listed price of $711.99 before tax. If the sales tax rate is 6.75%, find the total cost of the laptop with sales tax included.Round your answer to the nearest cent, as necessary. Convert 6 4/5 into improper fractions. 32/632/533/536/5 a corporation and in the final States for filing statements to issue their stock to investors this stock issue was closely monitored by the blank the ________ explores how people's assumptions and expectations influence their perceptions. Solve each inequality.1. 10x (-6)2. t 2 > 03. -12m -724. 324 < -2t5. 0.5 y 86. -7z > 21 Two angles are supplementary one angle is 2/3 the measure of the other one find both angles Define a function PrintValue() that takes two integer parameters and outputs the product of all integers starting with the first and ending with the second parameter, followed by a newline. The function does not return any value Exif the input is 3 5, then the output is 60 Note: Assume the first integer parameter is less than the second 1#include 2 using namespace std; 2 4 Y Your code goes here 5 6 int main() 7 Int number int numbers 0 10 cin >> number: 11 cin >> number 12 Print Value (number, numbers): 13 14 return 11 can whoever read this answer this with these letters uhjt getting extremely upset when a parent gets a new pair of glasses represents: group of answer choices self-stimulatory behavior. avolition. rigid and repetitive behavior. lack of responsiveness. Suppose you deposit $2,000 in a savings account that pays interest at an annual rate of 5% if no money is added or withdrawn from the account, how much will be in the account after 4 years? PLEASEEEE HELP URGENTT PLEASE quizlet which of the following statements describe the function of a trusted platform module (tpm)? Please talk about how ethical issues in corporate America led to the 2008 financial crisis and subsequent recession in the United States give examples from corporate ethical actions). b.What ethical factors, in your opinion, serve as crucial benchmarks to support sound corporate decision-making in the current, ongoing COVID-19 situation, which is posing an unprecedented public health catastrophe and has led to the shutdown of a sizeable portion of the economy? If A ls to the left of B on a number line, which of the following must be true?. B How is the Sole Trading business financed? How do the functions of the skeletal and muscular system differ? Who Invented the Automobile?A. Henry FordB. Carl BenzC. Eugene Stoner