Main Answer:<u> A Social networking service is an online platform that allow users to represent themselves via a profile and web site and provide and receive links to other network members </u>
Sub heding:
What is social networking service?
Explanation:
1.A social networking services is an online platform that allow users to represent themselves via a profile and web site and provide and receive links to other networks members
2.social networking services vary in format and the numbers of features
Reference link:
https//brainly.com
Hashtag:
#SPJ4
It is Nevaeh backwards hope that helps! :3 and feel free to pm me if you have anymore questions! :3
Answer:
a = 6, b = 0
Explanation:
The loop ran 3 times before b == 0. "while ((b != 0)" is essentially saying: 'While b is not equal to 0, do what's in my loop'. Same general thing with "&& ((a / b) >= 0)". The "&&" is specifying that there should be another loop condition, while the rest states: 'as long as a ÷ b is greater than 0, do what's in my loop'. If both of these conditions are met, the loop will run, It will continue this until the conditions are not met. Hope that helped! :)