Which of the following is a valid variable name in R?
2nd_valuetotal.valuemean-valueemployee nameYou want to create a variable that stores the average temperature in Celsius. Which is the best name by R convention?
avg_temp_CATCaTemptemperatureInCelsiusWhat will happen if you use a variable name like .hidden_data in R?
You’re analyzing employee satisfaction. You create a variable sat_Level. Later, a teammate uses Sat_Level in their script. What might go wrong?
What happens when we run below code?
total income <- 50000
You are naming a temporary counter inside a loop. Which of these is acceptable and follows R conventions?