Exam Bitching (1 Viewer)

Status
Not open for further replies.

tonberry_kun

O RLY?
Joined
Jun 21, 2003
Messages
818
Gender
Undisclosed
HSC
2003
underthesun said:
man the higher computing kids were complaining because they got questions such as the busses.. and most didnt know about precedence , not even stuff like *blah++. Also, I figured out what static means in the exam, by making a wild guess :/

As for penalising, i really hope they don't do that too, since other than buses, i actually wrote some shakespearean whinging in it :p
hehe static, don't u guys learn that in like the 3rd or 4th week?

i had trouble doing the conversion to binary... not because i couldn't but i kept screwing up the quotient cuz i cant divide by 2 :p
damn stupid brain... i need a calculator
 

underthesun

N1NJ4
Joined
Aug 10, 2002
Messages
1,781
Location
At the top of Riovanes Castle
Gender
Undisclosed
HSC
2010
We only got really brief mention about it. Most of us already know it based on past experience, but the extent which it was tested was just gross. Not me who suffers, but those who concentrated more on actually programming than learning some obscure C syntax.

And yeah, about static, for me that was guessing between "variable not available for export" and "able to be preserved between function calls". I chose the latter, and I guess I was right ;)

What was the answer for strings? "very-confusing" , "vr-ofsnnfusing" ?
 

tonberry_kun

O RLY?
Joined
Jun 21, 2003
Messages
818
Gender
Undisclosed
HSC
2003
static is preserved across function calls? (wait what does that mean? :p)
i thought it was variable not available for export?
 

sunny

meh.
Joined
Jul 7, 2002
Messages
5,350
Gender
Male
HSC
2002
Consider this:
Code:
void x() {
  int x = 0;
  printf("%d\n", x++);
}

int main(int argc, char* argv) {
  x();
  x();
  x();
}
You will get 0, 0 and 0 since variable x is destoryed once the function finishes.

This however...
Code:
void x() {
  static x = 0;
  printf("%d\n", x++);
}
Will get you 0, 1 and 2. The variable x is not destoryed after the function finished - ie, it is preserved across function calls.
 

underthesun

N1NJ4
Joined
Aug 10, 2002
Messages
1,781
Location
At the top of Riovanes Castle
Gender
Undisclosed
HSC
2010
Phew, right guess. Thanks sunny :)

anyways, that linked list question with static bit on, I got the same answer as this other guy who's an absolute C genius, it was:
Code:
43322110
433220
4220
Damn. Thinking about it that whole exam for me was a complete fluke. That red bull I bought in the morning must have been really worth it :eek:
 

Minai

Alumni
Joined
Jul 7, 2002
Messages
7,458
Location
Sydney
Gender
Male
HSC
2002
Uni Grad
2006
OMG! I think I just failed Accounting 2B today - EVERYBODY was saying it was the worst exam they've ever done - christ, doing this subject again is not a favourable course of action
 

Minai

Alumni
Joined
Jul 7, 2002
Messages
7,458
Location
Sydney
Gender
Male
HSC
2002
Uni Grad
2006
Newbie said:
my tutor said 2B is a nightmare
hell yeah, its apparently the worst accounting subject in the accounting major

here's to hoping I get at least 45 in that final to get Pass conceeded
 

hbk_ace

your all F**k Liars
Joined
Feb 20, 2003
Messages
410
ahha 1b

question 2 cash flow i could figure ot a 450 000 difference in one of my t accounts

so i created one called "I DONT KNOW I JUST STUFFE MY TEST"
credit it and then debited an expense called "EXAM MARK WRITTEN OFF"

question 5 or something. name a strategy to use on a low budget air line competitor called Airtramp.
i wrote


Crush and Distroy. use low cost tactic to seduce back the customers from the tramp, when their finances are in ruins have a hostile take over which gives us a monopolised market leading to higher future profit. this strategy is endorsed by Sun tzu
 

Exeter

Resident Megaphone
Joined
Jun 15, 2003
Messages
405
Location
Sydney
Gender
Male
HSC
2003
lol
for my first questoin for the michael chaney one i wrote the 2 things
then said
**RETIRED HUSBAND IS LIKE WET LEAF, HARD TO SWEEP OUT OF HOUSE**
 

saves.the.day

Member
Joined
Oct 29, 2003
Messages
233
Location
Castle Hill
Gender
Undisclosed
HSC
2003
Minai said:
OMG! I think I just failed Accounting 2B today - EVERYBODY was saying it was the worst exam they've ever done - christ, doing this subject again is not a favourable course of action
Hope everything will be ok for you Minai. I remember reading you're on a distinciton average atm?

If it helps, the thought of putting marks against a bell curve might make you feel better :) as I know they do that for a few of my science subjects but I am unsure about commerce subs.
 

lawforever

Member
Joined
Dec 18, 2003
Messages
219
Gender
Male
HSC
2003
1B, I have no idea of what the control measures are in question 5.

dun think i can get HD for it .....

do they scale mark in accounting ?
 

Newbie

is a roflcopter
Joined
May 17, 2003
Messages
3,670
Gender
Male
HSC
2003
i had to bullshit my cashflow a bit
well if you call 200000 a bit :p
 

babydoll_

wat
Joined
Oct 22, 2002
Messages
4,531
Gender
Undisclosed
HSC
N/A
I GOT 5/5 IN MY PRESENTATION FOR GENETICS

sucks to the fobs who can't understand english and went OT

GO ME
 

tonberry_kun

O RLY?
Joined
Jun 21, 2003
Messages
818
Gender
Undisclosed
HSC
2003
something about describing two buses in the CPU with diagrams and all that
 

enak

Limbo
Joined
Oct 18, 2002
Messages
1,046
Location
Sydney
Gender
Undisclosed
HSC
N/A
babydoll_ said:
I GOT 5/5 IN MY PRESENTATION FOR GENETICS

sucks to the fobs who can't understand english and went OT

GO ME
:lol: :)

Hahaha
 

McLake

The Perfect Nerd
Joined
Aug 14, 2002
Messages
4,187
Location
The Shire
Gender
Male
HSC
2002
tonberry_kun said:
something about describing two buses in the CPU with diagrams and all that
Although I know that now, I don't reacall learning that in 1st year ...
 
Status
Not open for further replies.

Users Who Are Viewing This Thread (Users: 0, Guests: 1)

Top