Thursday, 15 August 2013

How can I Install Java 6 in Window 7 ????

Hello my dear friends today I will tell you step by step procedure of installing Java 6 in window 7 with the help of video tutorials.But before starting Installation of Java 6 i will tell you something about Java 6.



                                                                  What Is Java ???



Java is a general-purpose, concurrent, class-based, object-oriented computer programming language that is specifically designed to have as few implementation dependencies as possible. It is intended to let application developers "write once, run anywhere" (WORA), meaning that code that runs on one platform does not need to be recompiled to run on another. Java applications are typically compiled to bytecode (class file) that can run on any Java virtual machine (JVM) regardless of computer architecture. Java is, as of 2012, one of the most popular programming languages in use, particularly for client-server web applications, with a reported 10 million users. Java was originally developed by James Gosling at Sun Microsystems (which has since merged into Oracle Corporation) and released in 1995 as a core component of Sun Microsystems' Java platform. The language derives much of its syntax from C and C++, but it has fewer low-level facilities than either of them.The original and reference implementation Java compilers, virtual machines, and class libraries were developed by Sun from 1991 and first released in 1995. As of May 2007, in compliance with the specifications of the Java Community Process, Sun relicensed most of its Java technologies under the GNU General Public License. Others have also developed alternative implementations of these Sun technologies, such as the GNU Compiler for Java and GNU Classpath.





Versions:-


Major release versions of Java, along with their release dates:-

  • JDK 1.0 (January 21, 1996)
  • JDK 1.1 (February 19, 1997)
  • J2SE 1.2 (December 8, 1998)
  • J2SE 1.3 (May 8, 2000)
  • J2SE 1.4 (February 6, 2002)
  • J2SE 5.0 (September 30, 2004)
  • Java SE 6 (December 11, 2006)
  • Java SE 7 (July 28, 2011)


Implementations:-


Oracle Corporation is the current owner of the official implementation of the Java SE platform, following their acquisition of Sun Microsystems on January 27, 2010. This implementation is based on the original implementation of Java by Sun. The Oracle implementation is available for Mac OS X, Windows and Solaris. Because Java lacks any formal standardization recognized by Ecma International, ISO/IEC, ANSI, or other third-party standards organization, the Oracle implementation is the de facto standard.
The Oracle implementation is packaged into two different distributions: The Java Runtime Environment (JRE) which contains the parts of the Java SE platform required to run Java programs and is intended for end-users, and the Java Development Kit (JDK), which is intended for software developers and includes development tools such as the Java compiler, Javadoc, Jar, and a debugger.OpenJDK is another notable Java SE implementation that is licensed under the GPL. The implementation started when Sun began releasing the Java source code under the GPL. As of Java SE 7, OpenJDK is the official Java reference implementation.The goal of Java is to make all implementations of Java compatible. Historically, Sun's trademark license for usage of the Java brand insists that all implementations be "compatible". This resulted in a legal dispute with Microsoft after Sun claimed that the Microsoft implementation did not support RMI or JNI and had added platform-specific features of their own. Sun sued in 1997, and in 2001 won a settlement of US$20 million, as well as a court order enforcing the terms of the license from Sun.As a result, Microsoft no longer ships Windows with Java.Platform-independent Java is essential to Java EE, and an even more rigorous validation is required to certify an implementation. This environment enables portable server-side applications.

 

Performance:-


Programs written in Java have a reputation for being slower and requiring more memory than those written in C++. However, Java programs' execution speed improved significantly with the introduction of Just-in-time compilation in 1997/1998 for Java 1.1, the addition of language features supporting better code analysis (such as inner classes, the StringBuffer class, optional assertions, etc.), and optimizations in the Java virtual machine itself, such as HotSpot becoming the default for Sun's JVM in 2000. As of December 2012, microbenchmarks show Java 7 is approximately 44% slower than C++.Some platforms offer direct hardware support for Java; there are microcontrollers that can run Java in hardware instead of a software Java virtual machine, and ARM based processors can have hardware support for executing Java bytecode through their Jazelle option.


Syntax:-


