Factors, also this is the wrong place to post this question
Answer:
Code in C++
Explanation:
C++ Code
#include<iostream> //for input and output
using namespace std;
int main()
{
int hour;
int minute;
cout<<"Enter the hour:";
cin>> hour;
cout<<"Enter the minute:";
cin>>minute;
minute = minute+15;
if(minute>=60){
hour++;
minute=minute-60;
}
if(hour>=24){
hour=0;
}
cout<<"Hours: "<<hour<<endl;
cout<<"Minutes:"<<minute;
return 0;
}
Code Explanation
First we need to declare two int variables to hold hour and minute values input from user.
Check if by adding 15 minutes into minute entered by user is greater then or equal to 60 then increment into hour and subtract 60 from minute.
Another check is that if user enters more then 24 hour or by making increment into hour, the hour values i greater then or equal to 24 then we need to change the hour to 0.
Result
Case 1:
Enter the hour:8
Enter the minute:15
Hours: 8
Minutes:30
Case 2:
Enter the hour:9
Enter the minute:46
Hours: 10
Minutes:1
Answer:
True but it might be false but i think is true
Answer and Explanation
There are five stages of group development which Alex should follow.
i) Stage 1: Forming-this is where he forms a team which will follow the other stages.
ii)Stage 2: Storming - In this stage is where the members set their goals and boundaries.
iii)Stage 3: Norming- This is where the team comes together in terms of ideas. In this stage members are ready to move forward with big expectations.
iv)Stage 4: Performing.-This is where now the team is now accomplishing or implements their ideas and they are now getting the benefits.In this stage members argue positively.
v)Stage 5: Adjourning-This is the stage where the group has accomplished their mission.And now the group is dissolved
Answer:
Explanation:
1 robotics
2. Engineering
3. Government
3. Industries
5. Individual programming
6. Business
7. Schools
Etc