1.what is the Visual studio c++ run time environement that is asked to be installed when running programs? Is it the CLR?
2.Can we use the same CLR for every .NET language?
3.I get that languages are first compiled into an object file and then interpreted into machine language by a CLI with the help of JIT compiler. Why Just in time is its name?
4.what is the type of the compiled object code? Assembly? Assembly like (is it the MSIL) ?
5.is everything languge compiled in to assembly before it is executed at anypoint?
6.What is interpreted? is anything actually interpreted (no compiling)?