R_Code-5.r (382B)
1 # Author: Amit Dutta (amitdutta4255@gmail.com) | Date: 19 Mar 2026 2 # Repo: https://github.com/notamitgamer/bsc 3 # License: MIT 4 5 # You have a vector of numbers: x <- c(12, 9, 23, 14). 6 # Use R's shorthand ifelse() function to output "EVEN" if a number 7 # in the vector is divisible by 2 (x %% 2 == 0), and "ODD" if it is not. 8 9 x <- c(12, 9, 23, 14) 10 ifelse(x %% 2 == 0, "EVEN", "ODD")