Answer:
Give me brainliest thanks
Answer:
I think you should do what are passionate about. therefore it might gain more followers. Also so it's not boring and it's enjoyable for you. also it will be easier for you to do. the pros are you will put in extra efforts, it will make you happy, it will workout longer, it can help you grow as a person. the cons are you may lose followers, it may be hard to think of content, you might not make money, people may try to bring you down.
i think you should make a different account and try it. either make another account for art or make another for vlogs.
But honestly just try it out and see how it goes.
Explanation:
Answer:
<!-- Modified by selena ramirez - for html compliance -->
Explanation:
In HTML, <!-- .. --> tag is used to insert comments in the webpage code.
Comments written inside the tag is visible only on the code, and is not displayed in the browsers when the page is requested by the client computer.
<em>Comment tag</em> is useful when there is a lot of code and multiple developers are dealing with the same code.
Comments help developers understand what changed is made and why.
Answer:
Sorted array will be:-
3 5 5 9
Explanation:
In Selection Sort algorithm it sorts the array by repeatedly finds the minimum in the array form the array that is unsorted and swaps it with the value at the first position.
The unsorted array:- 5 3 9 5
In first iteration
minimum is 3.
3 will be swapped with 5.
Now the array is 3 5 9 5
sorted array 3
In second iteration
unsorted array is 5 9 5
sorted array 3 5
and the minimum from it is 5
No swapping will occur.
In third iteration
unsorted array is 9 5
minimum is 5
sorted array 3 5 5
swap it with 9.
Now the array is sorted.
3 5 5 9