The syntax of Java is largely derived from C++. Unlike C++, which combines the syntax for structured, generic, and object-oriented programming, Java was built almost exclusively as an object-oriented language. All code is written inside a class, and everything is an object, with the exception of the primitive data types (e.g. integers, floating-point numbers, boolean values, and characters), which are not classes for performance reasons.Unlike C++, Java does not support operator overloading or multiple inheritance for classes. This simplifies the language and aids in preventing potential errors and anti-pattern design.Java uses similar commenting methods to C++. There are three different styles of comments: a single line style marked with two slashes (//), a multiple line style opened with /* and closed with */, and the Javadoc commenting style opened with /** and closed with */. The Javadoc style of commenting allows the user to run the Javadoc executable to compile documentation for the program.


Example::-

 
// This is an example of a single line comment using two slashes
 
/* This is an example of a multiple line comment using the slash and asterisk.
 This type of comment can be used to hold a lot of information or deactivate
 code, but it is very important to remember to close the comment. */
 
/**
 * This is an example of a Javadoc comment; Javadoc can compile documentation
 * from this text.
 */
 
/** Finally, an example of a method written in Java, wrapped in a class. */
package fibsandlies;
import java.util.HashMap;
 
public class FibCalculator extends Fibonacci implements Calculator {
    private static HashMap<Integer, Integer> memoized = new HashMap<Integer, Integer>();
 
    /** Given a non-negative number FIBINDEX, returns
     *  the Nth Fibonacci number, where N equals FIBINDEX.
     *  @param fibIndex The index of the Fibonacci number
     *  @return The Fibonacci number itself
     */
    @Override
    public static int fibonacci(int fibIndex) {
        if (memoized.contains(fibIndex)) {
            return memoized.get(fibIndex);
        } else {
            int answer = fibonacci(fibIndex - 1) + fibonacci(fibIndex - 2);
            memoized.put(fibIndex, answer);
            return answer;
        }
    }
}



Pls. Download or watch the video & follow these steps:-


(1.)    Firstly, Click on My Computer icon on your Desktop. 
  

(2.)    If there is no icon in your Desktop then Click on Start Button, move the cursor to Computer &
         Right click it & select open….. Or press window+E button with the help of your keyboard….





(3.)    Now  open the folder or file in which Java 6 Setup files are Stored…


(4.)    Now double click on setup icon & click on accept button.


(5.)    Now give the path by clicking on Change button. For example if u want to change 
         the path  from C:\ to D:\ then click on browse button select D drive & click on ok. The default 
         path is C:\Program Files (x86)\Java\jdk1.6.0_01\ 


(6.)   Now click on Next button & wait for a movement.



(7.)    Now Follow the Instruction as shown in video & At last click on Finish button .




                                                                “Admin …”





How can I Install MS OFFICE 7 in Window 7 ????

Hello my dear friends today I tell you step by step procedure of installing MS OFFICE 7 in window 7 with the help of video tutorials.But before starting Installation of MS OFFICE 7 i will tell you something about MS OFFICE 7.


                                                    What Is MS OFFICE 7???




Microsoft Office is an office suite of desktop applications, servers and services for the Microsoft Windows and OS X operating systems, introduced by Microsoft on August 1, 1989. Initially a marketing term for a bundled set of applications, the first version of Office contained Microsoft Word, Microsoft Excel, and Microsoft PowerPoint. Over the years, Office applications have grown substantially closer with shared features such as a common spell checker, OLE data integration and Microsoft Visual Basic for Applications scripting language. Microsoft also positions Office as a development platform for line-of-business software under the Office Business Applications brand. Office is reported to now be used by over a billion people worldwide.The current versions are Office 2013 for Windows, released on October 11, 2012; and Office 2011 for OS X, released October 26, 2010. On 24 October 2012, the RTM final code of Office 2013 Professional Plus was released to TechNet and MSDN subscribers for download. On 15 November 2012, the 60-day trial version of Office 2013 Professional Plus was released for download.



Components:-

 

                                                   MS Word



                                                    MS Excel

Microsoft Excel is a spreadsheet program that originally competed with the dominant Lotus 1-2-3, but eventually outsold it. It is available for the Windows and OS X platforms. Microsoft released the first version of Excel for the Mac OS in 1985, and the first Windows version (numbered 2.05 to line up with the Mac and bundled with a standalone Windows run-time environment) in November 1987.



                                                               Outlook/Entourage

Microsoft Outlook (not to be confused with Outlook Express) is a personal information manager and e-mail communication software. The replacement for Windows Messaging, Microsoft Mail, and Schedule+ starting in Office 97, it includes an e-mail client, calendar, task manager and address book.On the Mac OS, Microsoft offered several versions of Outlook in the late 1990s, but only for use with Microsoft Exchange Server. In Office 2001, it introduced an alternative application with a slightly different feature set called Microsoft Entourage. It reintroduced Outlook in Office 2011, replacing Entourage.



 

                                                                OneNote

Microsoft OneNote is a note-taking and free-form information gathering program, used with both tablet and conventional PCs. It gathers users' notes (handwritten or typed), drawings, screen clippings and audio commentaries. Notes can be shared with other OneNote users over the Internet or a network. Initially introduced as an optional Windows product that was not included in any of Microsoft Office 2003 editions, OneNote became a core component of Microsoft Office. With the release of Microsoft Office 2013, OneNote was included in all Microsoft Office offerings. OneNote is available as a freeware web application on SkyDrive or Office Web Apps, as a Windows desktop application, as a mobile app for Windows Phone, iOS, Android, and Symbians, and as a Metro-style app for Windows 8 or later.

 

                                                               MS PowerPoint

Microsoft PowerPoint is a presentation program for Windows and OS X. It is used to create slideshows, composed of text, graphics, and other objects, which can be displayed on-screen and shown by the presenter or printed out on transparencies or slides.

 

                                                             Other desktop applications


Other desktop applications included in Microsoft Office suite include:-
  • Microsoft Access: database manager for Windows
  • Microsoft InfoPath: Windows application for designing and distributing rich XML-based forms
  • Microsoft Publisher: desktop publishing app mostly used for designing brochures, labels, calendars, greeting cards, business cards, newsletters, and postcards.
  • Microsoft Lync: integrated communications client for conferences and meetings in real time (known as Microsoft Office Communicator in Office 2007, bundled with Professional Plus and Enterprise editions)
  • Microsoft Project: project management software to keep track of events and to create network charts and Gantt charts, not bundled in any Office suite
  • Microsoft Visio: diagram and flowcharting program not bundled in any Office suite
 The following applications are no longer part of Microsoft Office family:
  • Microsoft FrontPage: a discontinued HTML editor for Windows, it is no longer being produced, as the expansion of web proved that it is very difficult for one program to handle everything related to web contents development. It is replaced by Microsoft Expression Web (for web designers), Microsoft Visual Web Developer or Visual Studio (for web developers), Microsoft SharePoint Designer (for SharePoint developers), Internet Explorer Developer Tools (for testers) and Microsoft WebMatrix (for enthusiasts).
  • Microsoft SharePoint Designer: a specialized HTML editor for Windows that develops SharePoint sites, it is now a part of Microsoft SharePoint family and offered as an independent freeware download.
  • Microsoft SharePoint Workspace: a discontinued desktop application for Windows designed for document collaboration in teams with members who are regularly offline or who do not share the same network security clearance
  • Virtual PC for Mac: a discontinued Mac program that was once part of Microsoft Office for Mac

Common features;-


Most versions of Microsoft Office (including Office 97 and later) use their own widget set and do not exactly match the native operating system. This is most apparent in Microsoft Office XP and 2003, where the standard menus were replaced with a colored flat looking, shadowed menu style. The user interface of a particular version of Microsoft Office often heavily influences a subsequent version of Microsoft Windows. For example, the toolbar, colored buttons and the gray-colored '3D' look of Office 4.3 were added to Windows 95, and the Ribbon, introduced in Office 2007, has been incorporated into several applications bundled with Windows 7.Users of Microsoft Office may access external data via connection-specifications saved in "Office Data Connection" (.odc) files.Both Windows and Office use Service Packs to update software, Office used to release non-cumulative Service Releases, which were discontinued after Office 2000 Service Release 1.Programs in past versions of Office often contained substantial Easter eggs. For example, Excel 97 contained a reasonably functional flight-simulator. Versions starting with Office XP have not contained any easter eggs in the name of Trustworthy Computing.


Supported operating systems:-



Microsoft supports Office for the Windows and OS X platforms. Beginning with Mac Office 4.2, the OS X and Windows versions of Office share the same file format, and are interoperable. Visual Basic for Applications support was dropped in Microsoft Office 2008 for Mac but was restored in Microsoft Office for Mac 2011.Microsoft tried in the mid-1990s to port Office to RISC processors such as NEC / MIPS and IBM / PowerPC, but they met problems such as memory access being hampered by data structure alignment requirements. Microsoft Word 97 and Excel 97 however did ship for the DEC Alpha platform. Difficulties in porting Office may have been a factor in discontinuing Windows NT on non-Intel platforms.[citation needed]Stuart Cohen, CEO of Open Source Development Labs, conjectured in 2006 that Microsoft would eventually release a Linux port of Office, but no release was ever published. Other operating systems were only supported by Microsoft Office Mobile, which supports the more popular features of Microsoft Office, and is available for Windows Mobile.

Versions available

Microsoft Windows version Last version Mainstream support end-date Extended support end-date
Windows NT 3.51 with Service Pack 5 Office 97 August 31, 2001 February 28, 2002
Windows NT 4.0 Office XP July 11, 2006 July 12, 2011
Windows 95 without Service Pack Office 95 unknown unknown
Windows 95 with Service Pack 1 Office 97 August 31, 2001 February 28, 2002
Windows 95 with Service Pack 2 Office 2000 June 30, 2004 July 14, 2009
Windows 95 with Service Pack 2.5 Office 2000 June 30, 2004 July 14, 2009
Windows 98 Office XP July 11, 2006 July 12, 2011
Windows 2000 without Service Pack Office 2000 June 30, 2004 July 14, 2009
Windows 2000 with Service Pack 1 Office 2000 June 30, 2004 July 14, 2009
Windows 2000 with Service Pack 2 Office XP July 11, 2006 July 12, 2011
Windows 2000 with Service Pack 3 Office 2003 April 14, 2009 April 8, 2014
Windows 2000 with Service Pack 4 Office 2003 April 14, 2009 April 8, 2014
Windows Me Office XP July 11, 2006 July 12, 2011
Windows XP without Service Pack Office XP July 11, 2006 July 12, 2011
Windows XP with Service Pack 1 Office 2003 April 14, 2009 April 8, 2014
Windows XP with Service Pack 2 Office 2007 April 10, 2012 April 11, 2017
Windows XP with Service Pack 3 Office 2010 October 13, 2015 October 13, 2020
Windows Server 2003 Office 2003 April 14, 2009 April 8, 2014
Windows Server 2003 with Service Pack 1 Office 2007 April 10, 2012 April 11, 2017
Windows Server 2003 with Service Pack 2 Office 2010 October 13, 2015 October 13, 2020
Windows Vista Office 2007 April 10, 2012 April 11, 2017
Windows Vista with Service Pack 1 Office 2007 April 10, 2012 April 11, 2017
Windows Vista with Service Pack 2 Office 2010 October 13, 2015 October 13, 2020
Windows Server 2008 Office 2010 October 13, 2015 October 13, 2020
Windows Server 2008 R2 Office 2013 TBA TBA
Windows 7 Office 2010 October 13, 2015 October 13, 2020
Windows 7 with Service Pack 1 Office 2013 TBA TBA
Windows 8 Office 2013 TBA TBA
Mac OS version CPU Last version Support end-date
System 7.0-Mac OS 8.1 68K Office 4.2.1 December 31, 1996[citation needed]
System 7.1.2 PPC Office 4.2.1 December 31, 1996[citation needed]
System 7.5-Mac OS 8.0 PPC Office 98 June 30, 2003
Mac OS 8.1–9.2.2 PPC Office 2001 December 31, 2005
Mac OS X 10.1–10.5 PPC Office v. X January 9, 2007
Mac OS X 10.2–10.5 PPC Office 2004 January 10, 2012
Mac OS X 10.4–10.6 Universal Office 2008 April 9, 2013
Mac OS X 10.5–10.7 Intel Office 2011 January 12, 2016
OS X 10.8 Intel Office 2011 January 12, 2016

Pls. Download or watch the video & follow these steps:-


(1.)    Firstly, Click on My Computer icon on your Desktop. 
  

(2.)    If there is no icon in your Desktop then Click on Start Button, move the cursor to Computer & 
         Right click it & select open….. Or press window+E button with the help of your keyboard….


(3.)    Now  open the folder or file in which MS OFFICE 7 Setup files are Stored…


(4.)    Now double click on setup icon & paste the key as shown in video & click on continue button.


(5.)    Now click on Customize button & select the appropriate options as shown in video & Click on 
         Install Button & wait for a movement.


(7.)    At last click on Close button .




                                                                “Admin …”






How can I Install Winrar in Window 7 ????

Hello my dear friends today I tell you step by step procedure of installing  Winrar in window 7 with the help of video tutorials.But before starting Installation of Winrar i will tell you something about Winrar.



                                                    What Is WINRAR???




WinRAR is a shareware file archiver and data compression utility developed by Eugene Roshal and distributed by Alexander Roshal, first released in autumn of 1993. It is one of the few applications that is able to create RAR archives natively, because the encoding method is held to be proprietary. Command-line versions, simply called "RAR", exist for Mac OS X, Linux, and FreeBSD.



Features:-



WinRAR supports the following features:-


  • Complete support for RAR (WinRAR native conversion format) and ZIP archives, and unpacking of ARJ, LZH, TAR, GZ, ACE, UUE, BZ2, JAR, ISO, EXE, 7z, Z, and xz archives.
  • Multithreaded compression
  • The ability to create self-extracting and multi-volume (split) archives.
  • Data redundancy is provided via recovery records and recovery volumes, allowing reconstruction of damaged archives.
  • Support for advanced NTFS file system options and Unicode in file names.
  • Optional archive encryption using AES (Advanced Encryption Standard) with a 256-bit key.
In the past a portable version of WinRAR called WinRAR Unplugged existed. It didn't require installation, nor did it create dependencies on the host computer.

 

Version history:-



Below is a summary of notable WinRAR milestones. Version 2.00 was released on September 6, 1996.
  • Since version 3.00, the new RAR3 archive format is implemented. The new compressed archives cannot be managed by old versions of WinRAR.
  • Since version 3.50, WinRAR adds support for interface skins and themes and support Windows XP x64
  • Since version 3.60, WinRAR includes a multithreaded version of the compression algorithm, which improves compression speed on systems with multiple, dual-core, or Hyper-threading-enabled CPUs.
  • Since version 3.70, WinRAR features support for Windows Vista.
  • Since version 3.80, support for ZIP archives, which contain Unicode file names in UTF-8.
  • Since version 3.90, WinRAR adds support Windows x64 natively and support Windows 7. Also it enhanced support for multithreading.
  • Version 4.00 speeds up decompression by up to 30%. Windows 98, Windows Me, and Windows NT are no longer supported; the minimum Windows version required is Windows 2000.
  • Since version 4.10 WinRAR removes all ZIP limitations now allowing unlimited number of files and archive size. WinRAR now also allows to create multivolume ZIP files. ZIP archives now include Unicode file names.
  • Since version 4.20 Compression speed in SMP mode has been increased significantly, but this improvement was made at the expense of increased memory usage. ZIP compression now uses SMP as well. The default SMP mode cannot handle text; text compression is significantly worse unless additional switches are used. Also, Windows 2000 compatibility was removed.
  • Since version 5.00 Beta 1 the new RAR5 archive format is implemented. The new compressed archives cannot be managed by old versions of WinRAR. This new format features a maximum 1GB dictionary (only in 64bit version), better multicore support, it removes multimedia, text and itanium binaries special compression algorithms.



Pls. Download or watch the video & follow these steps:-


(1.)    Firstly, Click on My Computer icon on your Desktop. 
  

(2.)    If there is no icon in your Desktop then Click on Start Button, move the cursor to Computer & 
         Right click it & select open….. Or press window+E button with the help of your keyboard….


(3.)    Now  open the folder or file in whichWinrar Setup files are Stored…


(4.)    Now double click on setup icon .


(5.)    Now click on Install button


(6.)    Now Select the appropriate options as shown in Video. .


(7.)    Now Click on Ok Button  .

  
(8.)    Now Click on Done button ,At last click on Ok button & follow the appropriate options as 
          shown in video for activating the product for full version...



                                                                “Admin …”