Posts

Earning by using a simple app

Image
 earning by using a simple app It is very easy to earn in this era because this is the time of technology and internet so therefore this advancement offers the new jobs for everyone and for free For example online stores offers affiliation for everyone not only this this also offer the online marketing jobs and many more but earn by playing game true? Whatever this this but our today blogs is about the app named as bitcoin blast. I will tell you everything clearly in this blog according to my experience. So lets start my experience and than you should select the side that is this true or not?                                                                         So i am starting my story about the app that how i started to earn from the app or is i really earn? and answer of it this in this kind that yes i earn and i got 0.01 dollar per game in 2 days. I download the game and than i play a game and i got about 8000 points and i withdraw these points into the money and i got the withdr

What is blogger?

Image
  What is blogger? So, the topic for today is what is blogger? If you are a well knowledgeable person for computers or internet than it will also necessary to learn everything about the internet. So, This means that you should also learn about the blogger or WordPress etc. Why because they are the major major sources to make an website. Now may be you are thinking about this question that websites makes by code scripts. Now the answer for this question is yes but they are the sources which makes easy to make a website because there are already availability of themes and other tools which make a good website not only this there are also tools to make the seo of the make more strong and some people may not know about the seo, so those people can visit this artical to learn the basics of seo of youtube. SEO For YouTube So if you visited this blog than now you know what is seo. This is also a major aspect to learn about the websites. Now should move that what is blogger. Actually blogger

100% YouTube SEO(search engine optimization)

Image
  100% YouTube SEO     So, first of all we should understand the concept of seo that what is seo. So, the complete phrase is search engine optimization and why it is so important? So seo is cause to rank on any platform because if  we are uploading content on google than it is very important to know for google that what are you uploading if google easily understand that content is what about than it will rank your website upper if google will unable to understand the content than it will decrease your ranking.Today there are several jobs for seo there is separate field for website seo and it is the easiest job as compared to programming jobs because there are several tools to check the website seo but in this blog we will understand the seo of youtube only that how to do 100% youtube seo and it is very easy as compared to do website seo. Now i will teach you some tips about the seo for video.So we should discuss these tips in steps. 1)Review the Video                                  

Concepts of OOP (object oriented programming)

Image
Concepts of OOP   So Sir, this is a good question for programming to ask about the oop. so, In this artical i will tell you about the object oriented programming of c++. Why i choose the oop of c++ not of java or any other programming language so the answer is this that we are learning the c++ therefore we should start the introduction of oop. When we will start learning any other programming language than we will start the other parts of other programming languages. What is OOP?                                     There are two types of programming languages one is procedural oriented and the other is object oriented programming language. Simply we learn the procedural programming language first than we starts the object oriented programming language. And the main questions from us is this that what is object oriented programming so the answer of this question is that oop is the programming language which is based on the user in this language we will access everything by using the fun

Concepts in c++........

Image
  Concepts in c++                                                                                   And I choose the topic for today is the concepts of c++  and first of all i will make the list for all of them than i will tell little bit about them should we start from here? I think no. We should understand the overview first that what is c++ why i am talking about the c++ so the answer of it is this that c++ is a programming language which is the fastest programming language and can access the hard of computer directly this is the reason this is the fastest language uses to make the software,games, management systems and games etc. So the topics of this language are these: 1)Introduction to c++ 2)Data types 3)header-files 4)Rules 5)if-else/if-else-if/if statements 6)loops(for,while,do-while) 7)Arrays 8)Functions(build-in+user-define) 9)Structures 10)File-Handling 11)string 12)Other vocabulary of c++ 13)Vectors                         So, why i talked about these topics so the answer

How to start programming.....

Image
 How to start Programming                             So First of all to start programming there is only thing which need is a fresh mind which every human contain. In this era there is nothing difficult to learn because in this era there is a thing which makes everything easy to learn which is internet. In this time we can afford internet easily and it is easiest way to learn in minimum cost.Therefore, we should learn something to grow yourself and start with programming is a big deal because in this time programming or coding is very important. Our world need good programmers to grow in science because after humans robots are introduced to work and to make work for them we need programming to program their computers. This can make the life easier for humans because in this way humans will get less burden of work. So, whatever after make our mind we should plan which language we should start. which language we should start:                                                              

This article can save your life

Image
 This article can save your life   In times of disaster most people fail to do the important work that can save their lives. But why does this happen? While searching for the answer, one should pay attention to the incident of September 27, 1994 in which 852 people drowned at sea. At seven in the morning that day, the ship MS Estonia departed from Tallinn port with 989 passengers. He had to cross the Baltic Sea to Stockholm. But the ship never got there. Six hours after leaving port, the ship was caught in a severe storm, its front door shattered and water began to seep in. Within an hour, the ship sank, along with 852 passengers and crew. Why 852 people drowned? The pace of the tragedy, the hurricane, the declaration of emergency half an hour after the sinking and the time for the rescue team to reach the affected people ... Despite all these, the relief experts were stunned by the death of so many people. It seems that many people drowned simply because they made no attempt to escape

Program to check odd or even number in c++ programming language

#include<iostream> using namespace std; int main() { int a; cout << "enter the value of a:"; cin >> a; if (a % 2 == 0) cout << "this number is even"; else cout << "this number is odd"; getchar(); getchar(); return 0; }

Program to check first digit between two digits that is it odd or even number

