Exercise: Calculate Bonus Add 5 bonus points to all marks. Solution sqlCopy1SELECT name, marks, marks + 5 AS adjusted_marks 2FROM students;