I’m pretty sure that the answer is B
Answer:
integer currentPrice
integer lastMonthPrice
integer changeLastMonth
float mortagage
//Reading input
currentPrice = Get next input
lastMonthPrice = Get next input
//Calculating price change
changeLastMonth = currentPrice - lastMonthPrice
//Calculating mortagage
mortagage = (currentPrice * 0.045) / 12
//Printing output
Put "This house is $" to output
Put currentPrice to output
Put "\nThe change is $" to output
Put changeLastMonth to output
Put " since last month." to output
Put "\nThe estimated monthly mortgage is $" to output
Put mortagage to output
Answer:4 should be correct
Explanation:
Business application software programs make it possible to: increase productivity in the office setting.
Please give me Brainless if this help!!
Answer:
Option(B) i.e "Merge sort " is the correct answer to the given question .
Explanation:
The merge sort follow the approach of divide and conquer technique .It means firstly it divided the given array into the sub parts that sub parts are sorted in comparing the first value with the adjacent value and perform selection sorting in them it means we swap the value if necessary. This process will continue until all the elements are checked .
- When the sub parts are arranged then we will combine them and getting the new or original array that is in sorted order.
- When we perform the merge sort the extra memory is used which is drawback of merge sort .
- All the other options are not Splitting the array in two parts and perform sorting so these are incorrect option .