No products in the cart.

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

Ask Question
  • 0 answers
  • 1 answers

Sanjeev Kumar 7 years, 11 months ago

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

Arun Soni 8 years 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.

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 8 years, 4 months ago

Bjarne stroustrup

Sriraman P 8 years, 4 months ago

CHECK

Sriraman P 8 years, 4 months ago

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

<hr />

 

Sriraman P 8 years, 4 months ago

BJARNE STROUSTRUP .IM SURE

Sidharth Thakur 8 years, 4 months ago

Dennis Ritchie

  • 1 answers

Jatin Singh 8 years, 1 month 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 8 years, 5 months ago

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

Naveen Sharma 8 years, 5 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 8 years, 6 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 8 years, 7 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, 9 months 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