Ask questions which are clear, concise and easy to understand.
Ask QuestionPosted by Aditya Tiwari 8 years, 7 months ago
- 0 answers
Posted by St Jg Ggh 8 years, 7 months ago
- 1 answers
Sanjeev Kumar 8 years, 7 months ago
Posted by Abhi Chaudhary 8 years, 7 months ago
- 0 answers
Posted by Akash Parashar 8 years, 8 months ago
- 2 answers
Arun Soni 8 years, 8 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 8 years, 8 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.
Posted by Mayank Malhotra 9 years ago
- 5 answers
Sriraman P 9 years ago
IM NOT MUCH SURE AND CONFIRM IN MY ANSWER CHECK IN INTERNET
<hr />
Posted by Deepak Aadhikari 9 years ago
- 1 answers
Jatin Singh 8 years, 9 months ago
Void bigger(a,b)
{
Cout<<"which is bigger";
If(a<b)
Cout<<a<<"is bigger";
Else cout<<b<<"is bigger";
}
Posted by Sanskriti Singh 9 years ago
- 0 answers
Posted by Manav Sharma 9 years ago
- 0 answers
Posted by Kiran Harak 9 years ago
- 0 answers
Posted by Neha Barnwal 9 years, 1 month ago
- 2 answers
Shubham Pandey 9 years, 1 month ago
While loop is an entry control loop ..while ...do while is an exit control loop
Naveen Sharma 9 years, 1 month 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.
Posted by Anubhav Kumar 9 years, 3 months ago
- 1 answers
Naveen Sharma 9 years, 3 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.
Posted by Sindhu Evesworld 9 years, 3 months ago
- 1 answers
Bindu Agarwal 9 years, 3 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;
}
Posted by Arnoraj Chauhan 9 years, 3 months ago
- 0 answers
Posted by Ajay Chauhan 9 years, 5 months ago
- 0 answers
Posted by Siddhant Sawhney 9 years, 6 months ago
- 1 answers
Raja Ratnam 9 years, 6 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;}
}
Posted by Vasanth Yadav 9 years, 6 months ago
- 0 answers

myCBSEguide
Trusted by 1 Crore+ Students

Test Generator
Create papers online. It's FREE.

CUET Mock Tests
75,000+ questions to practice only on myCBSEguide app
myCBSEguide