Ask questions which are clear, concise and easy to understand.
Ask QuestionPosted by Sarthak Gosain 3 years, 5 months ago
- 1 answers
Posted by Aishwarya Nellol 7 years, 3 months ago
- 0 answers
Posted by Yuvraj Singh 7 years, 3 months ago
- 0 answers
Posted by Aditya Tiwari 7 years, 3 months ago
- 0 answers
Posted by St Jg Ggh 7 years, 3 months ago
- 1 answers
Sanjeev Kumar 7 years, 3 months ago
Posted by Abhi Chaudhary 7 years, 3 months ago
- 0 answers
Posted by Akash Parashar 7 years, 4 months ago
- 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.
Posted by Mayank Malhotra 7 years, 8 months ago
- 5 answers
Sriraman P 7 years, 8 months ago
IM NOT MUCH SURE AND CONFIRM IN MY ANSWER CHECK IN INTERNET
<hr />
Posted by Deepak Aadhikari 7 years, 8 months ago
- 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";
}
Posted by Sanskriti Singh 7 years, 8 months ago
- 0 answers
Posted by Manav Sharma 7 years, 8 months ago
- 0 answers
Posted by Kiran Harak 7 years, 8 months ago
- 0 answers
Posted by Neha Barnwal 7 years, 9 months ago
- 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.
Posted by Anubhav Kumar 7 years, 11 months ago
- 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.
Posted by Sindhu Evesworld 7 years, 11 months ago
- 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;
}
Posted by Arnoraj Chauhan 7 years, 11 months ago
- 0 answers
Posted by Ajay Chauhan 8 years, 1 month ago
- 0 answers
Posted by Siddhant Sawhney 8 years, 1 month ago
- 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;}
}
Posted by Vasanth Yadav 8 years, 2 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
Sia ? 3 years, 5 months ago
0Thank You