• Congratulations to the Class of 2024 on your results!
    Let us know how you went here
    Got a question about your uni preferences? Ask us here

Search results

  1. MrBrightside

    Software Marathon 2011

    Hi, about that insert string algorithm, I've come across someone's notes and they did this: BEGIN InsertString(start,newData,array) temp = ExtractString(1,start - 1,array) + newData temp = temp + ExtractString(start,array.length,data) InsertString = temp END InsertString BEGIN...
  2. MrBrightside

    Software Marathon 2011

    You know for setting "Last" in an algorithm, do you set it to Last Position or Array.Length?
  3. MrBrightside

    Battlefield 3 - BF3 thread

    Yeah I was presuming Xbox achievements.
  4. MrBrightside

    Software Marathon 2011

    No. It's from the role of the CPU topic in one of the core chapters.
  5. MrBrightside

    Software Marathon 2011

    Distinguish between lexical and syntactical analysis
  6. MrBrightside

    Software Marathon 2011

    Hey, I don't understand this concept This is the algorithm from the excel book to find the length BEGIN SUBPROGRAM StringLength(String) Index = 1 WHILE String[Index] contains a character Increment Index ENDWHILE Length = Index - 1 RETURN Length END SUBPROGRAM...
  7. MrBrightside

    Your modern day tv news format

    Rofl why couldn't I have seen this before the HSC started, would of gave me some tips of what visual techniques are used in T.V Reporting shows. ahah it's okay I used some of em :P
  8. MrBrightside

    Do you believe in true love? (srs)

    Yes, but it takes someone really special to work. And involves a huge risk.
  9. MrBrightside

    Software Marathon 2011

    Open source is not in the syllabus. HNNNNGGG
  10. MrBrightside

    Software Marathon 2011

    When the old program is no longer needed or fails to meet the needs of the client / user / organisation. Also used when updates to a program must be applied. The program is temporarily taken offline to online users so that it can be maintained. Question: Write an algorithm that would enable an...
  11. MrBrightside

    Wait until Windows 8 or buy Windows 7 laptop?

    Are you serious OP? Technology changes every 6 months, and PS: Windows 8 looks shit from what I've seen. (Basically MS wanted to make an OS based around media centre to enable a more touch experience - similar to the iOS on iPad). Get something now, no point waiting on new technology unless it's...
  12. MrBrightside

    Battlefield 3 - BF3 thread

    Oh, on PC I don't think you get anything upon completion. Just the satisfaction of completing the story, like in the good old days ;) Apparently BO was really hard/cheap on Veteran, basically enables all enemies to have an aim bot.
  13. MrBrightside

    Last week of exams

    Someone's a bit grumpy about their final exam.
  14. MrBrightside

    Battlefield 3 - BF3 thread

    Play on normal then?
  15. MrBrightside

    Software Marathon 2011

    1. Program Counter fetches the next address of the next set of code/instruction from an instruction register or RAM 2. The Control unit then decodes the bytes of data AKA Opcode and operands. Opcode is the instruction, 1st Operand is the address and (2nd operand is the name of data?) 3...
  16. MrBrightside

    Software Marathon 2011

    Also gives students the opportunity to gain extra marks, as they might know several other dot points in qs 24-32 , rather than just lengthy qs on 21 to 23.
  17. MrBrightside

    Software Marathon 2011

    Wow that's so cool, a teacher on fb. o.O Eh for now I'll just use the one I know, rote learning ftw! hopefully at uni they can teach it better. Question, Explain the CPU cycle.
  18. MrBrightside

    Software Marathon 2011

    But isn't that a replication of the bubblesort :/ ahaah and yeah it is i, hard to see o.O
  19. MrBrightside

    Software Marathon 2011

    This code should make for more sense and work: Begin InsertionSort For i = 1 to ArrayLength - 1 j = i while j > 0 and array[j] < array[j - 1] swap(array[j],array[j - 1] j = j - 1 EndWhile EndFor End InsertionSort Why is J set to 1 at the start? doesn't that mean...
Top