Here’s what i found online when researching this for a different question...
approach the question in a similar way to how this is written but add your own words :)
hope this helps
Answer:
user_salary = int(input("Please Enter Your Salary : "))
if user_salary in range(10000, 20000):
print("Tax = ",int(user_salary/100*1))
elif user_salary in range(20000, 30000):
print("Tax = ",int(user_salary/100*2))
elif user_salary in range(30000, 40000):
print("Tax = ",int(user_salary/100*3))
else:
print("No Tax!")
Explanation:
Answer: yeah i mean i use my canon camera
Explanation:
Answer:
Qualitative data is defined as the data that approximates and characterizes. Qualitative data can be observed and recorded. ... This type of data is collected through methods of observations, one-to-one interviews, conducting focus groups, and similar methods.
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