One, right? Because there's just the blank title slide that automatically pops up.
I'm not sure but I think d. Webmaster
Answer: 1. What are the major deliverables ?
2. How will you get those deliverables before or by the deadline ?
3. Who is on the on the team and what role will they play ?
4. When will the team meet milestones on when will other members on the team play a role in. Contributing to or providing feedback on those deliverables ?
Something like this?
h1 = int(input())
m1 = int(input())
s1 = int(input())
h2 = int(input())
m2 = int(input())
s2 = int(input())
s = h2*3600 + m2*60 + s2 - (h1*3600 + m1*60 + s1)
print(s)
<h2>

</h2>
#include<iostream>
using namespace std;
int main ()
{
float basic, gross, da, hra;
cout<<"Enter basic salary of an employee:";
cin>>basic;
if (basic <25000)
{
da = basic *80/100;
hra = basic *20/100;
}
else if (basic >=25000 & & basic<40000)
{
da = basic *90/100;
hra = basic *25/100;
}
else if (basic>=40000)
{
da = basic *95/100;
hra = basic *30/100;
}
gross = basic + hra + da;
cout<<"\n\t Basic Pay............" <<basic<<endl;
cout<<"\t Dearness Allowance..........." <<da<<endl;
cout<<"\t House Rent Allowance......" <<hra<<endl;
cout<<"\t Gross Salary............." <<gross<<endl;
cout<<"\t - - - - - - - - - - - - - - -" <<endl;
<h2>

</h2>
Enter Basic Salary of an employee : 25000
Basic Pay : 25000
Dearness Allowance : 22500
House Rent Allowance : 6250
Gross Salary : 53750
<h2>

</h2>
<h3>The Expected Output is archived</h3>