Answer:
// here is program in C++.
#include <bits/stdc++.h>
using namespace std;
// main function
int main()
{
// variable
int price;
cout<<"enter the price: ";
// read the price
cin>>price;
// find the dollars
int doll=price/100;
// find the cents
int cent=price%100;
// print the dollars and cents
cout<<doll<<" dollars and "<<cent<<" cents.";
return 0;
}
Explanation:
Read the price from user and assign it to variable "price".Then find the dollars by dividing the price with 100 and to find cents calculate modulus 100 of price. Then print both the value.
Output:
enter the price: 4321
43 dollars and 21 cents.
Answer:
temp = 47
if temp > 40:
print("It’s extremely hot day today!")
else:
print("It’s not too hot!")
Explanation:
*The code is in Python.
Create a variable called temp and set its value as 47
Check the temp using if-else structure. If the temp is greater than 40, print "It’s extremely hot day today!". Otherwise, print "It’s not too hot!".
Answer:
Creating Strategic Fit
Explanation:
Strategic fit expresses the degree to which an organization is matching its resources and capabilities with the opportunities in the external environment. The matching takes place through strategy and it is therefore vital that the company has the actual resources and capabilities to execute and support the strategy. Strategic fit can be used actively to evaluate the current strategic situation of a company as well as opportunities such as M&A and divestitures of organizational divisions.
Answer:
"Integrity constraints
" is the correct answer.
Explanation:
- A successful DBMS offers integrity constraints, which have been an option that allows you to modify the database layout without modifying the applications accessing the repository.
- A principle or requirement which the data in something like a database should therefore obey.
So that the above is the correct choice.
greatflombles or gr8flombles or go2flombles