Ask questions which are clear, concise and easy to understand.
Ask QuestionPosted by Prabir Nayak 6 years, 1 month ago
- 1 answers
Posted by Prabir Nayak 6 years, 1 month ago
- 0 answers
Posted by Arjun Sharma 6 years, 1 month ago
- 0 answers
Posted by Sujith Sujith 6 years, 1 month ago
- 1 answers
Priya Dharshini 6 years, 1 month ago
Posted by Ritupriya Biswas 6 years, 1 month ago
- 0 answers
Posted by Ritupriya Biswas 6 years, 1 month ago
- 0 answers
Posted by Bhanu Partap 6 years, 1 month ago
- 0 answers
Posted by Aiswarya Mahesh 6 years, 1 month ago
- 1 answers
Sia ? 6 years, 1 month ago
from array import *
array_num = array('i', [1, 3, 5, 3, 7, 1, 9, 3])
print("Original array: "+str(array_num))
array_num.reverse()
print("Reverse the order of the items:")
print(str(array_num))
Posted by Řøhăň Řąjpůť ✌️✊ 6 years, 1 month ago
- 0 answers
Posted by Rachit Bhatnagar 6 years, 1 month ago
- 0 answers
Posted by Saurabh Mishra 6 years, 1 month ago
- 4 answers
Řøhăň Řąjpůť ✌️✊ 6 years, 1 month ago
Aman Kumar 6 years, 1 month ago
Posted by Shivangi Asthana 6 years, 1 month ago
- 6 answers
Posted by Inshul Fulwani 6 years, 1 month ago
- 0 answers
Posted by Řøhăň Řąjpůť ✌️✊ 6 years, 1 month ago
- 2 answers
Posted by Rikki Dikk 6 years, 1 month ago
- 0 answers
Posted by Manpreet Singh 6 years, 1 month ago
- 5 answers
D.C . 6 years, 1 month ago
Posted by Bhavik Jaisinghani 6 years, 1 month ago
- 0 answers
Posted by Garima Erty 6 years, 2 months ago
- 0 answers
Posted by Khushi Vishwakarma 6 years, 2 months ago
- 0 answers
Posted by Khushi Vishwakarma 6 years, 2 months ago
- 1 answers
Aakriti Gupta 6 years, 1 month ago
Posted by Siddharth Singh 6 years, 2 months ago
- 1 answers
Khushi Vishwakarma 6 years, 2 months ago
Posted by Dinesh Santhosh 6 years, 2 months ago
- 8 answers
Shaily Jain 6 years, 2 months ago
Aman Kumar 6 years, 2 months ago
Aman Kumar 6 years, 2 months ago
Aman Kumar 6 years, 2 months ago
Ďãřşháñăã Yadav ? ? ? ✊ 6 years, 2 months ago
Ďãřşháñăã Yadav ? ? ? ✊ 6 years, 2 months ago
Posted by Pawan Kundu 6 years, 2 months ago
- 1 answers
Aditya Adi 6 years, 2 months ago
Posted by Mona Aalam 6 years, 2 months ago
- 0 answers
Posted by Mudit Goel 6 years, 2 months ago
- 2 answers
Hardy Boys 6 years, 2 months ago
Arjun Saxena 6 years, 2 months ago
Posted by Nasima Khan 6 years, 2 months ago
- 3 answers
S.....Sharma☺??? .. 6 years, 2 months ago
Gaurav Seth 6 years, 2 months ago
Hackers:
1) Hackers are interested in gaining knowledge about computer systems.
2) These can be for good or bad purposes.
Crackers:
1) These are the malicious programmers who break into secure systems.
2) These are only for bad purposes.
Posted by Nasima Khan 6 years, 2 months ago
- 2 answers
Gaurav Seth 6 years, 2 months ago
Freeware | Shareware |
Freeware refers to software that anyone can download from the Internet and use for free. | Sharewares give users a chance to try the software before buying it. |
The term freeware was first used by Andrew Fluegelman in 1982, when he wanted to sell a communications program named PC-Talk. | In 1982, Bob Wallace produced PC-Write, a word processor, and distributed it as a shareware. The term was first used in 1970, in InfoWorld magazine. |
User license or EULA (End User License Agreement) is an important part of freeware. Each license is specific to the freeware. Copyright laws are also applicable to Freeware. | Copyright laws also apply to Shareware but the copyright holder or author holds all the rights, with a few specific exceptions. |
All the features are free. | Most of the times, all features are not available, or have limited use. To use all the features of the software, user has to purchase the software. |
Freeware programs can be distributed free of cost. | Shareware may or may not be distributed freely. In many cases, author’s permission is needed, to distribute the shareware. |
Adobe PDF, Google Talk, yahoo messenger, MSN messenger | Winzip, Cuteftp, Getright |
Freeware is free, and is covered by copyright | Shareware is free, can be copied and is covered by copyright. |
You can’t sell freeware software and modified software must be freeware. | Shareware cannot be modified, and it may be either a cut down or temporary version. |
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 ? 6 years, 1 month ago
#include <iostream>
#include <stack>
using namespace std;
int main()
{
// Empty stack
stack<int> mystack;
mystack.push(0);
mystack.push(1);
mystack.push(2);
// Printing content of stack
while (!mystack.empty()) {
cout << ' ' << mystack.top();
mystack.pop();
}
}
1Thank You