Nanami is researching how much software engineers make. She's writing a program to convert yearly salaries into hourly rates, based on 52 weeks in a year and 40 hours in a week. Which lines of code successfully calculate and store the hourly rate?




Since Nanami is researching how much software engineers make, the lines of code that can successfully calculate and store the hourly rate is hourlyRate ← (salary / wksInYear) / hrsInWeek.
Regardless of the number of statements or fragments of statements on a line, a line of code (LOC) is any text line in a piece of code that is not a comment or blank line, as well as header lines. LOC unambiguously consists of all lines that contain a variable declaration, as well as executable and non-executable statements.
Therefore, A software metric called source lines of code, also referred to as lines of code, counts the number of lines in the text of a computer program's source code to determine the size of the program. By following the line written above, Nanami can get the work done.
Learn more about the lines of code from
https://brainly.com/question/26455943
#SPJ1