Friday 5 January 2018

Head First pdf


Head First

Head First 
C# (2nd Edition)



Head First
Data Analysis


Head First
Networking


Head First
 Object-Oriented Analysis and Design



Head First
 PHP & MYSQL


Head First
 PMP

Head First
 Programming


Head First
 Python

Head First
 Servlets & JSP

Head First
 Android Development

Head First
 C

Head First
 Java

Head First
 C# (3rd Edition)

Head First
 HTML and CSS

Head First
 HTML5 Programming

Head First
 JavaScript Programming

Head First
 Ruby

Head First
 Software Development

Head First
 SQL

Head First
 Web Design


Sunday 8 January 2017

How to Speed up Windows 10 or 10.1 Computer Tricks 2017 Free and Easy !!

How To Make Your Windows 10.1 or 10 Faster In Just 6 Easy Steps | 100% FREE & SAFE | 2017


Fix slow running computer, boost your computer speed up to 200% Here is easy and quick fix for slow running computers, these tips are easy to perform even a non tech person can speed up their slow running computer.

please Subscribe the channel to get more videos 
https://youtu.be/5t3RZmcl55I




Follow these simple steps as shown in video here is list of 7 steps which you are going to perform.

Step 1. Adjust Power  Setting


Step 2. Adjust Performance Options


Step 3. Reduce Runtime Services


✔Command Mentioned : 


1 : msconfig


Step 4. Degrament and Optimize Drives


Step 5. Disable Unwanted Startup Programs


Step 6. Clean Up Memory and Unnecessary Temporary Files


✔Command Mentioned  :


1 : %temp%


2 : temp


3 : prefetch


Step 7. Registry Tweeks

✔Command Mentioned  : 

1: regedit


After performing above steps just Restart your computer and you will feel the difference.

Thursday 5 January 2017

How To Make Your Windows 8.1 or 8 Faster In Just 6 Easy Steps | 100% FREE & SAFE | 2017

How to Speed up Windows 8 or 8.1 Computer Tricks 2017 Free and Easy !!


Fix slow running computer, boost your computer speed up to 200% Here is easy and quick fix for slow running computers, these tips are easy to perform even a non tech person can speed up their slow running computer.

please Subscribe the channel to get more videos 
https://youtu.be/4kC4PbAAFsM


Follow these simple steps as shown in video here is list of 6 steps which you are going to perform.

Step 1. Adjust Power Savings Setting

Step 2. Degrament and Optimize Drives

Step 3. Disable Unwanted Startup Programs

Step 4. Clean Up Memory and Unnecessary Temporary Files

✔Command Mentioned  :

1 : %temp%

2 : temp

3 : prefetch

Step 5. Reduce Runtime Services

✔Command Mentioned : 

1 : msconfig

Step 6. Registry Tweeks

✔Command Mentioned  : 

1: regedit

After performing above steps just Restart your computer and you will feel the difference.

******************************­*
If any doubts , feel free to ask 
shout at comments , i will reply u soon
if u LiKe this YouTube video , please subscribe YouTube Channel !!
******************************­*************


Sunday 1 January 2017

Happy New Year 2017

Happy New Year 2017 Wishes Animated 3D Video 

Happy New Year ! May this new year all your dreams turn into reality and all your efforts into great achievements! Love and harmony to you and your family!.......

please Subscribe the channel to get more videos 
https://youtu.be/Fq4S8Zstj0A



Friday 30 September 2016

How to install Eclipse on Windows XP,7,8,10 step by step Guide

Downloading Eclipse

You can download eclipse software by visiting this 


The download page lists a number of flavors of eclipse.You will see two versions of eclipse. That is,  Eclipse Standard and  Eclipse IDE for Java EE Developers.


I recommend you to download  Eclipse IDE for Java EE Developers version.

To download that, just choose 32-bit or 64-bit setup according to you computer version. Once you click on any setup link, it will take you to the next page where it contains download link.

In this page look at right side of that page, you will see  Other options for this file  column. In that, choose  Direct link to file  to begin download of eclipse software.

Now we have downloaded Java JDK software and  Eclipse IDE for Java EE Developers software on our PC. It’s time for installation now



Mathematical Calculations

QBasic was obviously created for us to have fun, play games, draw nice graphics and even make sounds.

But, as you might guess, nothing good comes without a bit of effort that has to be put in it. In the most QBasic programs a bit of math has to be done.

The math… Doh!

If you hate mathematics, don’t worry. QBasic will do it all for you, you just need to know how to tell
QBasic to do that.


QBasic can perform the following mathematical operations:

 Operator
 What it does
 Example
  Result
 +
 Add
 7 + 2
 9
 -
 Subtract
 7 – 2
 5
 *
 Multiply
7 * 2 
 14
 /
 Divide
 7 / 2
 3.5

Examples:

1.  a = 15 / 4 + 3
    PRINT a
    Result on the screen – 6

2. PRINT “Enter the first number”
    INPUT a
    PRINT “Enter the second number”
    INPUT b
    c = a + b
    d = a * b
    PRINT a; “+”; b; “=”; c
    PRINT a; “*”; b; “=”; d
    END

When you run this program it goes like this:

