Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

MIS 396 Final Project Due by 10 pm on 11/24/14 Write a network proposal for the

ID: 3764942 • Letter: M

Question

MIS 396 Final Project Due by 10 pm on 11/24/14 Write a network proposal for the following scenario. You have inherited your grandfather’s auto repair shop. With your IT knowledge, you want to automate his normal business practices as well as utilizing online resources. Therefore, you will have to purchase all equipment, software, setup, etc . since his current business was still using paper and pencil to do business. You have determined the following requirements for your business: • Automating daily business processes including ordering/checking inventory • Connect at least 2 office computers (with potential to add a more computers/output devices as business/online needs grow). These computers will share resources such as a printer and software. • Adequate security in place for company communications/daily business • Access to the internet • Need the ability to expand online presence in the future (website, facebook, texting, etc). NOTE: just need equipment to handle this, you are not actually creating a website, software that send texts to clients, etc) • Software for inventory management, basic office work (spreadsheet, word processing, etc) will be housed and shared among office computers. • There are also future plans to open a second location that would be within 5 miles of the current business. You do not have any equipment, so your proposal should include a complete network and computer system that meets these requirements and future expansion plans. The business is located in an urban area where the latest technological infrastructures and related offerings are available. Be sure to include costs for computing equipment, network infrastructure, servers, printers, and related hardware, software, and accessories. Be detail oriented in your proposal and include justification for your choices. Diagram and explain your physical and logical network and computer design. Remember this is a small business so cost is a major factor in your decisions.

Explanation / Answer

import java.util.Arrays;

public class BruteForce
{
public static void main(String[] args)
{
String password = "pass";
char[] charset = "abcdefghijklmnopqrstuvwxyz".toCharArray();
BruteForce bf = new BruteForce(charset, 1);

String attempt = bf.toString();
while (true)
{
if (attempt.equals(password))
{
System.out.println("Password Found: " + attempt);
break;
}
attempt = bf.toString();
System.out.println("" + attempt);
bf.increment();
}
}
private char[] cs; // Character Set
private char[] cg; // Current Guess

public BruteForce(char[] characterSet, int guessLength)
{
cs = characterSet;
cg = new char[guessLength];
Arrays.fill(cg, cs[0]);
}

public void increment()
{
int index = cg.length - 1;
while(index >= 0)
{
if (cg[index] == cs[cs.length-1])
{
if (index == 0)
{
cg = new char[cg.length+1];
Arrays.fill(cg, cs[0]);
break;
}
else
{
cg[index] = cs[0];
index--;
}
}
else
{
cg[index] = cs[Arrays.binarySearch(cs, cg[index]) + 1];
break;
}
}
}

@Override
public String toString()
{
return String.valueOf(cg);
}
}

simply try this

Hire Me For All Your Tutoring Needs
Integrity-first tutoring: clear explanations, guidance, and feedback.
Drop an Email at drjack9650@gmail.com
Chat Now And Get Quote