Tuesday, 4 July 2023

LAB Records CMI Degree College

 2 YEAR IV SEMESTERLAB MANUALS BSC - JUNE 2023

1.PHYSICS

2.STATISTICS

  1. Applied statistics practicals download
  2. Sampling techniques and design of experiments practicals download

3.ELECTRONICS

4. COMPUTERS

Wednesday, 8 January 2020

Thursday, 31 October 2019

Package Test Program

PackageTest.java

import java.io.*;
import arithmetic.*;
class PackageTest
{
public static void main(String args[])throws Exception
{
BufferedReader br=new BufferedReader(new InputStreamReader(System.in));
int a,b,ch;
System.out.println("Enter Two Intger Values:");
a=Integer.parseInt(br.readLine());
b=Integer.parseInt(br.readLine());
System.out.println("1.Addition \n 2.Subtraction \n 3.Multiplication \n 4. Division \n Enter Your Choice");
ch=Integer.parseInt(br.readLine());
switch(ch)
{
case 1:
Add aobj=new Add();
int res1=aobj.getAdd(a,b);
System.out.println("Addition is :"+res1);
break;
case 2:
Sub sobj=new Sub();
int res2=sobj.getSub(a,b);
System.out.println("Subtraction is :"+res2);
break;
case 3:
Mul mobj=new Mul();
int res3=mobj.getMul(a,b);
System.out.println("Multiplication is :"+res3);
break;
case 4:
Div dobj=new Div();
float res4=dobj.getDiv(a,b);
System.out.println("Division is :"+res4);
break;
default:
System.out.println("Enter With in the choice");
break;
}

}
}


--------------------------------------------------------------------------------------
package arithmetic;
public class  Add
{
            public int  getAdd(int x,int y)
            {
                        return (x+y);
            }
}
--------------------------------------------
package arithmetic;
public class Div
{
            public float  getDiv(int x,int y)
            {
                        float r=(float)x/y;
                        return (r);
                       
            }
}
-------------------------------------
package arithmetic;
public class  Mul
{
            public int  getMul(int x,int y)
            {
                        return (x*y);
            }
}
------------------------------
package arithmetic;
public class  Sub
{
            public int  getSub(int x,int y)
            {
                        return (x-y);
            }

}

Thursday, 29 November 2018

Online Cluster Classes Streaming - Get Register


Click Here



Thanks for already registered users. I happy that some of you also doing practice. Feel Free to contact for more about clusters. Also please share your comments, suggestions, and doubts. 

Thursday, 2 November 2017

Wednesday, 12 July 2017

II Bsc-Java History class


How to compile and run simple java program. Click here for video

This is aclass explained about history of java in telugu. Click here for video

LAB Records CMI Degree College

  2 YEAR IV SEMESTERLAB MANUALS BSC - JUNE 2023 1.PHYSICS 2.STATISTICS Applied statistics practicals  download Sampling techniques and desig...