GSEB - STUDENTS - CLASS 12 - FULL COURSE REVISION TEST
Full Course Test Click to give the online test
Full Course Test Click to give the online test
ONLINE TEST OF FULL COURSE (FOR STUDENTS GSEB: XII STD.) TEXT BOOK EXERCISE CONTENT Click here to start test.
ONLINE TEST OF CH NO. 4, 5 AND 6 (FOR STUDENTS GSEB: XII STD.) 0 Click here to start test.
Click here to download all the Java Programs
class Room { float length, width, height; byte nWindows; void setAttr (float l, float w, float h, byte n) { length=l; width=w;...
class nestedLoopDemo { public static void main(String args[]) { int n, flag, i, j; n=100; j=2; System.out.println("The...
class breakDemo { public static void main(String args[]) { int i, n=10; for(i=1;i<=n;i++) { if(i==5) continue; ...
class whileLoopDemo{ public static void main(String args[]) { int i=11, n=5; while(i<=n) { System.out.println(i); i+...
// Program-1 public class DemoIf { public static void main(String args[]) { int marks; String result; marks=20; if(marks>...
Download the File. Click here to Watch the Explanation & Developing Video