Nov 11, 2015

BED ICT -1 _Part ii My Answer

01)  (i)  Marks[2]=15
      (ii)  Marks[1] = Marks[3]
             Marks[3]=Marks[4]
             Marks[4]=Marks[1]
      (iii) Sector,Cl aster,Track  
      (iv) 128 Bit
       (v) Disk Operating System
       (vi) E:
              cd work
              E:\work>copy sample.txt D:\Work
       (vii)Control Panel\All Control Panel Items\Network and Sharing Center
       (viii)Control Panel\All Control Panel Items\Programs and Features
       (ix) Dynamic Host Configuration Protocol (DHCP) is a client/server protocol that automatically provides an                  Internet Protocol (IP) host with its IP address and other related configuration information such as the                      subnet mask and default gateway.
        (x)

02)
(i)  int[] MyAr = new int[10]
(ii) MyAr[0]=23
      MyAr[1]=45
      MyAr[2]=23
      MyAr[3]=45
     MyAr[4]=23
      MyAr[5]=45
     MyAr[6]=23
      MyAr[7]=45
     MyAr[8]=23
      MyAr[9]=45
(iii)  
    int[] marks =new int[10];
    marks[0]=23;
    marks[1]=56;
    marks[2]=67;
    marks[3]=32;
    marks[4]=56;
    marks[5]=123;
    marks[6]=56;
    marks[7]=167;
    marks[8]=432;
    marks[9]=656;

    int max=marks[0];
    for (int n=0;n<marks.length;n++){
          if (max>marks[n]){
           max=marks[n];
        }
    }
 System.out.print(max);
    }

03)
(i)
 import java.sql.*;


(ii)


 St.executeUpdate(sql);
      sql = "INSERT INTO SchMIS " + "VALUES (004, 'Nihal J.K', '12C')";
    
(iii)


(iv)


04)

(i)    X,Y,Z

(ii)  
 yoyoBG = new BranchGroup();
          // Make the apperance
 Appearance app = new Appearance();
            ColoringAttributes ca = new ColoringAttributes();
            ca.setColor(0.0f,1.0f,0.5f);
            app.setColoringAttributes(ca);
            //Start position
translate.set(new Vector3f(0.1f, 0.15f, 0.2f));
            TransformGroup  TGT = new TransformGroup(translate);
            BG.addChild(TGT);
            //Rotate
            rotate.rotZ(Math.PI*1.0d);
           TransformGroup  TGR = new TransformGroup(rotate);
            //Create the Cylinder
            Cylinder cy = new Cylinder(0.1f, 0.02f);
cy.setAppearance(app);
TGR.addChild(cy);
TGT.addChild(TGR); 

(iii)    a.  //Start position
translate.set(new Vector3f(0.3f, 0.4f, 0.2f));
            TransformGroup  TGT1 = new TransformGroup(translate);
            BG.addChild(TGT1);
          
            //Create the Cylinder
            Cylinder cy = new Cylinder(0.02f, 0.2f);
cy.setAppearance(app);
TGR.addChild(cy);
TGT1.addChild(TGR); 

         b.
            translate.set(new Vector3f(0.1f, 0.1f, 0.4f));
            TransformGroup  TGT2 = new TransformGroup(translate);
            BG.addChild(TGT2);
           Cylinder cy = new Cylinder(0.08f, 0.4f);
cy.setAppearance(app);
TGR.addChild(cy);
TGT1.addChild(TGR); 

No comments:

Post a Comment