Question: Declare a variable that holds the first four digits of ?

  1. int pi = 3.141;
  2. decimal pi = 3.141;
  3. double pi = 3.141;
  4. float pi = 3.141;

Answer: The correct answer of the above question is Option C:double pi = 3.141;