Question:

If the word "BITS" is coded using \( A=1, B=2, \ldots, Z=26 \), and the code is the sum of the squares of each letter's value, what is the code for the word?

Show Hint

When coding words using letter values, squaring values and summing is a common pattern.

Updated On: May 28, 2025
  • \( 846 \)
  • \( 854 \)
  • \( 864 \)
  • \( 874 \)
Hide Solution
collegedunia
Verified By Collegedunia

The Correct Option is A

Solution and Explanation

To solve this problem, we need to code the word "BITS" by using the values of the letters according to their position in the alphabet, specifically using \( A=1, B=2, \ldots, Z=26 \). The code for the word is calculated as the sum of the squares of the values of each letter.

Let's find the value of each letter and then compute the sum of their squares:

  • B: \(B=2\).
  • I: \(I=9\).
  • T: \(T=20\).
  • S: \(S=19\).

Now, calculate the sum of the squares of each letter's value:

Code = \(2^2 + 9^2 + 20^2 + 19^2\).

Calculate each square:

  • \(2^2 = 4\).
  • \(9^2 = 81\).
  • \(20^2 = 400\).
  • \(19^2 = 361\).

Sum them up:

Code = \(4 + 81 + 400 + 361\).

Code = \(846\).

The code for the word "BITS" is therefore \(846\). 
The correct answer is option \(846\).

Was this answer helpful?
2
0