No products in the cart.

Ask questions which are clear, concise and easy to understand.

Ask Question
  • 1 answers

Sia ? 3 years, 5 months ago

S.No. Compiler Interpreter
1. Compiler scans the whole program in one go. Translates program one statement at a time.
2. As it scans the code in one go, the errors (if any) are shown at the end together. Considering it scans code one line at a time, errors are shown line by line.
3. Main advantage of compilers is it’s execution time. Due to interpreters being slow in executing the object code, it is preferred less.
4. It converts the source code into object code. It does not convert source code into object code instead it scans it line by line
5 It does not require source code for later execution. It requires source code for later execution.
Eg. C, C++, C# etc. Python, Ruby, Perl, SNOBOL, MATLAB, etc.
  • 0 answers
  • 0 answers
  • 1 answers

Sanjeev Kumar 7 years, 3 months ago

Set of programs is called software.And software makes the computer run.
  • 2 answers

Arun Soni 7 years, 4 months ago

A supercomputer is a computer that handles very large databases or does a great amount of computation, which is generally needed for scientific and engineering applications.

Dr Pathikrt Banerjee 7 years, 4 months ago

A supercomputer is a computer that performs at or near the currently highest operational rate for computers.  Traditionally, supercomputers have been used for scientific and engineering applications that must handle very large databases or do a great amount of computation (or both). Although advances like multi-core processors and GPGPUs (general-purpose graphics processing units) have enabled powerful machines for personal use (see: desktop supercomputer, GPU supercomputer), by definition, a supercomputer is exceptional in terms of performance.

  • 5 answers

Jan S 7 years, 8 months ago

Bjarne stroustrup

Sriraman P 7 years, 8 months ago

CHECK

Sriraman P 7 years, 8 months ago

IM NOT MUCH SURE AND CONFIRM IN MY ANSWER CHECK IN  INTERNET

<hr />

 

Sriraman P 7 years, 8 months ago

BJARNE STROUSTRUP .IM SURE

Sidharth Thakur 7 years, 8 months ago

Dennis Ritchie

  • 1 answers

Jatin Singh 7 years, 5 months ago

Void bigger(a,b)

{

Cout<<"which is bigger";

If(a<b)

Cout<<a<<"is bigger";

Else cout<<b<<"is bigger";

}

 

 

  • 0 answers
  • 0 answers
  • 2 answers

Shubham Pandey 7 years, 9 months ago

While loop is an entry control loop ..while ...do while is an exit control loop

Naveen Sharma 7 years, 9 months ago

Ans. The difference is in when the condition gets evaluated.
In a do-while loop, the condition is not evaluated until the end of each loop. That means that a do- while loop will always run at least once.

In a while loop, the condition is evaluated at the start. So while loop will run only when condition is true.

  • 1 answers

Naveen Sharma 7 years, 11 months ago

i++ is known as postfix. add 1 to i, returns the old value.

++i is known as prefix. add 1 to i, returns the new value.

  • 1 answers

Bindu Agarwal 7 years, 11 months ago

#include <iostream>

using namespace std;

void calc(int a, int b, char c){

float r;

if(c=='+'){

r=a+b;

}

else if(c=='-'){

r=a-b;

}

else if(c=='*'){

r=a*b;

}

else{

r=a/b;

}

cout<<r<<endl;

}

int main(){

int a,b;

cin>>a>>b;

char c;

cin>>c;

calc(a,b,c);

return 0;

}

  • 1 answers

Raja Ratnam 8 years, 1 month ago

#include<iostream.h>

void main()

{ int a,  fact=1;

cout<<"enter a number";

cin>>a;

while(a>0)

{f=f*a;

a--;}

cout<<"factorial of "<<a<<" is"<<f;}

}

 

myCBSEguide App

myCBSEguide

Trusted by 1 Crore+ Students

Test Generator

Test Generator

Create papers online. It's FREE.

CUET Mock Tests

CUET Mock Tests

75,000+ questions to practice only on myCBSEguide app

Download myCBSEguide App