Pages

Wednesday 31 July 2013

FOLDER LOCK 7 WITH SERIAL KEY DOWNLOAD HERE

FEATURES:

 LOCK FILES:
 Protect your data from unwanted access and visibility by blocking access to the files, folders, drives, and programs.
  •    Windows kernel level locking and filter driver makes it possible to lock files and folders in Windows  Safe Mode.
  • Folder Lock's easy to use and understand user-interface allows single-click data protection straight from the Context Menu.
  • SECURE BACKUP:
    • Upload all your private data you keep in your Lockers onto a cloud server without manually managing your backups.
    • Secure backup process is automatic and real-time, all changes or modification to your files in your 'Lockers' are synched.
    • Folder Lock is the only solution that offers this patent pending technology providing end-to-end data encryption and backup simultaneously.
    •  
      ENCRYPT FILES:
      • With Folder lock you can encrypt your personal files using 256-bit on-the-fly military grade encryption technology.
      • Create storage lockers which keep your important files encrypted, ensuring the integrity of your data's security.
      • Encrypted lockers are dynamic, smaller in size when created and grow as your data storage need increases.
      PROTECT USB/CD:
      • the Protect USB Drive feature.
      • With protect CD/DVD option; you can convert existing lockers to become portable and executable, enabling you to burn lockers onto a CD/DVD.
      • Send private and confidential email securely with encrypt email attachment feature, it allows users to send sensitive data over the internet securely.

      SHARED FILES:
      • Folder Lock's shred file feature enables you to securely delete personal data, removing all traces leading to your personal identity.
      • You can shred entire hard-drives to ensure that all data contained within that drive is securely deleted and cannot be recovered.
      • With Folder Lock's shred file feature, there's no limit to how many or what type of files you can delete.
      • and extra features also present folder lock 7. 


      download folder lock 7 software click here
      serial keys download here click

TRACE THE LOST MOBILE WITH THE IMEI NUMBER

FOLLOW THIS STEPS :
STEP 1:
             first  know your mobile imei number dial your phone *#06#. if your phone already lost then just look at the box at which your phone was packed just look at the sides of that box given there

     note:so write down the imei number some where as this will help you get back your lost mobile
STEP 2:
          next send the details of this email  cop@vsnl.net

sending details:
 NAME:
 ADDRESS:
 IMEI NUMBER:
 MODEL:
COMPANY:
 LAST USED NUMBER:
YOUR E MAIL FOR OMMUNICATION:
MISSED DATE:


             just send the details of this email cop@vsnl.net  and respond the within 24 hours your mobile is tracing and send where is your mobile present.

so another way of tracing your lost mobile and that is through this website
visit website:
                        http://www.trackimei.com

note down your imei number very useful if in future you lost your mobile number.

Tuesday 30 July 2013

INTERVIEW QUESITIONS(WRITE ANSWERS IN COMMMENT BOX)

1.WHAT IS DIFFERENCE BETWEEN VARCHAR AND VARCHAR2?
2.WHAT IS FIRST OBJECT ORIENTED PROGRAMMING LANGUAGE?

SERIAL KEY PDF ZILLA 3 CONVERTER PDF TO ANY FORMAT DOWNLOAD

 

PDF Conversion Formats Supported 

Output - PDF To:

MS Word(*.DOC), MS Excel(*.XLS), Plain Text(*.txt), Rich Text(*.RTF), JPEG(*.JPG), GIF(*.GIF), PNG(*.PNG), TIFF(*.TIF), Bitmap(*.BMP), Flash(*.SWF), Webpage(*.HTML).
PDF To Word PDF To XLS PDF To Text PDF To Flash PDF To Html PDF To RTF PDF To JPG PDF To GIF PDF To PNG PDF To TIFF PDF To BMP


Create - Image To PDF:
JPEG(*.JPG), GIF(*.GIF), PNG(*.PNG), TIFF(*.TIF), Bitmap(*.BMP), Photoshop(*.PSD), Icon(*.ico), PPM(*.PPM), TGA(*.tga).
JPG To PDF GIF To PDF PNG To PDF TIFF To PDF BMP To PDF PSD To PDF PPM To PDF ICO To PDF TGA To PDF


