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