ഹൈ ലെവൽ ലാംഗ്വേജിൽ നിന്ന് മെഷീൻ ലെവൽ ലാംഗ്വേജിലേക്ക് വിവർത്തനം ചെയ്യുന്നു.
Aകംപൈലർ
Bഇവ രണ്ടും
Cഇന്റർപ്രെറ്റർ
Dഒന്നുമല്ല
Aകംപൈലർ
Bഇവ രണ്ടും
Cഇന്റർപ്രെറ്റർ
Dഒന്നുമല്ല
Related Questions:
What is the value of sum after the execution of the following code?
int sum = 0;
for (int i = -5; i<=;i++)
{
if (!i) break;
sum += i;
}