Computer: Enter the first number
You: 22
Computer: Enter the second number
You: 18
Computer: 22 + 18 = 40
22 * 18 = 396

Advanced operations:

Operator 
 What it does
  Example
 Result 
 \ 
 divides and turns the result into an
integer (the whole number)
 7 \ 2 
3 
 ^
 Raises a number to the power of
another number
 3 ^ 4
(means: 3 * 3 * 3 * 3)
2.5 ^ 3
(means:2.5 * 2.5 * 2.5)
243
15.625 
 SQR
 Calculates the square root of a
number
 SQR(9)
  SQR(16)
SQR(5)
(because: 
3 ^ 2 = 9)
4
(because: 
4 ^ 2 = 16)
2.236 
 MOD
 Divides two numbers, and if the
result is not an integer (for example
- 3.25), finds out how much to
subtract from the first number in
order to get the integer result.
 17 MOD 5
2
(because:
 17 / 5 = 3.4
17 – 2 = 15
15 / 5 = 3) 

The following program explains MOD. Type this program (except my comments) into QBasic accurately and run it to see how MOD works.

1 CLS                                       this command clears the screen, so it’s empty
INPUT "Enter the first number "; a
INPUT "Enter the second number "; b
IF b = 0 THEN         checks if the second number is zero, because you can’t divide by zero
PRINT "the second number cannot be 0. Try again."
DO: LOOP WHILE INKEY$ = ""   waits for you to press a key to continue
GOTO 1                                  then sends you back to line 1
END IF
CLS                                       clear the screen again
c = a MOD b
d = a / b
e = a - c
f = e / b
PRINT a; "MOD"; b; "="; c
IF c = 0 THEN        this checks if the result of a MOD b = 0, because it means that  the result of a / b is                                          integer
PRINT "because"; a; "/"; b; "="; d; " - integer. Try again."
DO: LOOP WHILE INKEY$ = ""   waits for you to press a key to continue
GOTO 1                                     then sends you back to the line 1
END IF
PRINT "because"; a; "/"; b; "="; d; " -not integer"
                                                                       The rest of the program executes if the
PRINT "but"; a; "-"; c; "="; e      result of a / b is not integer
PRINT "and"; e; "/"; b; "="; f; " - integer"
END

This program may look very complicated for you, but don’t worry. QBasic is a very easy language to learn and soon you’ll be having fun with it. 
I promise you!


Wednesday 28 September 2016

Java JDK

Set-up Java Development Kit (JDK)



You can download the latest version of Java JDK from Oracle's Java site:

1
In java, we are going to download  Java Development Kit  (JDK).  To download jdk visit this page and scroll down little you will see 3 options like JDK Download, Server JRE Download and JRE Download. Scroll down until you find Java SE 8 and  download JDK.


2
All we need to do is, select first one. That is,  JDK Download and click on Download button.
Now you will be taken to other page.  In that page choose “Accept License Agreement” option and then look for  Windows x86 and Windows x64 and click download button according to your OS version. (Windows, Mac, Linux, etc.)
For me, I’m having 64-bit OS version so I downloaded windows x64 setup file.


3
Once the download is complete, double click the file to begin the installation of JDK.

You will find instructions for installing JDK in downloaded files, follow the given instructions to install and configure the setup. Finally set PATH and JAVA_HOME environment variables to refer to the directory that contains java and javac , typically java_install_dir/bin and java_install_dir respectively.
If you are running Windows and installed the JDK in C:\jdk1.6.0_15, you would have to put the following line in your C:\autoexec.bat file.
set PATH=C:\jdk1.8.0_91\bin;%PATH%
set JAVA_HOME=C:\jdk1.8.0_91
Alternatively, 

1. Open windows explorer by pressing Win+E key on your keyboard
2. Now in that window, Right-click on  My Computer (This PC on Windows 8) and choose Properties option.


3.  Click “Advanced system settings” and choose “Advanced” tab and then click on “Environment Variables…


4. In System variables click New… button and fill
Variable name:  PATH
Variable value:  C:\Program Files\Java\jdk1.7.0_45\bin;
after filling press ok button.
Tip: Now use the copied path during installation here. Make sure you are pasting  bin directory path, not the copied path.
Note: In System variable look for Path variable. If you found PATH variable, select it and click edit button and fill the above data. In variable value just add ; before adding new path.
Ex:
C:\Program Files\Java\jdk1.7.0_45\bin;C:\Program Files (x86)\QuickTime\QTSystem\
If you don’t find Path variable then you create new one.

5. Now we need to set Class Path for Java. To set Class path, go to User variables  and click New…button

Now in pop up window enter
Variable name:  CLASS
Variable value:  C:\Program Files\Java\jdk1.7.0_45\lib
Tip:  Now use the copied path during installation here. Make sure you are pasting lib  directory path, not the copied path.
and click OK and again click OK to close Environment Variable window.

On Linux,
if the SDK is installed in /usr/local/jdk1.7.0_45 and you use the C shell, you would put the following code into your .cshrc file.
setenv PATH /usr/local/jdk1.7.0_45/bin:$PATH
setenv JAVA_HOME /usr/local/jdk1.7.0_45
Alternatively, if you use an Integrated Development Environment (IDE) Eclipse, then it will know automatically where you have installed your Java.