Answer:
When Agile is truly implemented in a project team, it empowers them with unparalleled flexibility. Teams work in smaller bursts and are supplemented by the constant feedback and involvement of the product owner. In other project management methodologies, changes usually are time-consuming and costly
Answer:
that might just be the headphone cord itself or it might be the port on the pc/phone
Explanation:
i had this happen with my old droid razr hd i thought it was the aux cord on my speaker and head phones but i used the same things on a friends phone and they worked just fine and this might be do to an old or broken port on the phone /c my phone headphone port got used almost everyday and it was just the port you can replace this on some tech or you could just use bluetooth if the tech doesent have it buy and adapter.
hope this helps!!!
Answer:
#include <iostream>
using namespace std;
int main()
{
int sum=0;//taking an integer variable to store the sum with initial value 0..
for(int i=1;i<=10;i++)//looping from 1 to 10..
{
sum+=i;//adding each i in the sum..
}
cout<<sum<<endl;//printing the sum..
return 0;
}
Explanation:
output :- 55
1.I have taken an integer variable sum which is equal to 0.
2.Looping over first ten positive integers.
3.Adding every number to sum.
4.Printing the sum.