PDFZilla Key Features

Convert PDF to Word
Convert PDF to Word with all text and Graphical data.

Convert PDF to Excel
Convert PDF to MS Excel format so that you can edit and extract PDF forms.

Convert PDF to RTF
Convert PDF to Rich Text Files. You can edit all text and graphic by Windows Wordpad.

Convert PDF to TXT
Convert PDF to plain text files. You can edit text by Notepad.
Convert PDF to Images
Convert PDF to BMP, JPG, GIF or TIF files.

Convert PDF to HTML
Convert PDF to HTML files and automatically generate the Index file.

Convert PDF to SWF
Convert PDF to Shockwave Flash Animation files which can be published on websites.

Convert JPG to PDF
Create a PDF file from images like JPG/PNG/TIF/BMP/GIF etc.

Rotate, Merge and Cut PDF Files
You can rotate PDF files 90 & 180 degrees, or merge several PDF files into one, or delete and cut pdf pages.

Page Selection
Convert all the pages, or partial pages of PDF file.
Easy to use software

Add a PDF File -> Select the Output File Format -> Click on Start Converting button
DOWNLOAD TRIAL VERSIN 30 DAYS:
Download PDFZilla 

SERIAL KEY CLICK HERE

PROPERTIES OF RDBMS IN ORACLE

1.data should store in the form of a table.a table can be different as collection of rows&columns
A horizontal lines as Rows or Records/touples
A vertical lines are known as fields or attributes/columns
the intersection of  rows&columns is known as cell
                              a cell is a place where we can store or a data.the other name of table can be known as entity/object.
 table/entity/object:
             fields/attributes/columns

 rows/records/touples





2.table should not contain duplicate column
3.while do inserts the records the table user no need to follow any specific order.
4.data base should not contain duplicate objects 
5.while do defines columns in the table user follow no need to order

Saturday 27 July 2013

WHAT IS WRAPPER CLASS & WAHT IS BOXING & UNBOXING&WHAT IS AUTO BOXING&AUTO UNBOXING

WHAT IS WRAPPER CLASSES:
                   In order to represent the primitive data type values with the concept of object we are going to
use some pre defined classes.
            The classes which we are using to represent primitive data values in the form of object are called as WRAPPER CLASSES.
                    to represent the each&every primitive datatype value in the form of object there will be a corresponding class is available.




        




all the wrapper classes are present inside a predefined package called as java.lang

Integer i1=new Integer(100);
Integer i2=new Integer("123");



WHAT IS BOXING:
                     the concept of representing the primitive data type value in the form of it's equivalent wrapper class object is known as boxing.
 int i=200;
Integer i1=new Integer(i);//boxing


WHAT IS UNBOXING
:
                   the concept of getting back the primitive data value which is present inside wrapper class object to corresponding primitive data type value is known as unboxing>
              int i=100;
              integer i1=new integer(i)//boxing
              int j=i1.value()//unboxing
 in order to perform unboxing we are going to use the predefined methods which are present inside wrapper classes
ex:
        class wdemo()
         {
           public static void main()
           Integer i1=new Integer(100);
           system.out.println(i);
           Integer i2=new Integer("1234");
          system.out.println(i2);
           int i=i1.intvalue();
           int j=i2.intvalue();
           int k=i+j;
           system.out.println(k);
           Integer i3=new Integer();
              system.out.println("hello");
}
}

output:
              100   
              1234   
              1334
               hello

AUTO BOXING:
                    The concept of representing the primitive data value in the form of corresponding wrapper class object automatically by the jvm is known as auto boxing.
                    int i=100;
                    Integer i1=i;//integer i1=i Integer(i);

ex:
         int i=300;
         Integer i1=new Integer(400);
         int j=i+i1;


