12 GSEB | CHAPTER-3 HIGH LIGHTED NOTES
This pdf file is available free for students of the Guj. Secondary Education Board. Subject: Computer Studies Std. XII
This pdf file is available free for students of the Guj. Secondary Education Board. Subject: Computer Studies Std. XII
//Create a lucky number of your name using ASCII values. //E.g.: HELLO: H=8, E=5, L=12, L=12, O=15. //Sum of 8 + 5 + 12 + 12 + 15 = 52 ....
//Big Numbers from Random input. #include<iostream.h> #include<stdlib.h> #include<time.h> #include<string.h> #...
This pdf file is available free for students of the Guj. Secondary Education Board. Subject: Computer Studies Std. XII
This pdf file is available free for students of the Guj. Secondary Education Board. Subject: Computer Studies Std. XII
#include<iostream.h> #include<conio.h> #include<stdio.h> struct Student { int age; char name[20]; Student ...
#include<iostream.h> #include<conio.h> #include<stdio.h> struct Product { int id; char name[20]; Product *n...
#Function to Encrypt and Decrypt the String def encrypt (St, Key): return Key.join(St) def decrypt(St, Key): return St.split(K...
#Convert a decimal number to binary, octal and hexadecimal number #using built in functions def Dec2Others (num): print () bnu...
def Oct2Others (n): print () print ("The Octal Number :",n) numString= str (n) decNum=int(numString,8) ...
//String Functions public class StrDemo { public static void main(String args[]) { int len; //Ways of String initializations...
a=b=c=0 a= int ( input ("Enter first number:")) b= int ( input ("Enter second number:")) c= int ( input ("...
a=b=0 a= int ( input ("Enter first number:")) b= int ( input ("Enter second number:")) max=a; if (b>max)...
Download the File. Click here to Watch the Explanation & Developing Video