Answer:
Explanation:
The algorithm can be described as follows
The first process is to ensure that the constraints for the time at which the offers begin is well defined.
TIME1 = 14:00
TIME2 = 16:00
TIME3 = 18:00
Then, decide the final number of meal following the free meal that has been offered.
NUMBER_OF_MEALS=4;
Then; decide the prices attached to the meal at regular times.
PRICE = 200;
At regular mode, decide the prices attached to the meal and as well as when the offer time commences.
PRICE_OFFER = 160;
Then ask the client(i.e the user) to put in the value required for the number of meals they desire to order.
Input values in n
Suppose (the value exceeds 8)
Then proceed to enquire from the client if they wish to go for the offer.
If not, use the regular price for the order.
Assume the client asks if the offer is a good one to bid for.
You are to show then the analysis of the calculation.
regular = 8 × PRICE
offer = 8 × PRICE_OFFER
profit = regular - offer
Finally, show the profit to the client which will let them know if it is good to bid for it or not.
Answer:
B. Monitor backlighting
Explanation:
The computer system is a machine that can digitally receive input, process the inputted data and display and save results. The computer system is a physical system driven by a software component.
The computer hardware components are classified as input unit or devices, output unit, memory and storage unit, and processing unit. The screen is an output unit of the computer system, it displays the output or result of the processed data.
The power supply to the screen, in this context, is not faulty due to the other screen used in testing the supply and input connectors. The back light on the screen has failed and that is why the brightness can not be adjusted.
First, check that your drivers are up to date. The lag could be caused by outdated drivers that are essential in running your system smoothly. New updates will fix bugs, known errors and will make programs work better and faster. Next, run your anti-virus software to check if malware, spyware, and adware that could be putting your computer at risk by installing hidden files, downloading stuff from the internet and uploading sensitive information from your computer. These unauthorized activities could be eating up your RAM in the background without you knowing and thus making your computer run slowly.
Answer:
i think digital signals
Explanation:
A digital signal is a signal that is being used to represent data as a sequence of discrete values; at any given time it can only take on one of a finite number of values.[1][2][3] This contrasts with an analog signal, which represents continuous values; at any given time it represents a real number within a continuous range of values.
Answer:
The code is given in C++ below
Explanation:
#include <iostream>
using namespace std;
int main()
{
float fv,pv,r,k,n,pmt,totalmoneyinvested;
pv=1000.00;
r=6/100;
k=12; //The value of k should be 12 for monthly installments
n=45;
pmt=250;
totalmoneyinvested=pv+(pmt*12*45); //The total money you invested
fv=pv*(1+r/k)*n*k+pmt*((1+r/k)*n*k-1)*(1+r/k)*r/k;
cout<<"Initial Investment:"<<" $"<<pv;
cout<<"\nRate Of Return:6%";
cout<<"\nLength of Time:"<<n<<"year";
cout<<"\nMonthly Payment:"<<" $"<<pmt;
cout<<"\nFinal Amount:"<<" $"<<fv;
cout<<"\nThe Money You Invested Is $"<<totalmoneyinvested<<" And The Final Amount Is $"<<fv;
return 0;
}