• Some users have recently had their accounts hijacked. It seems that the now defunct EVGA forums might have compromised your password there and seems many are using the same PW here. We would suggest you UPDATE YOUR PASSWORD and TURN ON 2FA for your account here to further secure it. None of the compromised accounts had 2FA turned on.
    Once you have enabled 2FA, your account will be updated soon to show a badge, letting other members know that you use 2FA to protect your account. This should be beneficial for everyone that uses FSFT.

Recent content by bdario1

  1. B

    Java methods help please

    Yes i have joined to get hw help too, but i want to learn also, not everyone learns by trial and error if you are not aware of that, and i didn't shoot a question without trying it first, if you don't know how to help you don't have to post comments that are not related to the question. And i...
  2. B

    Java methods help please

    This is what i got so far but the problem is i did not realize that we could not use the ArrayList to search through and now i don't know how to change it so i don't use it that is the only way i know. Please help /** * This method creates and returns a new array that contains a list of...
  3. B

    Java using methods

    Could you give me an example so i can see how you have it imagined cause i am now probably more confused than before.
  4. B

    Java using methods

    public static void reverseOrder (Character[] symbols) This method should reverse the order of elements in the input array. For reverseOrder, the input array {'a', 'b', 'c'} should be changed to be {'c', 'b', 'a'}. Note that the type is Character, and not char, but that Java will...
  5. B

    Java using methods

    I am writing a method that needs to do this. /** * This method reverses 'in place' the elements in * the array. Reversing is defined as moving the * elements in the array such that the first element * becomes the last element, the second element * becomes the...
Back
Top