Moderate

How to find out what version of ASP.NET I am using on my machine ?

Correct answer: C. Response.Write(System.Environment.Version.ToString() );

  • A. Response.Write(Version.ToString() );
  • B. Response.Write(System.Version.ToString() );
  • C. Response.Write(System.Environment.Version.ToString() );
  • D. not possible

Explanation

System.Environment.Version returns the version of the CLR running the application, which commonly identifies the installed ASP.NET/.NET framework generation in this context. Response.Version and System.Version are not valid ways to obtain it.

Last updated

Practise Web and Mobile Development

268 free Web and Mobile Development MCQs from Software Engineering, each with the correct answer and an explanation. Unlimited attempts, no account needed.

Exams that ask Software Engineering questions like this

Software Engineering is on this paper prepared for on TestUstad, and all of them draw the same bank, so this question is worth knowing for it.

Related questions