A 4th of July sale at your local truck dealership is adverti…

A 4th of July sale at your local truck dealership is advertising big discounts on pickup trucks. The truck you’ve had your eye on is now listed at $23,000 which is 23% off the original price. What was the original price of the truck? Round your answer to the nearest dollar.

Instructions: Copy the starter code shown below. Open the F…

Instructions: Copy the starter code shown below. Open the Final Exam in Codio. Paste the starter code into the Codio code window. When finished, mark the Codio exam as Complete. Copy the Codio URL and paste it into Canvas. You do not need to add comments. Important Notes – A score of 0 will be given if: Your code does not compile or run, meaning no output is produced. You submit the Codio URL to Canvas before marking the exam as complete in Codio. You use unfamiliar syntax not taught in class. Do not search online for solutions. Starter code: #include using namespace std; bool isEverywhere(int nums[], int size, int value); void insertBeforeFirstEven(int nums[], int & size, int capacity, int value); void printArray(int nums[], int size); int main() { const int CAPACITY = 100; int nums1[CAPACITY] = {1, 2, 1, 3, 1, 4}; int nums2[CAPACITY] = {1, 2, 3, 1, 4}; int nums3[CAPACITY] = {7, 3, 5, 8, 1, 6}; int nums4[CAPACITY] = {7, 3, 5, 1}; int size1 = 6; int size2 = 5; int size3 = 6; int size4 = 4; printArray(nums1, size1); cout

As people are living longer and the world’s population keeps…

As people are living longer and the world’s population keeps increasing, there are more and more people ages 65 or older. Over the last 17 years, the number of people ages 65 or older has been growing exponentially, increasing about 2.7% every year. In 2017, there were approximately 656 million people ages 65 or older. If the trend continues, in what year will the population of people 65 or older surpass 1 billion?

Since 2014 you have paid $466 per month on a one-bedroom apa…

Since 2014 you have paid $466 per month on a one-bedroom apartment in the city of Dayton, Ohio. The landlord may charge the rent relative to changes in the Consumer Price Index (CPI-U). The CPI-U represents the cost of a basket of goods and services in the base-year dollars (1983). The table below shows the index values for the years from 2010-2016 Year Index Number 2010 218.1 2011 224.9 2012 229.6 2013 233.0 2014 236.7 2015 237.0 2016 240.0   The landlord wishes to adjust the rent set in 2014 based on the CPI-U. What would your new monthly rent be in 2016 based on the index? Round your answer to the nearest dollar.