by admin | Mar 9, 2025 | Number System
American Standard Code for Information Interchange 7 bit code originated in 1960s to standardize data interchange between computers & teleprinters ASCII SYMBOL 32 space 48 to 57 0 to 9 65 to 90 A to Z 97 to 122 a to z Example: Suppose a binary number...
by admin | Mar 9, 2025 | Computer Basics
4 bits (b) = 1 nibble 8 bits (b) = 1 byte (B) 1024 bytes (B) = 1 kilobyte (KB) 1024 kilobyte (KB) = 1 megabyte (MB) 1024 megabyte (MB) = 1 gigabyte (GB) 1024 gigabyte (GB) = 1 terabyte (TB) 1024 terabyte (TB) = 1 petabyte (PB) 1024 petabyte (PB) = 1 exabyte (EB) 1024...
by admin | Jan 25, 2024 | C Programming
Design 1: ############### #include<conio.h>#include<stdio.h>void main(){clrscr();int i,j;for(i=1;i<=5;i++){for(j=1;j<=i;j++){printf(“#”);}printf(“n”);}getch();} Design 3: 100111000011111...
by admin | Jan 25, 2024 | C Programming
Print “I love dogs” n times. #include<conio.h>#include<stdio.h>void main(){clrscr();int i,n;scanf(“%d”,&n);for(i=1;i<=n;i++){printf(“I love dogsn”);}getch();} Print even numbers from 1 to n....
by admin | Jan 25, 2024 | Mathematics
Suppose P is the initial amount (which is lent, deposited, invested or principal), t is the time or tenure & r is rate of interest, then Simple Interest (SI) can be calculated as below: From the above formula, Principal (P), Rate (r) & Time (t) can be...