Recent content by Nivek5

  1. N

    Algorithm Answers

    I'm pretty sure you had to print all 3 counters.. Then print the maximum one... I used a subprogram for finding the maximum .. Adds maintainability or some crap lol :P who cares now. its over. EDIT: nope my mistake, lol Mine printed all3 along with the maximum >___< fail Oh and with your...
  2. N

    SDD: Multiple Choice

    20 = D Cant be found = true cuz there is no checks for Found = True so it would be useless If target = index it would have to continue through the whole array.. say it was 5000 index long.. and you found it on index 50... you would have to go through 4950 more indexs for no reason No need to...
  3. N

    SDD: Multiple Choice

    1|A 2|C 3|D 4B 5|B 6|C 7|B 8|D 9|C 10|B 11|C 12|A 13|D 14|B 15|B 16|B 17|B 18|A 19|C 20|D I know there are mistakes as i generally didnt know the answer :P
  4. N

    SDD study thread

    no question :P?
  5. N

    SDD study thread

    By involving them with the development, Throughout the entire process, keep them informed, and ask them questions regarding the systems design. Pretty much make them feel involved lol:P No point in asking more questions since you should all be cramming the books and sleeping :P
  6. N

    Are you ready for tomorrow?

    Barly, I gotta go over all my searches and sorts still and remember all the key terms in evolution.o.p.l
  7. N

    SDD study thread

    i highly doubt this will be a question BEGIN BinarySearch Set Low to 1 Set High to number of items in list Set Found to "false" Get itemtofind WHILE High >= Low AND Found = False Set Middle to INT((Low+High)/2) If ItemtoFind < Item(middle) THEN Set High to Middle -1 ELSEIF itemtofind =...
  8. N

    SDD study thread

    Key terms.
  9. N

    SDD study thread

    Q. Define logic, Syntax and Run-time errors? Use a example to prove your answer. Logic: They are the result of code that is correct with its syntax, but does not complete the task required. Eg. 1+2+3+4 should = 10, but 11 is being output. Syntax: Syntax refers to the language of the code, a...
  10. N

    Thoughts of the past coming from the present

    Is it illegal to touch the year 7/8 version of yourself
  11. N

    Cheating punishments?

    With the internet by your side, and the examiners name, a simple search and dedication will get you their address. Choice of death is up to you ;)
  12. N

    SDD study thread

    To begin, they both can only use one data type. Arrays can also be within one another, so an array can be within an array. The main difference would be that a single dimension array only contains 1 index. up to one thousand index' can be in a single dimension array So Searching Index 5, would...
  13. N

    SDD study thread

    Would it not just be Multiway= < Something >|< Something2 >|< Something3 >|< Something4 > Edit: My bad i didn't read the question properly. I would write it like Casewhere "Determining blah blah" -----Case--------------"condition":"Action" -------------------------"condition":"Action"...
  14. N

    SDD study thread

    The programmer essentially ensures the quality by making sure the quality meets or exceeds the customers expectations. Some factors include: Correctness Reliability Efficiency Integrity Maintainability Flexibility Portability The list goes on really. Q.Define how a Linear search & Binary...
  15. N

    Which text book do you use for SDD?

    I use sam davis too, Teacher thinks its good. S.Davis used to be the SDD teacher at my school also =3
Top