Entries by Student

write my assignment 1710

2. You are pulling an cube at 8 degrees with respect to the plane. The cube weighs 15 N, and the magnitude of your force is 40 N. If you are pulling the cube with a constant velocity what is the Normal Force on the object in Newtons?

3. You are pulling an cube at 5 degrees with respect to the plane. The cube weighs 16 N, and the magnitude of your force (F) is 31 N. If you are pulling the cube with a constant velocity what is Fx ?

4. You are pulling an cube at 7 degrees with respect to the plane. The cube weighs 7 N, and the magnitude of your force is 7 N. If you are pulling the cube with a constant velocity what is coefficient of kinetic friction?

 

"Not answered?"


Get the Answer

write my assignment 7790

DIC Ltd. provides the following data:Comparative trial balanceMarch 31 year 2 March 31 year 1 Increase(Decrease)Debit Balance 20 10 10Cash Rs.190 Rs. 90 Rs.100Working capital (other than cash) 100 200 (100)Investment (Long term) 500 400 100Building and equipment 40 50 (10)Total 850 750 100CreditAccumulated Depreciation 200 160 40Bonds 150 100 50Reserves 350 350 —Equity Shares 150 140 103Total 850 750 100Income StatementFor the period ending March 31, year 2(Amount in Rs lakh)Sales Rs.1000Cost of Goods Sold 500Selling Expense Rs.50Administrative Expenses 50 100Operating Income 400Other chargesGain on sale of building and equipment Rs 5Loss on sale of investments (10)Interest (6)Taxes (189) (200)Net Income after taxes 200Notes: (a) The depreciation charged for the year was Rs.60 Lakh(b) The Book value of the building and equipment disposed was Rs 10 Lakh(c)Prepare a Cash Flow Statement (Based on AS-3)

 

"Not answered?"


Get the Answer

write my assignment 31266

Hi, previously I requested assistance with Java programming question. I now need to further modify the below code to add additional functionality. The requirements for specific functionality is below.

The customer is pleased with the first set of functionality and features added to the business application in Week 2. This week the customer wants you to add functionality and features to the application you created last week.

Modify the deliverable from Week 2 to:

  • Include a combo box for the locations with five cities of your choice.
  • Modify the food field to make it automatically place a value in that field based on the location selected.
  • The values for the food field will be 70 when the first location is selected, 80 when the second location is selected.
  • The food values will then increase by 5 for the remaining locations when selected.
  • Add to the car field to allow for three rental car companies to select from using a radio button.
  • The value for the cost of the rental car will remain as a text field.

This is the existing code requiring modification.

—————————————————————————————————————————————————————————————————————————-

public class NewJFrame2 extends javax.swing.JFrame {

  public NewJFrame2() {

    initComponents();

  }

  @SuppressWarnings(“unchecked”)

  private void initComponents() {

// Create the labels using Java Swing 

    label1 = new java.awt.Label();

    label2 = new java.awt.Label();

    label3 = new java.awt.Label();

    label4 = new java.awt.Label();

    label5 = new java.awt.Label();

    label6 = new java.awt.Label();

    jTextField1 = new javax.swing.JTextField();

    jTextField2 = new javax.swing.JTextField();

    jTextField3 = new javax.swing.JTextField();

    jTextField4 = new javax.swing.JTextField();

    jTextField5 = new javax.swing.JTextField();

    jTextField6 = new javax.swing.JTextField();

    jButton1 = new javax.swing.JButton();

    label7 = new java.awt.Label();

    setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE);

// assign label text and button listening event. 

    label1.setText(“Traveler name “);

    label2.setText(“Airfare cost “);

    label3.setText(“Food cost “);

    label4.setText(“Car cost “);

    label5.setText(“Hotel cost “);

    label6.setText(“Shuttle cost “);

    jButton1.setText(“Calculation Total”);

    jButton1.addActionListener(new java.awt.event.ActionListener() {

      public void actionPerformed(java.awt.event.ActionEvent evt) {

        jButton1ActionPerformed(evt);

      }

    });

    javax.swing.GroupLayout layout = new javax.swing.GroupLayout(getContentPane());

    getContentPane().setLayout(layout);

    layout.setHorizontalGroup(

      layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)

      .addGroup(layout.createSequentialGroup()

        .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)

          .addGroup(layout.createSequentialGroup()

            .addGap(123, 123, 123)

            .addComponent(label7, javax.swing.GroupLayout.PREFERRED_SIZE, 409, javax.swing.GroupLayout.PREFERRED_SIZE))

          .addGroup(layout.createSequentialGroup()

            .addContainerGap()

            .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.CENTER)

              .addComponent(label6, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)

              .addComponent(label1, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)

              .addComponent(label2, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)

              .addComponent(label5, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)

              .addComponent(jButton1)

              .addComponent(label3, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)

