Skip to main content

Computer Full Forms

COMPUTER - full form or meaning is : 

Common Operating Machine Purposely Used for Technological and Educational Research.


COMPUTER ABBREVIATIONS


CPU - Central Processing Unit

RAM - Random Access Memory

ROM - Read Only Memory

PROM - Programmable Read Only Memory

EPROM - Erasable PROM

EEPROM - Electrically EPROM

HDD - Hard Disk Drive

FDD - Floppy Disk Drive

KBD - KeyBoard

I/O - Input & Output

CD - Compact Disk

DVD - Digital Video Disk

SMPS - Switch Mode Power Supply

POST - Power ON Self Test

BIOS - Basic Input Output System

VDU - Visible Display Unit

LED - Light Embedded Diode

LCD - Liquid Crystal Display

USB - Universal Serial Bus

VGA - Video/Visual Graphic Adapter

LAN - Local Area Network

WAN - Wide Area Network

MAN - Metropolitan Area Network

HLL - High-Level Language

LLL - Low-Level Language

MIPS - Million of Instruction Per Second

Mbps - Mega Bytes Per second

Kbps - Kilo Bytes per second

HTTP - Hyper Text Templates

WWW - World Wide Web

IP - Internet Protocol

ISP - Internet Service Provider

HTTP - Hyper Text Transfer Protocol.

HTTPS - Hyper Text Transfer Protocol Secure.

IP - Internet Protocol.

URL - Uniform Resource Locator.

USB - Universal Serial Bus.

VIRUS - Vital Information Resource Under Seized.

3G - 3rd Generation.

GSM - Global System for Mobile Communication.

CDMA - Code Division Multiple Access.

UMTS - Universal Mobile Telecommunication System.

SIM - Subscriber Identity Module.

AVI - Audio Video Interleave

RTS - Real-Time Streaming

SIS - Symbian OS Installer File

AMR - Adaptive Multi-Rate Codec

JAD - Java Application Descriptor

JAR - Java Archive

JAD - Java Application Descriptor

3GPP - 3rd Generation Partnership Project

3GP - 3rd Generation Project

MP3 - MPEG player lll

MP4 - MPEG-4 video file

AAC - Advanced Audio Coding

GIF - Graphic Interchangeable Format


4 Bits = 1 Nibble

8 Bits = 1 Byte

1024 Bytes = 1 Kilo Byte ( KB )

1024 KB = 1 Mega Byte ( MB )

1024 MB = 1 Gyga Byte ( GB )

1024 GB = 1 Tera Byte ( TB )

1024 TB = 1 Peta Byte ( PB )

1024 PB = 1 Exa Byte ( EB )

1024 EB = 1 Zetta Byte ( ZB )

1024 ZB = 1 Yotta Byte ( YB )

Comments

Popular posts from this blog

Object Oriented and Relational Database

Object Relational and Object-Oriented Database What Is Object Relational Database? An object-relational database (ORD) is a database management system (DBMS) that’s composed of both a relational database (RDBMS) and an object-oriented database (OODBMS). An object-relational database acts as an interface between relational and object-oriented databases because it contains aspects and characteristics from both models. Object-oriented database (ORD) serves two main purposes: It connects the divide between relational databases and the object-oriented modeling techniques that are usually used in programming languages like C#, Java and C++. It bridges the gap between conceptual data modeling techniques for relational and object-oriented databases like entry-relationship diagram (ERD) and object-relational mapping (ORM). What Is Object Oriented Database? An object-oriented database is organized around objects rather than actions and data rather than logic. Therefore, an object database is a d...

Languages in DBMS

Languages in DBMS Structured Query Language(SQL) as we all know is the database language by the use of which we can perform certain operations on the existing database and also we can use this language to create a database. SQL uses certain commands like Create, Drop, Insert, etc. to carry out the required tasks. These SQL commands are mainly categorized into five categories as: DDL – Data Definition Language DQL – Data Query Language DML – Data Manipulation Language DCL – Data Control Language TCL – Transaction Control Language Now, we will see all of these in detail. DDL (Data Definition Language): DDL or Data Definition Language actually consists of the SQL commands that can be used to define the database schema. It simply deals with descriptions of the database schema and is used to create and modify the structure of database objects in the database. DDL is a set of SQL commands used to create, modify, and delete database structures but not data. These commands are normally ...

All About Microservices Architecture

All About Microservices Architecture **Microservices Architecture** is an approach to software development where a large application is broken down into smaller, independent services that can operate and be deployed independently. Instead of building a monolithic application, which is a single, tightly-integrated unit, microservices architecture divides the functionality into separate services that communicate with each other through well-defined APIs (Application Programming Interfaces). Key characteristics of microservices architecture include: 1. **Modularity:** Each microservice represents a specific business capability and can be developed, deployed, and scaled independently. 2. **Independence:** Microservices are autonomous, meaning they can be developed, deployed, and updated without affecting the entire system. This independence allows for faster development cycles. 3. **Scalability:** Since each service is independent, you can scale only the specific microservices that require...