Answer:
Binary Scope Resolution Operator
Explanation:
The :: (scope resolution) operator is used to get hidden names due to variable scopes so that you can still use them. The scope resolution operator can be used as both unary and binary. Fortunately, in this context we're not dealing with hidden contents; thus the Binary applies better than the Unary.
Cheers
Answer:
def weeklyPaid(hours_worked, wage):
if hours_worked > 40:
return 40 * wage + (hours_worked - 40) * wage * 1.5
else:
return hours_worked * wage
hours_worked = 50
wage = 100
pay = weeklyPaid(hours_worked, wage)
print(f"Total gross pay: Rs.{pay:.2f} ")
Explanation:
provides gross pay
The answer to this would be B
Answer:
D. Azure Log Analytics
Explanation:
The Azure service we can use when you have to correlate events from more than 1 sources into a repository which is centralized you have to use Azure Log Analytics.
it is a special surrounding for Azure monitor log data.Each workspace has their own repository and configuration.
Hence we conclude that the answer to this question is option D Azure Log Analytics.