Search This Blog

Showing posts with label Free tutorial. Show all posts
Showing posts with label Free tutorial. Show all posts

July 23, 2015

How to Make Bootable USB (Pen Drive) Using Windows 8

Bootable usb pendrive using cmd

To create a bootable USB drive manually, we will use the Command Prompt as a Windows default program. Here are step by step to create a bootable USB drive as the Windows installation media. To create a bootable USB drive as a Windows installation media, we require at least 4 GB for minimum capacity. Larger capacity is better. At this moment, I use the USB flash drive with 2 GB of capacity as just an example. It's due to some reasons that my 4 GB flash drive encountered an unusual problem that i have to fix later.

Click Here For Windows 7 User

How to Make Bootable USB (Pen Drive) Using Windows 7


Bootable usb pendrive using cmd

To create a bootable USB drive manually, we will use the Command Prompt as a Windows default program. Here are step by step to create a bootable USB drive as the Windows installation media. To create a bootable USB drive as a Windows installation media, we require at least 4 GB for minimum capacity. Larger capacity is better. At this moment, I use the USB flash drive with 2 GB of capacity as just an example. It's due to some reasons that my 4 GB flash drive encountered an unusual problem that i have to fix later.

Click Here For Windows 8 User

July 17, 2015

How to Convert Android .apk to Source Code (Java and XML Code)


Finally we found a way to easily decompile Android apk to original java source code. Here are the instructions to decompile android apk to java source code. This method is also called as Reverse Engineering.

Android .apk to source code



August 13, 2014

Top 10 Best Social Media Sites for Business

Whether you are on the hunt for new customers, wanting to connect with your industry, needing to spread your marketing message further or simply looking for information about something - increasingly we are all turning to Social Media Sites. Below is a list of 10 influential Social Media sites for business:

August 12, 2014

How to Install Chitwanix OS in Your Computer Step by Step



Chitwanix OS is a Free and Open Source Operating system software developed from Chitwan, Nepal using Linux Kernel which is based on Free Open Source Software. Chitwanix OS is a Linux Distribution aiming to provide a highly User Friendly Interface and make easy for the new Linux User who jumps from Windows or Mac OSX to Linux. It is a revolution milestone after the MPP's Nepalinux and can be considered as the only active Operating System Development Project in Nepal. Chitwanix OS is developed from the best taste of Nepalease.

August 7, 2014

Most Useful Keyboard Shortcuts for Microsoft Excel


Using the shortcut keys can drastically save your of working time, dealing effectively with many small (but frequently repeated) actions.

July 22, 2014

How To Install Windows 7 Step-By-Step

Turn on your computer, insert the Windows 7 installation disc or USB flash drive, and then Shut down your computer.
Restart your computer.
Press any key( eg: F1, esc ) when prompted, and then follow below steps.


July 17, 2014

Best and easy way of adding Related post to blogger/blodspot

Related posts widget is very important for a blog, because it increases the number of page views and also help the visitor to view other posts related to blog. Now here is wonderful trick to display links to related posts below each posts or sides of blog.

July 15, 2014

How to Delete Images/Pictures from PDF File?

I will show you how to remove images from PDF by using the PDF. It allows you to edit PDF text, images, object, etc., whether you want to change their positions or just delete them.

Step 1. Open the PDF document from which you want to delete images in Adobe Acrobat

July 12, 2014

How to Add Contact Form to Blogger Page

Step 1: Add contact form gadget

Access your blog Layout. Click on any Add a Gadget link. An Add a Gadget window will be shown, click on More Gadgets, and choose add Contact Form.

On Configure Contact Form Widget window, click Save button.

July 10, 2014

Write a Program to find whether a number is Greater,Equal to or Less then 20

#include <stdio.h>
#include <conio.h>
int main( )
{
 int a;
printf("Enter a number");
        scanf("%d",&a);
if(a<20)
        printf("You have enter less then 20");

Write a Program to check whether a Number is exactly divisible by 3 but not by 5

#include <stdio.h>
#include <conio.h>
int main( )
{
int x;
printf("Enter a number");
scanf("%d",&x);

if(x%3==0 && x%5!=0)
{
printf("%d is exactly divisible by 3 but not by 5",x);

Write a Program to check whether a Number is exactly divisible by 3 or not

#include <stdio.h>
#include <conio.h>
int main( )
{
int x;
printf("Enter a number");
scanf("%d",&x);
if(x%3==0)
{

Write a Program to enter three Numbers and find the greatest one

#include <stdio.h>
#include <conio.h>
int main( )
{
int a,b,c;
printf("Enter the three numbers");
scanf("%d%d%d",&a,&b,&c);
if(a>b && a>c)
{
printf("%d is Gretest among %d,%d,%d",a,a,b,c);

Earn Money From Home