• Streams & Subjects

    Streams & Subjects

    Get detailed description of each and every topic with proper examples including text, images and videos.

  • Latest Technologies

    Latest Technologies

    Know more about the latest and new emerging technologies and boost your knowledge.

  • Programming

    Programming

    Don't learn just codes and syntax, instead learn the best and efficient way of coding.

  • Technologies

    New Technologies

    Get instant and relevant updates of the latest emerging technologies of lots of streams including web, clouds, virtualization, etc.

  • Freewares

    Freewares

    Download free trials and freewares of various fields and check out their efficiency before buying.

  • Multimedia

    Multimedia

    Learn techniques to design amazing and creative multimedia designs and characters including 2D & 3D layout with rendering.

9lessons:Ajax Upload and Resize an Image with PHP.

9lessons:Ajax Upload and Resize an Image with PHP.

Link to 9lessons Programming Blog

Ajax Upload and Resize an Image with PHP.

Posted: 30 Jul 2014 10:39 PM PDT

Today I am presenting the most important social networking feature called ajax upload and resize an image without refreshing the page using jquery and PHP. This tutorial a continuation of my previous post, I just included image re-sizing function for different dimensions. It is very useful for your web project that saves lots of hosting space and bandwidth limit. Take a quick look at the live demo.

 Ajax Upload and Resize an Image with PHP.

Read more »


Read more

C Programming

C Programming


Computer data storage Unit with Comparison their values

Posted: 26 Jul 2014 11:35 AM PDT

Q. What is data storage unit in computer? Compare the storage unit as bit, nibble, byte, kilobyte, megabyte, gigabyte, terabyte, pitabyte, exabyte and so on.

Ans. 

Storage unit is used to measurement of data. In other word the capacity of storage medium is measured in bytes.

There are various storage unit(smallest & biggest) available in the modern computer era. The smallest storage unit is bit. bit is also called binary digit(b) or simple "binary". Hence the value of bit is 0 or 1.

The following table shows the list of computer data storage unit as smallest to biggest:



S.No. Decimal(~) Storage Unit Comparison
1 - Bit (b) -
2 Nibble 4 bit = 1 Nibble
3 - Byte (B) 8 bit = 1 Byte
4 103 Kilobyte (K) 1024 Byte = 1 Kilobyte
5 106 Megabyte (M) 1024 Kilobyte = 1 Megabyte
6 109 Gigabyte (G) 1024 Megabyte = 1 Gigabyte
7 1012 Terabyte (T) 1024 Gigabyte = 1 Terabyte
8 1015 Petabyte (P) 1024 Terabyte = 1 Petabyte
9 1018 Exabyte (E) 1024 Petabyte = 1 Exabyte
10 1021 Zetta (Z) 1024 Exabyte = 1 Zettabyte
11 1024 Yottabyte (Y) 1024 Zettabyte = 1 Yottabyte
12 1027 Xonabyte (X) 1024 Yottabyte = 1 Xonabyte
Table: Computer data storage Unit with Comparison their values

Related Articles:

  1. Comparison of Million-Billion-Trillion V/S Lakh-Crore-Kharab
  2. How to convert any number to simple word C program?
  3. How to convert any number to grammatical word C program?


Read more

C++ Programs and Projects

C++ Programs and Projects


Largest of Two Nos

Posted: 08 Dec 2010 10:26 AM PST

Click Here To Download C++ File Of This Program

 //lar & small  
//Downloaded From www.c4cpp.co.nr. (C)2009.All rights reserved.
#include<iostream.h>
#include<conio.h>
void main()
{
clrscr();
int b,s,g=0,l=35000,n,i,a;
cout<<"Enter how many nos u want to enter"<<endl;
cin>>n;
for(i=1;i<=n;i++)
{
cin>>a;
if(a>g)
g=a;
if(a<l)
l=a;
}
cout<<"Big ="<<g;
cout<<"Small ="<<l;
getch();
}


Read more