Subscribe For Free Updates!

We'll not spam mate! We promise.

Tuesday 21 June 2016

How to secure Gmail and YouTube account with 2 step verification

Hello guys! Welcome back for long time. Today I’m gonna show you that How you can secure your YouTube, Blogger and Gmail account from hackers with 2-Step verification method. So guys this is a very simple and professional method to secure your account from Hacking Bots and bad guys. I will also teach some other steps to keep your account protected. So if you are interested then go ahead.

Top three steps to protect your account

1)      Strong Password like ( pak%vs%ind=20over )
2)      Verify your account with phone number
3)       2-Step verification

What is 2-Step verification?

2-Step verification method is a professional security method to keep your account saves from hackers. When someone wants to access your Gmail account Google will automatically send verification code on your given phone number. The number must be entered to accessing your account.

How to turn on 2- step verification method? 

1)      Open your Gmail account.
2)      Click on your account image and then click “My Accounts”.
3)      Click on “sign in and security” tab.
4)      Click on “2-Step verification” tab.
5)      Click on get started.
6)      Enter phone number and click next.
7)      Enter 6 digit number which you will receive on your given phone number.
8)      Done.

For more information watch these steps.






For more understanding please watch this video


If you like this tutorial or if you have any question then  write your comment in the comment box below. Thanks for visiting our site.


Wednesday 6 April 2016

How to make a console calculator in programming in urdu

C language is a very famous language in the market. Everyone wants to learn C program because C language is an only one language which is the base of every successful programmer. Some days ago I have posted a complete course of C programming in Urdu and Hindi language. This course contains more than 25 video lectures. So you can watch this course. 

As I tell you that in the C programming course that first we learn about basic functionalities of C programming and then we will move on the projects section. So we have successfully completed our course and now the time is to move on the projects section. This is the first project of our course. In this project I will teach you that how you can easily make a console calculator. This calculator has complete functionalities like getting sum result, multiplication result, division result, and also subtraction result of any numbers.  

What is the functionalities of this calculator program

This calculator program can apply any function like plus, minus, multiply and divide. It collects three inputs from user on run time first input is “Value 1” and second input is “operation (plus minus etc)” and third is “value 2”.If the user enters the sign “+” then it will display the sum of both these values. Simply it depends on the mathematical operation which is enters by the user. If the user applies an invalid value then system performs beep sound. 

How to make this calculator?

1) Write the basic structure of C program.
2) Get three variables two integer and one character name as int value1, value2 and char operation.
3) Get input from the user by using printf() and scanf() function.
4) Start switch statement
5) Pass it the char variable “operation”.
6) Inside the curly braces write the below conditions.

switch(operation){
                                case '+':
                                                printf("The result is:%d",val1+val2);
                                break;        
                                case '-':
                                                printf("The result is:%d",val1-val2);
                                break;
                                case '*':
                                                printf("The result is:%d",val1*val2);
                                break;
                                case '/':
                                                printf("The result is:%d",val1/val2);
                                break;
                                default:
                                                printf("Invalid input!\a");
                                               
                }

After doing that compile your program and run. And your program it ready. Let’s use this program by performing different values and operation. And enjoy!

Watch This video How to make a console calculator in C programming

The source code of this program is:-

//This is a calculator program
#include<stdio.h>
#include<conio.h>
int main(){
                int val1,val2;
                char operation;
                printf("Enter value 1:");
                scanf("%d",&val1);
                printf("Enter operation:");
                scanf("%s",&operation);
                printf("Enter value 2:");
                scanf("%d",&val2);
               
                switch(operation){
                                case '+':
                                                printf("The result is:%d",val1+val2);
                                break;
                                case '-':
                                                printf("The result is:%d",val1-val2);
                                break;
                                case '*':
                                                printf("The result is:%d",val1*val2);
                                break;
                                case '/':
                                                printf("The result is:%d",val1/val2);
                                break;
                                default:
                                                printf("Invalid input!\a");
                                               
                }
getch();
}

I hope you enjoy this tutorial. If you have any question then please asks your question in comment box and we will reply you very soon. So at the end of this tutorial I will tell that please like comment and join our site for later updates and new tutorials. In some days I’m going to start a online money making course for everyone. So that’s why please join our site.

Monday 7 March 2016

Learn C programming in Urdu/Hindi videos


        In this course we will learn everything about “C” language. After reading the upper definition of “C” language you know that this is very important language that’s why I’ll try to make this course interesting and easy to understand as possible. In this course we will make some Games in “C” language. 

What is “C” language?

