Entries by Student

write my assignment 21526

Write a 2 page essay on Mars Global Explorer.

This research paper attempts to find out valid reasons and facts supporting the existing of life on Mars.

There have been a host of significant discoveries in the past that have reflected on the idea of existence of life on Mars. Mariner IX (1971) orbited Mars and pointed out at the planet having an active weather system. He observed clouds, odd swirls of cloud that make a cyclone, and even frontal systems. It was assumed that the clouds were thin. But in 2004, Mars Global Surveyor took some high resolution images of the clouds thus enabling it to measure their thickness. To much surprise of the scientists, the thickness revealed that cloud’s inside some of the deep canyons was far more opaque and dense than could be imagined. They also contained triple the amount of water than was initially expected.

There also exist evidences about the existence of a vast ocean surrounding the Northern Hemisphere of Mars. In 1999, Mars Global Explorer showed positive evidences of palcomagnetic Islands on Mars, with the bands being about 10 times wider than those found on earth (Garrison 94). A recent surprising announcement is made by Mars Global Explorer that there are chances that water still flows on this planet. Images of Martian cliff were sent back by it that showed streaks similar to the ones found on mountains on earth. It is expected that these rocks have melted ice under the surface that bursts out time and then (Kidger 124).

This topic is of interest as one of the major missions of European Mars Express is to use specialized decameter radar – MARSIS – for searching for such underground water bodies. Hydrated minerals have already been discovered on the surface of Mars.

The above facts clearly throw light on the better possibilities of existence of life on Mars in the nearby past. There are strong evidences supporting the fact that life still exists on Mars owing to its mild climatic conditions and presence of water on its

 

"Not answered?"


Get the Answer

write my assignment 10675

Project Management Tools Due 6/01

Primary Discussion Response is due by Friday (11:59:59pm Central), Peer Responses are due by Tuesday (11:59:59pm Central).

Primary Task Response: Within the Discussion Board area, write 300–500 words that respond to the questions below with your thoughts, ideas, and comments. This will be the foundation for future discussions by your classmates. Be substantive and clear, and use examples to reinforce your ideas.

Now that you have learned about some of the most used scheduling software tools in the world of project management, let’s visit some important project management concepts used in building and managing a project schedule.

  • Define what a project, program, and portfolio of projects are, and describe how they relate to one another and in the context of enterprise project management.
  • Describe the basic principles and processes for managing individual projects and dynamic project scheduling.
  • Describe the critical role of projects and programs in an organization.

 

"Not answered?"


Get the Answer

write my assignment 12047

Your company has been approached to bid on a contract to sell 13,000 voice recognition (VR) computer keyboards a year for 4 years. Due to technological improvements, beyond that time they will be outdated and no sales will be possible. The equipment necessary for the production will cost $3.12 million and will be depreciated on a straight-line basis to a zero salvage value. Production will require an investment in net working capital of $97,500 to be returned at the end of the project, and the equipment can be sold for $260,000 at the end of production. Fixed costs are $650,000 per year, and variable costs are $215 per unit. In addition to the contract, you feel your company can sell 3,900, 7,800, 10,400, and 6,500 additional units to companies in other countries over the next four years, respectively, at a price of $358. This price is fixed. The tax rate is 36 percent, and the required return is 9 percent. Additionally, the president of the company will undertake the project only if it has an NPV of $130,000. Therefore, you should set a bid price of $ for the contract. (Do not include the dollar sign ($). Round your answer to 2 decimal places. (e.g., 32.16))

 

"Not answered?"


Get the Answer

write my assignment 27743

I’m having issues with the following code:

/*

 * To change this license header, choose License Headers in Project Properties.

 * To change this template file, choose Tools | Templates

 * and open the template in the editor.

 */

package sdev425;

import java.io.BufferedReader;

import java.io.FileReader;

import java.io.IOException;

/**

 *

 * @author B_Sny

 */

public class Sdev425 {

   /**

    * @param args the command line arguments

    */

   public static void main(String[] args) {

       // Read the filename from the command line argument

       String filename = args[0];

       BufferedReader inputStream = null;

       String fileLine;

       try {

           inputStream = new BufferedReader(new FileReader(filename));

           System.out.println(“Email Addresses:”);

           // Read one Line using BufferedReader

           while ((fileLine = inputStream.readLine()) != null) {

               System.out.println(fileLine);

           }

       } catch (IOException io) {

           System.out.println(“File IO exception” + io.getMessage());

       } finally {

           // Need another catch for closing

           // the streams         

           try {

               if (inputStream != null) {

                   inputStream.close();

               }

           } catch (IOException io) {

               System.out.println(“Issue closing the Files” + io.getMessage());

           }

       }

   }

}

When running this code, without defining the .txt file for the argument I get the following output:

Exception in thread “main” java.lang.ArrayIndexOutOfBoundsException: 0

 at sdev425.Sdev425.main(Sdev425.java:23)

When running this code with the .txt file defined it lists the entire contents of the .txt file instead of what the code is created to do. The output is as follows:

Email

[email protected]

[email protected]

[email protected]

[email protected]

BUILD SUCCESSFUL (total time: 0 seconds)

 I’m so lost!!!!! please help

 

"Not answered?"


Get the Answer