              .addComponent(label4, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE))

            .addGap(179, 179, 179)

            .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)

              .addComponent(jTextField1, javax.swing.GroupLayout.PREFERRED_SIZE, 184, javax.swing.GroupLayout.PREFERRED_SIZE)

              .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.TRAILING, false)

                .addComponent(jTextField6, javax.swing.GroupLayout.Alignment.LEADING, javax.swing.GroupLayout.DEFAULT_SIZE, 70, Short.MAX_VALUE)

                .addComponent(jTextField5, javax.swing.GroupLayout.Alignment.LEADING)

                .addComponent(jTextField4, javax.swing.GroupLayout.Alignment.LEADING)

                .addComponent(jTextField3, javax.swing.GroupLayout.Alignment.LEADING)

                .addComponent(jTextField2, javax.swing.GroupLayout.Alignment.LEADING)))))

        .addContainerGap(123, Short.MAX_VALUE))

    );

    layout.setVerticalGroup(

      layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)

      .addGroup(layout.createSequentialGroup()

        .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)

          .addComponent(label1, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)

          .addComponent(jTextField1, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE))

        .addGap(21, 21, 21)

        .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)

          .addComponent(label2, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)

          .addComponent(jTextField2, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE))

        .addGap(30, 30, 30)

        .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)

          .addComponent(label3, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)

          .addComponent(jTextField3, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE))

        .addGap(29, 29, 29)

        .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)

          .addComponent(label5, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)

          .addComponent(jTextField4, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE))

        .addGap(26, 26, 26)

        .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)

          .addComponent(label4, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)

          .addComponent(jTextField5, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE))

        .addGap(23, 23, 23)

        .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)

          .addComponent(label6, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)

          .addComponent(jTextField6, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE))

        .addGap(28, 28, 28)

        .addComponent(jButton1)

        .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED, 41, Short.MAX_VALUE)

        .addComponent(label7, javax.swing.GroupLayout.PREFERRED_SIZE, 121, javax.swing.GroupLayout.PREFERRED_SIZE)

        .addGap(19, 19, 19))

    );

    pack();

  }            

  private void jButton1ActionPerformed(java.awt.event.ActionEvent evt) {                     

//Declare variables to hold data. Set total to equal data values held in arfare,food hotel, car and shuttle

String Travelername = jTextField1.getText();

double Airfarecost = Double.parseDouble(jTextField2.getText()) ;

double Foodcost = Double.parseDouble(jTextField3.getText()) ;

double Hotelcost = Double.parseDouble(jTextField4.getText()) ;

double Carcost = Double.parseDouble(jTextField5.getText()) ;

double Shuttlecost = Double.parseDouble(jTextField6.getText()) ;

double total = Airfarecost+Foodcost+Hotelcost+Carcost+Shuttlecost;

//add ten percent of cost to total value by multiplying total by 0.1 

 total = total + total*0.1;

label7.setText(“The travel cost is “+total);

  }                     

  public static void main(String args[]) {

    try {

      for (javax.swing.UIManager.LookAndFeelInfo info : javax.swing.UIManager.getInstalledLookAndFeels()) {

        if (“Nimbus”.equals(info.getName())) {

          javax.swing.UIManager.setLookAndFeel(info.getClassName());

          break;

        }

      }

    } catch (ClassNotFoundException ex) {

      java.util.logging.Logger.getLogger(NewJFrame2.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);

    } catch (InstantiationException ex) {

      java.util.logging.Logger.getLogger(NewJFrame2.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);

    } catch (IllegalAccessException ex) {

      java.util.logging.Logger.getLogger(NewJFrame2.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);

    } catch (javax.swing.UnsupportedLookAndFeelException ex) {

      java.util.logging.Logger.getLogger(NewJFrame2.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);

    }

    java.awt.EventQueue.invokeLater(new Runnable() {

      public void run() {

        new NewJFrame2().setVisible(true);

      }

    });

  }

  private javax.swing.JButton jButton1;

  private javax.swing.JTextField jTextField1;

  private javax.swing.JTextField jTextField2;

  private javax.swing.JTextField jTextField3;

  private javax.swing.JTextField jTextField4;

  private javax.swing.JTextField jTextField5;

  private javax.swing.JTextField jTextField6;

  private java.awt.Label label1;

  private java.awt.Label label2;

  private java.awt.Label label3;

  private java.awt.Label label4;

  private java.awt.Label label5;

  private java.awt.Label label6;

  private java.awt.Label label7;

}

—————————————————————————————————————————————————————————————————————————-

 

"Not answered?"


Get the Answer

write my assignment 24232

Hello, I am looking for someone to write an essay on Cyber securiy and cloudl computing. It needs to be at least 5000 words.

several information technology (IT) based processing including cloud computing, social media networking, international communication, and global positioning system (GPS) navigation. Another aspect of the revolution is accessibility of the internet, whereby it has become easier for a person to have access to the internet today than two decades back. With the use of media devices such as smart phones, smart watches, and tablet computers, the internet is today one of the most portable technological inventions that can fit into every corner and space (Ziltrain, 2008). Indeed it cannot be denied that the revolution that has characterised the internet has several benefits to offer the ordinary user. In the estimation of Rehmeyer (2007), not only does the use of the internet today offers advantages but that the absence or non-usage of the internet comes with so much discomfort and disadvantages. Even though this position cannot be debated, the risks and vulnerabilities that the complexity of the internet poses to individual, organisations and nations cannot be denied.

In the opinion of Owens and Lin (2009), the best way to make the most out of the internet in today’s complex dynamic Web 2.0 environment is to ensure adequate cyber security for users. Without this, the list of how beneficial the internet is in today’s environment can go on but the real value that is expected to be derived may never be achieved to its fullest. The reason for this claim is that as news of cyber breaches continues to flood the airwaves, people become sceptical about their fate in using the complex and dynamic Web 2.0 for various purposes including cloud computing and electronic commerce (e-commerce) (Ziltrain, 2008). In such an atmosphere of mistrust and fear, the Web 2.0 will be seen as useful only for some of the most conventional purposes that come with limited or no risk such as gaming, information search, and downloading. Meanwhile as it has been hinted already, there are several

 

"Not answered?"


Get the Answer