Explanation:
<em>The</em><em> </em><em>POS</em><em> </em><em>serves</em><em> </em><em>as</em><em> </em><em>the</em><em> </em><em>central</em><em> </em><em>component</em><em> </em><em>for</em><em> </em><em>your</em><em> </em><em>business</em><em>;</em><em> </em><em>it's</em><em> </em><em>the</em><em> </em><em>hub</em><em> </em><em>where</em><em> </em><em>everything</em><em> </em><em>like</em><em> </em><em>sales</em><em>,</em><em> </em><em>inventory</em><em> </em><em>management</em><em> </em><em>,</em><em> </em><em>payment</em><em> </em><em>processing</em><em>,</em><em> </em><em>and</em><em> </em><em>customer</em><em> </em><em>management</em><em> </em><em>merges</em><em>.</em><em> </em>
Answer:
In Python:
numDays = int(input("Days: "))
print("Number of days: "+str(numDays)+"\n")
Explanation:
The program was written in Python and the explanation is as follows;
First, get the input for the number of days from the user
<em>numDays = int(input("Days: "))</em>
Next, print string "Number of days: " followed by the number input from the user and then newline
<em>print("Number of days: "+str(numDays)+"\n")</em>
<em>The character \n represents new line</em>
Answer:
A flat file database stores data in a single table structure. A relational database uses multiple table structures, cross-referencing records between tables. Tables in both organize records in rows, with each column containing a single piece of data in the record.
Answer:
The answer is "option B".
Explanation:
An OTB stands for an over-target baseline, it is a new management benchmark when an original target can't have coincided and new goals for management purposes are required.
- It is also known as a reference to the foundation for calculating or constructing.
- It is an understanding between the client and the contractor that the cost base, which is not part of the original contract budget, should include an extra budget
cout<<"Enter a number in the range of 1 - 10 ";
cin>>num;
// check if the input is valid
if(num<0 || num > 10)
cout<<"Invalid Number"
// checking for appropriate output
switch(num){
case 1:
cout<< "|";
case 2:
cout<< "||";
case 3:
cout<< "|||";
case 4:
cout<< "|V";
case 5:
cout<< "V";
case 6:
cout<< "V|";
case 7:
cout<< "V||";
case 8:
cout<< "V|||";
case 9:
cout<< "|X";
case 10:
cout<< "X";
default :
cout<<" Nothing found";
}