AUTO UNBOXING:
                          
                  The concept of geeting back the primitive data type value which is present inside wrapper class object automatically by the jvm is known as auto boxing.
                     Integer i2=new integer(200);
                      int j=i2//int j=i2.intvalue();

ex:
         int i=400;
         Integer i1=new Integer(300);
         Integer i2=i1+i;
ex:
        class wdemo2()
         {
             public static void main()
             {
              Integer i1=new Integer(100);
              Integer i2=new Integer("1234");
              Integer j=i1+i2;
              System.out.println(j);
               System.out.println("hello");
       }
     } 
output:
          1334
           hello   
              


                     

Friday 19 July 2013

DOWNLOAD JAVA SOFTWARE:Java SE Development Kit 7 Download

Java SE Development Kit 7 Downloads


Thank you for downloading this release of the Java Platform, Standard Edition Development Kit (JDK). The JDK is a development environment for building applications, applets, and components using the Java programming language.
The JDK includes tools useful for developing and testing programs written in the Java programming language and running on the Java platform.
Java Applet & Web Start - Code Signing 
Starting with Java SE 7u21 all Java Applets and Web Start Applications are encouraged to be signed with a trusted certificate.

Oracle Java SE Critical Patch Update Advisory - April 2013

World's Fastest Server for Java! This white paper describes the key features of Oracle Solaris that make it the best platform for deploying Java applications.

Oracle Security Alert for CVE-2013-1493 (March 4, 2013)

JDK 8 (with JavaFX) Early Access for ARM - An Early Access release of JDK 8, including JavaFX, on Linux for ARM processors is now available immediate download from Java.net.

for
Oracle Academy Introduces New Java Curriculum - Java Courses Allow Students to Graduate with Industry-Relevant Ski


download java software:

choose os and download it click here
note:enter into page first accept the license

Thursday 18 July 2013

HISTORY OF JAVA AND DOWNLOAD(PDF)

what is java:
            java is a object oriented,platform independent programming language from sun micro system which is released into the marked on the name of development of the distributed applications.

what is java slogan:
                      "Write Once Run Anywhere "(WORA)
java is a platform independent programming language.it means that program is written once and the program is executed irrespective of the operating system.

why java is suitable for internet:
     security problems on internet are eliminated through java.java is a system independent,java is executable on any platform
note:know the what is platform and what platform independent click

JAVA HISTORY:
  IN 1990,sun microsystems inc., USA is developed software for remotes..in 1993,oak language is developed,by that time some company is registered oak name,for this reason they named as "java".
in 1995,sun world conference has given entire details of java.

                                  about j2se and j2me and j2ee clck here
java software all copy rights are purchased oracle



CLICK HERE DOWNLOAD PDF DOCUMENT

Sunday 14 July 2013

Oracle database 11g software download

Oracle Database 11g Express Edition


Free to develop, deploy, and distribute


Oracle Database 11g Express Edition (Oracle Database XE) is an entry-level, small-footprint database based on the Oracle Database 11g Release 2 code base.  It's free to develop, deploy, and distribute; fast to download; and simple to administer.
Oracle Database XE is a great starter database for:
  • Developers working on PHP, Java, .NET, XML, and Open Source applications
  • DBAs who need a free, starter database for training and deployment
  • Independent Software Vendors (ISVs) and hardware vendors who want a starter database to distribute free of charge
  • Educational institutions and students who need a free database for their curriculum
With Oracle Database XE, you can now develop and deploy applications with a powerful, proven, industry-leading infrastructure, and then upgrade when necessary without costly and complex migrations.
Oracle Database XE can be installed on any size host machine with any number of CPUs (one database per machine), but XE will store up to 11GB of user data, use up to 1GB of memory, and use one CPU on the host machine.

download oracle software:
   note: click below and accept license and registered the oracle website and download         

Download Oracle Database Express Edition 11g Release 2 for Windows x32 click here
- Unzip the download and run the DISK1/setup.exe
- Does not work in Windows x64
Download Oracle Database Express Edition 11g Release 2 for Linux x64 click here
-Unzip the download and the RPM file can be installed as normal
 

