Skip to main content

So let's go to the world of pen drives!!

Pen drive a word as small as its size, but very useful to store your data more securely. Here I am going to give you a roundup on pendrives.This post will help you to better understand about pen drives and sort out many confusions like- how to choose best pen drive online in India or Things to have in mind before buying a pendrive? Which will be the best choice? Why pen drives are used? And many more..
                              So let's go to the world of pen drives!!

What a pen drive is?

            So let's know what it is. A pen drive commonly known with different names such as flash drive, USB drive, USB stick and many more. Pen drive is basically a type of ROM i.e. EEPROM or Electrically erasable programmable read only memory. It is basically used to transfer data from one system to another.
            Previously at starting it was coming in less memory up to hundred megabytes but now a days it's available in large memory spaces that can store up to 120 GB or even more. The mainly in demand right now is pen drive 8 GB, pen drive 16 GB, pen drive 32 GB, and pen drive 64 GB. Pen drives are rewritable type of memory drive. Pen drives are used same as a CD but the main difference is that a pen drive is rewritable and compact so easily portable and having larger memory. Nowadays its been available in different speeds 2.0 and 3.0. It consists of a PCB with a USB connector. Now some pen drives comes with a USB connector on one side and OTG connector on other side so that it can directly connected to a mobile or tablet also. It's very easy to use a pen drive just has to plug and play you just have to know where the USB port is situated.

Why to use Pen drive?

The most common reason of using a pen drive is you don't have to carry a large and hard to carry hard drive you just have to carry a small piece of plastic that you can easily carry in your pocket or even as a key chain also. In present time the pen drive comes in lot of designs and become a fashion statement for people. Some of the popular pen drives are SanDisk 64GB Pendrive USB 3.0, SanDisk 16GB pendrive, Strontium annom 32GB pendrive, SanDisk 32GB Pendrive USB 3.0 etc.

What are the uses of Pen Drive?

The most common uses of pen drive are:

  • Transferring Data:-A person can easily transfer data from one system to another. He just have to plug in and copy from one system and paste in the other         system.
  • Taking backup:-If at any time you need to install Windows again and have to format data once for it you can easily take backup of important data in pen drive.
  • Speeding up computer or laptop:-A pen drive can also be used to speed up a computer by making it to work as RAM. In latest Windows Microsoft had introduced a feature of Ready Boost. It is basically when you plug in a pen drive you will get an auto play box having an option of speed up my system after choosing this option one another dialog box will appear having option of Dedicate this device to ready boost and use this device. You can simply select any of them and your device will start working as RAM.
  • Keeping essential data always with you:-A pen drive is having a space of some GB. You have some data that you have to carry always with you like some files related to your project, any photos or any other important documents. In that case you can easily store that data in pen drive and easily carry in your pocket.
  • Run a separate OS:-If anytime you want to run any other OS without making any             modification to hard disk then you can simply install it using a pen drive.
  • Run drop box or Google drive:-Sometimes you have to access data from cloud on a public computer a pen drive can be used to perform this task.
  • As a audio player:-Nowadays many companies are introducing pen drive with audio output and some are having rechargeable battery also with an audio jack.
  • Applications portability:-You can easily carry some of the applications like Mozilla, chrome            and many more and directly access to any computer by just             connecting pen drive without installing it to the computer.


Popular posts from this blog

25 Best Vue.js 2 Interview Questions and Answers

What Is Vue.js? The Vue.js is a progressive JavaScript framework and used to building the interactive user interfaces and also it’s focused on the view layer only (front end). The Vue.js is easy to integrate with other libraries and others existing projects. Vue.js is very popular for Single Page Applications developments. The Vue.js is lighter, smaller in size and so faster. It also supports the MVVM ( Model-View-ViewModel ) pattern. The Vue.js is supporting to multiple Components and libraries like - ü   Tables and data grids ü   Notifications ü   Loader ü   Calendar ü   Display time, date and age ü   Progress Bar ü   Tooltip ü   Overlay ü   Icons ü   Menu ü   Charts ü   Map ü   Pdf viewer ü   And so on The Vue.js was developed by “ Evan You ”, an Ex Google software engineer. The latest version is Vue.js 2. The Vue.js 2 is very similar to Angular because Evan ...

55 Best TypeScript Interview Questions and Answers - JavaScript!

What Is TypeScript? By definition, "TypeScript is a typed superset of JavaScript that compiles to plain JavaScript." TypeScript is a superset of JavaScript which provides optional static typing, classes and interfaces. => The TypeScript was first made public in the year 2012. => Typescript is a modern age JavaScript development language. => TypeScript is a strongly typed, object oriented, compiled language. => TypeScript was designed by Anders Hejlsberg (designer of C#) at Microsoft. => TypeScript is both a language and a set of tools. As an Example of TypeScript, class Hello {     msg : string ;      constructor ( message : string ) {          this . msg = message ;      }       getMsg () {          return "Hello, " + this . msg ;      } } TypeScript introduced a great deal...

.NET Core MVC Interview Questions and Answers

» OOPs Interview Questions Object Oriented Programming (OOP) is a technique to think a real-world in terms of objects. This is essentially a design philosophy that uses a different set of programming languages such as C#... Posted In .NET » .Net Constructor Interview Questions A class constructor is a special member function of a class that is executed whenever we create new objects of that class. When a class or struct is created, its constructor is called. A constructor has exactly the same name as that of class and it does not have any return type… Posted In .NET » .NET Delegates Interview Questions Delegates are used to define callback methods and implement event handling, and they are declared using the "delegate" keyword. A delegate in C# is similar to function pointers of C++, but C# delegates are type safe… Posted In .NET » ASP.Net C# Interview Questions C# was developed by Microsoft and is used in essentially all of their products. It is mainly used for ...

Angular 2, 4, 5, 6, 7, 8 and 9 Interview Questions and Answers -Books

» Are you preparing for Angular Interview? Buy this book (Including Angular 8, 7, 6, 5,4, 2) Interview Q/A Interview Q/A Interview Q/A Interview Q/A Interview Q/A Interview Q/A Interview Q/A » A Complete Guide Book of Angular 9 This is a concise, complete overview of the key aspects of Angular 9. It is fully up to date with the latest release of Angular. This article provide all the important aspects required for angular developers looking for brief and useful content... Posted In Angular 9 » A Complete Guide Book of Angular 8 This is a concise, complete overview of the key aspects of Angular 9. It is fully up to date with the latest release of Angular. This article provide all the important aspects required for angular developers looking for brief and useful content... Posted In Angular 8 » A Complete Guide Book of Angular 7 This is a concise, complete overview of the key aspects of Angular 7. It is fully up to date with the latest release of Angular. This ...

39 Best Object Oriented JavaScript Interview Questions and Answers

Most Popular 37 Key Questions for JavaScript Interviews. What is Object in JavaScript? What is the Prototype object in JavaScript and how it is used? What is "this"? What is its value? Explain why "self" is needed instead of "this". What is a Closure and why are they so useful to us? Explain how to write class methods vs. instance methods. Can you explain the difference between == and ===? Can you explain the difference between call and apply? Explain why Asynchronous code is important in JavaScript? Can you please tell me a story about JavaScript performance problems? Tell me your JavaScript Naming Convention? How do you define a class and its constructor? What is Hoisted in JavaScript? What is function overloadin...