“C” is programming language which is the mostly used by programmers. There are many programming languages Java, VB and many other languages but “C” is a very famous and powerful programming language. You can develop any desktop software using “C” language. Many software developed in “C” language like VLC media player, Photoshop, Coral draw and many other software. So this is a very good programming language. You can create any type of software using this language. “C” language is base of every successful programmer. If you are successfully learned “C” then you will be able to learn every type of language.

Brief history of “C” language.

       “C” is a popular high level language. It was developed by Dennis Ritchie at At&T Bell Laboratories in 1972. C language was derived for of an earlier programming language called B. The “C” language basically developed for writing programs under UNIX operating system. The flexibility of “C” made it famous in the market. The earlier version of “C” was known as K&R (Kernighan and Rirchie). The American National Standard Institute (ANSI) developed the standard version of language. This new version of the language provided many new functions which were not available in the earlier versions. 

Start learning

Making first program

Write the program below in your compiler. You can use Turbo C++ or you can use Dev C++.

#include<stdio.h>
#include<conio.h>
Void main(){
Printf(“azeemIT.blogspot.com”);
}
Output:  azeemIT.blogspot.com

 Detail: “#include<stdio.h>” and” #include<conio.h>” are the header file or libraries of “C”. “Void main()” is a function which is used for start a program the actual written in this function. Printf() is built -in keyword provided by “C” for print something (which is written in the double quotes) on the screen. And semicolon “;” is called statement terminator which is used for ending statement. This program is the basic structure of “C” program. You must have to write these line of codes before writing your actual program.

 Variable?

       A variable is a named memory location. It is used to store program’s input data and its computational result during execution of program. The value of a variable may change during the execution of program but the name of variable cannot be changed.

Example of variable:   roll_no = 10;

Remember: you cannot be able to use space between the name of variable. You can use underscore        and. And you can also not be able to start variable name with numbers and special                    characters.

Data types

           There are four types of data in “C”. Which are Integer, Float, Character (String) and Boolean. These data types are used to define a variable before using. You must have to define the data type of variable which you are going to use.

See the data types below

Integer: Integer data type is defined as “int”. By using this data type you can just store numerical date like 0,1,2,3,4,5. It means you can just store numbers. You cannot be able to store names and special character like $,&.

Example of integer:  int roll_no = 50;

Float: In float data type you can store floating point data like 14.5 and 2.0 etc. You can use this data type by “float”.
Example of Float:   float height = 5.6;
Character (string): Character data type is defined by word “char” in “C”. This data type is used for storing character data like name and special characters etc.
Example of character: char dollar = ‘$’;
Boolean: Boolean data type is used for writing storing true or falls conditions. It is defined by word “bool”.

Example:  bool condition = true;
Comparing operators“==”:  

       This symbol is used for comparing two things. This is used for check whether the given condition is equal to. In “C” programming single equal to is used for assign some value to a variable and double equal to is used for comparing two variables.
Some other comparing operators are below. I thing you know about these signs which are below.
“>”  “<”  “>=”  “=<”  “!=”
If statement
”If” statement is used for checking some condition. “If” statement is a very good functionality of “C” language. The syntax of “If” statement is below.
If(condition){
This part will execute when the condition is true.
}
“else” statement
“else” statement will be executed if the condition is falls. It means that we use this statement when the given condition will not satisfy. See example.
 int student_age = 20;
Example: if(student_age < 18 ){
 printf(“welcome”);
}else{
Printf(“Sorry you are over age!”);
}
Output: Sorry you are over age!
Detail: In the above program I give the condition that if the student age is less than 18 then print “Welcome” or if the student age is greater than 18 then print “Sorry you are over age”. So this is the use of “if” and “else” statements.

Watch these videos to understand complete course in practical

First video of this course [ Introduction ]



Click and watch complete course on youtube

Admin feedback 

         I hope you enjoy this course. In this course I was try my best to teach you very well as possible. So now I’m waiting of your good feedback. Your good comments give me a new hope then I will provide you GUI course in “C” language for free. I will also provide you tutorials about some interesting programs and games. As usual I asked you if you have any question then please write your question the comment box.


Thursday 4 February 2016

Complete course of Adobe Photoshop CS 6


Hi! Guys my name is Muhammad Azeem Shami and I create this course for you.  In this course of Adobe Photoshop I will give you the training of Photoshop CS6 from basic to advance. I’m sure this tutorial series will be the best series forever because in this series I will provides you a huge collection projects in Photoshop. I’m always trying to give you something cool but easy to understand. That’s why I create this course because everyone tried to make beautiful images. Photoshop is a most famous image editing software. I think that you are crazy to watch this course. First of all read the outline of this course and then watch classes one by one.

