Answer:
Unsharp Mask tool
Explanation:
I just took the test and got it right
Answer:
The program to this question can be describes as follows:
Program:
#include <iostream> //defining header file
using namespace std;
int main() //defining main method
{
float user_num ;//defining float variable
cout<<"Enter any number: "; //message
cin>>user_num; //input value from the user
while (user_num >= 1) //defining loop to calculate value
{
user_num =user_num/ 2; //diving the value
cout<<user_num<<endl; //print value
}
return 0;
}
Output:
Enter any number: 20
10
5
2.5
1.25
0.625
Explanation:
In the above program, a float variable user_num is declared in which we store input value from the user end, in the next step, a while loop is declared, which calculates, the given value.
- In the loop a condition is defined, that user_num value is greater than equal to 1, inside the loop it will divide the value of the user_num and store in this variable.
- In this print, the method is used, which prints its variable values.
Answer:
- Adaptive
- Consistency-oriented
- Achievement-based
- Involvement-oriented
Explanation:
Adaptive Consistency-oriented workplace cultures emphasizes reacting quickly to change.
Consistency-oriented workplace cultures emphasizes everyone being in agreement.
Achievement-based Consistency-oriented workplace cultures emphasizes accomplishing goals.
Involvement-oriented Achievement-based workplace cultures emphasize development of new skills.
Answer:
def leap_year_check(year):
return if int(year) % 4 == 0 and (int(year) % 100 != 0 or int(year) % 400 == 0)
Explanation:
The function is named leap_year_check and takes in an argument which is the year which we wish to determine if it's a new year or not.
int ensures the argument is read as an integer and not a float.
The % obtains the value of the remainder after a division exercise. A remainder of 0 means number is divisible by the quotient and a remainder other wise means it is not divisible by the quotient.
If the conditions is met, that is, (the first condition is true and either the second or Third condition is true)
the function leap_year_check returns a boolean ; true and false if otherwise.