# Author: Amit Dutta (amitdutta4255@gmail.com) | Date: 19 Mar 2026 # Repo: https://github.com/notamitgamer/bsc # License: MIT # Assume you have a variable company <- "Programiz". # Write a line of code using the paste0() function to print "Welcome toProgramiz" # ensuring there is no default space between the string and the variable. company <- "Programiz" print(paste0("welcome to", company))