Requirements for this course

 1. Adobe Photoshop CS6
 2. PC or Laptop

 I need to have any knowledge to get this course?

No! Even if you don’t know something about graphics and Photoshop then you also will be able to get this course. If you have already worked in Photoshop or graphics designing and you want to learn more then you can also get this course.

How much I learn from this course?

In this course we start training from beginners and will go to advance level. And also we make some professional projects in the end of this course.

Photoshop CS vs. Photoshop 7.0

Photoshop CS 6 is the latest version and Photoshop 7.0 is a oldest version of Photoshop. Some tools are missing in Photoshop 7.0 with respect to Photoshop CS 6. 

Please watch this video to get introduction of this course



Course outline

Section 1(Introduction)

1                       1)      Introduction
2                       2)      Discussing layers and properties of layers.
                   3)      Discussing tools one by one with proper detail. 
                                   ·         Move tool with properties
                       ·         Rectangular Marquee tool with properties
                       ·         Selection tools(Lasso tool and other)
                       ·         Magic wand and Quick selection tool
                       ·         Crop section tools
                       ·          Eyedropper section tools
                       ·         Spot handling section tools
                       ·         Brush tools
                       ·         Clone stamp and pattern tool
                       ·         History and art brush tool
                       ·         Eraser tools section
                       ·         Paint bucket and Gradient tool
                       ·         Blur tool section
                       ·         Dodge tool section
                       ·         Pen tool section
                       ·         Title tool section
                       ·         Path selection tool
                       ·         Shape tools
                       ·         Hand tool section
                       ·         Zoom tool  
1                  4)      Discussing menu one by one.
                  ·         File menu
                  ·         Edit menu
                  ·         Image menu
                  ·         Layer menu
                  ·         Type menu
                  ·         Select menu
                  ·         Filter menu (Most important)
                  ·         View menu
                  ·         Window menu
                  ·         Help menu  (How to use help section)

Section 2(Projects)

     1)      Text designing
     2)      Changing background of image
     3)      Changing eye colour.
     4)      Making hairs and beard.
     5)      Changing cloth colour
     6)      Making banners
     7)      Dress changing 

    Section 3(Tips)

1)      Tips and tricks about Photoshop

I hope you like this course. So please write comments and gives us your feedback. If you have any question then please writes your question in the comment box and we will give the answer of your question within a very short time. Share our videos to your friends because our aim is to provide knowledge to everyone.

Video Classes


After watching this course please give us your feedbacks.

Saturday 23 January 2016

How to earn money from fiverr in urdu

In this tutorial I will teach you how we can earn money from fiverr.com. Fiverr is a site that allows you to earn with your skill. If you have any skill about computer technology then you can do this job and get earn money from internet at your home. 

Working method of fiverr.com  

Different people pay money to fiverr for their need of work and then fiverr give you that money. For example someone want to design a logo for his site the he give you order but through fiverr and fiverr get money from him (which normally $5 because fiverr is a short jobs provider site) fiverr detect $1 and then gives you $4 for your work.

Watch this video for more detail

If you enjoy this tutorial then please write comments and join my site for later updates. 

Wednesday 13 January 2016

How to register IDM for life time (Urdu video)

Hello and welcome to this azeemIT.blogspt.com. In this tutorial I will teach you how to register IDM(Internet Download Manager ) for life time. This is a genuine method to install and get register IDM. You need just two software 1st is itself “IDM” and 2nd “IDM registration” software. These two software are available here for free.

Watch this video, and see how to do that




Download needed softwares

IDM

 Size:         4.29 MB (4,505,600 bytes)
 File type:                RAR

Download registration   

Size:         1.26 MB (1,323,008 bytes)
File type:                RAR

Registration method

1. First of all install IDM.
2. Run IDM and then close it.
3. Now install the 2nd software which is “Registration”.
4. After doing all these steps you will be able to enjoy IDM for life time.

For more information please watch this video.
Thank you for giving your important time for us. Please join our site for daily updates. 

Tuesday 1 December 2015

Earn money with adf.ly in urdu(video)

Adf.ly is a most famous and easy way to earn money without any investment.This is an easy and simple method to get money online in Pakistan or anywhere in the world. Its a really good way. If you don't have any education or any work experience. You can do that without any need of investment. I'm also work with adf.ly. Many online site give their ads to adf.ly and then adf.ly pay you money for visiting ads. So this is not complicated method. That's why everyone can do that.



For Register with spacial offers

Urdu method






Get paid to share your links!

Send us feedback or contact us if you have any problem.