INF

Declaring and Using Arrays

INF231 Week 4 Assignment public class gradesArray { public static void main(String[] args) { String[] nameArray = {“Jon”, “Rajesh”, “Elizabeth”, “Julio”, “Chang”}; String[] gradeArray = new String[5]; double[] score1Array = {72, 60, 45, 70, 89}; double[] score2Array = {50, 70, 60, 85, 90}; double[] score3Array = {70, 80, 90, 100, 100}; double[] averageArray = new …

Declaring and Using Arrays Read More

INF231 WEEK 4 QUIZ

INF231 WEEK 4 QUIZ Question 1 1 / 1 pts Incremental model has ____ initial delivery cost and ____ customer confidence. (Links to an external site.)Links to an external site. Correct! low, high high, high low, low high, low Top of Form Bottom of Form The answer can be found in Ch. 3 Section: Iterative …

INF231 WEEK 4 QUIZ Read More

Working with Conditionals and Loops Lab

import static java.lang.System.out; import java.util.Scanner; public class AverageGrade { public static void main(String[] args) { double TestScore1; double TestScore2; double TestScore3; String name1; Scanner Keyboard = new Scanner(System.in); System.out.print(“Please enter your name:”); name1 = Keyboard.nextLine(); System.out.println(“Please enter test score1”); TestScore1 = Keyboard.nextInt(); System.out.println(“Please enter test score2”); TestScore2 = Keyboard.nextInt(); System.out.println(“Please enter test score3”); TestScore3 = …

Working with Conditionals and Loops Lab Read More

Final: Temperature Conversion

INF231 Week 5 Final Temperature Conversion INF231 Week5 Final Project. import java.util.Scanner; public class FinalTemp{ public static void main(String[] args) { System.out.println(“Hello Instructor Alkilani, this is the INF231 Final assignment for Joseph Kennedy”); Scanner sc = new Scanner(System.in); boolean repeat=true; while (repeat) { try{ System.out.print(“nEnter temperature in Fahrenheit :”); String input=sc.next(); int temperature=Integer.parseInt(input); float celsius …

Final: Temperature Conversion Read More

INF 340 Week 1 Assignment 2 – Air Force Supply System

Air Force Supply System INF 340 Business Information Systems Air Force Supply System During my time in the Air Force while working military police plans and programs, I had the opportunity to work with our S4 section which specializes in logistics, deployments and receiving, tracking and delivering supplies to all members of our squadron. The …

INF 340 Week 1 Assignment 2 – Air Force Supply System Read More

INF 340 Week 2 Assignment 2 – Requirements Determination

Requirements Determination INF 340 Business System Analysis Requirements Documentation Requirements Documentation for a system can be obtained in three ways: traditional, which is the process of conducting interviews, observing personnel in their own work environment and collection of information, Modern, which consists of joint application design (JAD), and finally radical which our text describes as …

INF 340 Week 2 Assignment 2 – Requirements Determination Read More

INF 337 Week 3 Assignment – Article Review

Article Review INF 337 Intergrated Cost & Schedule Control Article Review Earned value management (EVM) are techniques used in project management to monitor, control, and measure the schedule, the costs and the performance of a projects progress objectively for the duration of the project life cycle. Utilizing this concept compliments budget vs actual cost assigned …

INF 337 Week 3 Assignment – Article Review Read More

Organizational Profitability

Organizational Profitability INF 336 Project Procurement Management Organizational Profitability The Carmichael Corporation is an American subsidiary of an international corporation headquartered in the United Kingdom. They specialize in veterinary products and feed additives worldwide, however their largest competitor is Brisson Corporation. What the two corporations have in common is the supplement product called Stimgro, which …

Organizational Profitability Read More

Scroll to Top