JAVA EDITIONS AND WHAT IS JDK AND JRE

Sun micro systems provides ,with the advent of java,new versions had multiple configurations built for different types of platforms.those are
  • JSE
  • JEE
  • JME.
JSE:java platform,standard edition:
JSE stands for java platform,standard edition,it is specification used to develop fundamental
java application they may be standard or network.

JEE:java platform,enterprise edition:

 JEE stands for java platform, enterprise edition,it is specification used to develop business
solutions for network (or)JEE is specification that provides an environment to run the web components and the enterprise components.

 JME:java platform,micro edition:
JEE stands for java platform, micro edition,it is specification used for developing wireless and
embedded system.embedded system is software,which directly installed into hardware.
java software:
             java software is cotegorized in to two types
                JAVA=JDK+JRE

                                    


JDK:
           it stands for java development kit
JRE:
          it stands for java runtime environment 
          JRE=JVM+JAVA LIBRARY

if java programs have to run we required the jvm and java library.jvm will starts execution of java
program from main method only.
  • in java every statement must end with semi colon(;).
  • java is case sensitive programming language.

WEKA 3.7.9 SOFTWARE DIRECT DOWNLOAD



Weka is a collection of machine learning algorithms for data mining tasks. The algorithms can either be applied directly to a dataset or called from your own Java code. Weka contains tools for data pre-processing, classification, regression, clustering, association rules, and visualization. It is also well-suited for developing new machine learning schemes.
Found only on the islands of New Zealand, the Weka is a flightless bird with an inquisitive nature. The name is pronounced like this, and the bird sounds like this.
Weka is open source software issued under the GNU General Public License.

 DOWNLOAD WEKA SOFTWARE:
       weka 3.7.9 software CLICK HERE (52.11MB)

Friday 12 July 2013

NET BEANS IDE 7.3.1 SOFTWARE DIRECT DOWNLOAD

Below The following learning provide you with everything you need to know to develop applications using NetBeans IDE.

 


DIRECT  DOWNLOAD LINK:
  download net beans 7.3.1 click here (223.82MB)












HOW TO REPRESENT NUMBER SYSTEMS IN PROGRAMMING LANGUAGE???

In this real world we have 4 types of number systems they are:
1.binary number system           [format:0,1]
2.octal number system             [format:0,1----7]
3.decimal number system        [format:0,1-----9]
4.hexa decimal system             [format:0,1---9,a,b,c,d,e,f ] 
genarally we use the decimal number system in any programming language.

  In java we can represent the binary values by giving ob infront of the number
ex: int ob10;(correct)
     int x=o4235;(wrong)

representation of the binary number feature is introduced in java 1.7


we can represent the octal values in java programming language by giving o infront of the number
ex: int i=o24;(correct)
        int k=o248;(wrong)[because octal range 0-7]

we can represent the hexa decimal values in java programming language by giving ox infront of the number
ex: int i=ox123;(correct)
        int k=ox245a;(wrong)
         int k=123a;(wrong)

note:JVM takes the binary data ,octal data,decimal data,hexa decimal data convert in the form of decimal format and give the output as adecimal
example programme:
  class ndemo
{
public static void main(String args[])
{
  int i=24;
int j=o72;
int k=ox2a;
int l=ob10;
System.out.println(i);
System.out.println(j);
System.out.println(k);
System.out.println(l);
}
}
note:this programme run java 1.7 or above versions because binary values format does not suppport java 1.7 below versions.
output:
24
58
42
2


Friday 5 July 2013

HISTORY OF C LANGUAGE

In c family there are different languages like following the chart:
 

the language B was developed by ken thmson in the year 1968 at AT&T( American Telephone and Telegraph Company)Bell labs.
By adding the new features do a B language a new language was developed that is 'C'
  the C language was developed by denis ritche and ken thmson this language was developed in a time period from 1970-1973,but the major invention development was happend in the year 1972.
the c language was developed at AT&T bell labs.