Answer:
In Python:
Unit_Cost = 200
Cost50 = 50 * Unit_Cost
print("Cost of 50 items: Rs."+str(Cost50))
Explanation:
This initializes the unit cost to 200
Unit_Cost = 200
This calculates the cost of 50 of such items
Cost50 = 50 * Unit_Cost
This prints the calculated cost
print("Cost of 50 items: Rs."+str(Cost50))
The tool that would provide a report listing all systems that are out of compliance, including specific issues is Security Compliance Manager.
<h3>What are compliance tools?</h3>
The Security Compliance Manager is known to be a form of downloadable tool that one can use as it helps a person to plan, ascribe, operate, and manage a person's security baselines for Windows client and other forms of server operating systems.
Note that in the case above, The tool that would provide a report listing all systems that are out of compliance, including specific issues is Security Compliance Manager.
Learn more about Security Compliance Manager from
brainly.com/question/24338783
#SPJ1
The object-oriented analysis method of developing systems produces code that is modular and reusable.
<h3>What is object oriented system analysis?</h3>
Object-oriented systems analysis and specification (OSA) is known to be a kind of a method that is often used in regards to systems analysis and this is known to be one that helps to create or builds on the strengths of former systems and, at also at the same time, look into their weaknesses.
Note that this is said to be the basic idea behind the OSA methodology that are known to be described. The framework of OSA system models is known to be object class.
Hence, The object-oriented analysis method of developing systems produces code that is modular and reusable.
Learn more about object-oriented tool from
brainly.com/question/11158544
#SPJ1
Answer:
Program approach:-
- Using the header file.
- Using the standard namespace I/O.
- Define the main function.
- Display the number of terms.
- Display the Fibonacci series.
- Print the first two numbers.
Explanation:
Program:-
//header file
#include <iostream>
//using namespace
using namespace std;
//main function
int main() {
int n, s1 = 0, s2 = 1, nextTerm = 0;
//display the number of terms
cout << "Enter the number of terms: ";
cin >> n;
//display the Fibonacci series
cout << "Fibonacci Series: ";
for (int j = 1; j <= n; ++j) {
// Prints the first two terms.
if(j == 1) {
cout << s1 << ", ";
continue;
}
if(j == 2) {
cout << s2 << ", ";
continue;
}
nextTerm = s1 + s2;
s1 = s2;
s2 = nextTerm;
cout << nextTerm << ", ";
}