#include<iostream> using namespace std; int main() { int a,rem,rev=0; cout << "Enter the value for a:"; cin >> a; while (a!=0) { rem = a % 10; rev = rev * 10 + rem; a = a / 10; } if (rev % 2 == 0) cout << "It is even"; else cout << "It is odd"; getchar(); getchar(); return 0; } //(with easy way) #include<iostream> using namespace std; int main() { int a,rem,q=0; cout << "Enter the value for a:"; cin >> a; q = a / 10; if (q % 2 == 0) cout << "It is even"; else cout << "It is odd"; getchar(); getchar(); return 0; }

Program to find Arithmetic Mean using c++ programming language.

#include<iostream> using namespace std; int Mean234(int a, int b); int Mean234(int a, int b, int c); int Mean234(int a, int b, int c, int d); int main() { double a, b, c, d; cout << "Enter two values :" << endl; cin >> a >> b; cout << Mean234(a, b) << endl; cout << "Enter three values :" << endl; cin >> a >> b >> c; cout << Mean234(a, b, c) << endl; cout << "Enter four values :" << endl; cin >> a >> b >> c >> d; cout << Mean234(a, b, c, d) << endl; return 0; } int Mean234(int a, int b) { cout << "Arithmetic Mean is :"; return((a + b) / 2.0); } int Mean234(int a, int b, int c) { cout << "Arithmetic Mean is :"; return((a + b + c) / 3.0); } int Mean234(int a, int b, int c, int d) { cout << "Arith

Selecting Sorting

// Sorting without using function: #include<iostream> using namespace std; int main() { int size; int arr[20], temp, loc, min; cout << "Enter the size of array:"; cin >> size; for (int i = 0; i < size; i++) { cout << "Enter the values of array:"; cin >> arr[i]; } for (int i = 0; i < size - 1; i++) { min = arr[i]; loc = i; for (int j = i + 1; j < size; j++) { if (arr[j] < min) { min = arr[j]; loc = j; } } temp = arr[i]; arr[i] = arr[loc]; arr[loc] = temp; } for (int i = 0; i < size; i++) { cout << "Array elements after selction is:"; cout << arr[i] << endl; } getchar(); getchar(); return 0; } //Sorting with using function: #include<iostream> using namespace std; void values(int arr[20], int); const int size = 5; int main() { int arr[size]; for (int i = 0; i < size; i++) { cout &

Bubble Sorting

  //Sorting without using functions: #include<iostream> using namespace std; int main() { int size; int arr[20], temp, swap; cout << "Enter the size of array:"; cin >> size; for (int i = 0; i < size; i++) { cout << "Enter the values of array:"; cin >> arr[i]; } for (int i = 1; i < size; i++) { swap = 0; for (int j = 0; j < (size-i); j++) { if (arr[j] < arr[j+1]) { temp = arr[j]; arr[j] = arr[j+1]; arr[j + 1] = temp; swap = 1; } } if (swap == 0) { break; } } for (int i = 0; i < size; i++) { cout << "Array elements after selction is:"; cout << arr[i] << endl; } getchar(); getchar(); return 0; } // Sorting with using function: #include<iostream> using namespace std; void values(int arr[20], int); const int size = 5; int main() { int arr[size]; for (int i = 0; i < size; i++) { cout << "Enter th

How to Start a Business with No Money?

Image
How to Start a Business with No Money?                             Hello, friends,  Today, we will talk about the property business model How can you market your business if you want to do property business Recently, Sandeep Maheshwari ji talked about this thing in his part 2 So today I will talk about the marketing part and I have a lit bit experience of this thing also And till yet in every batch, there was one student who had the same business model So I know what problem will occur while executing it So I have added a few things through which you will always make a profit and never face looses But again I am telling you that you need to check this thing according to yourself I am showing you the path but you have to walk yourself Before starting this video I want to say thank you to Sandeep Maheshwari Ji Because the  position in which where I am now is just because of him If you see my previous videos then my body language was not good enough But personally, I am the same person th

Clippy Game using c++ programming

#include <iostream> #include <conio.h> #include <cstdlib> #include <ctime> #include <string> #include <sstream> using namespace std; void guide(); void body(); void display(char[][9]); // For display of screen void Hint(int); int main() { char choice; body(); cout << "Enter N for new game Q to quit the game"; cin >> choice; if (choice == 'N' || choice == 'n') { system("cls"); body(); } else if (choice == 'q' || choice == 'Q') { exit(0); } } void body() { srand(time(0)); int x, y; int arr[9][9]; string enter; char ar[9][9]{ { '.', '.', '.', '.', '.', '.', '.', '.', '.' }, { '.', '.', '.', '.', '.', '.', '.', '.', '.' }, { '.', '.', '.', '.', '.', &#

Snake Game using c++ programming

#include <iostream> #include<windows.h> //Library used to add sleep function #include<conio.h> #include<stdlib.h> //Library used for random numbers using namespace std; //Taking Global Variables bool gameOver; //Taking constant variables for arena width and height const int width = 20; const int height = 20; //taking an array for the size of snake int tailX[50], tailY[50]; int nTail; //Variables for position of player and fruit int x, y, FruitX, FruitY, score; //Setting enumerators for fixed direction enum eDirection { STOP = 0, LEFT, RIGHT, UP, DOWN }; eDirection dir; void Settings() { //1 //Setting the game to start //Setting gameover to false to start the game gameOver = false; //Setting direction to stop so snake will not be moving at the start of game dir = STOP; //Setting the location of snake at the centre of arena at the start of game x = width / 2; y = height / 2; //using random operator to randomize our fruit in the map FruitX =