Bored of Studies  

Go Back   Bored of Studies > Secondary Education > Victoria (VCE) > Technology > Information Technology > Software Development

Reply
 
LinkBack Thread Tools Rate Thread
Old 25 May 2007, 7:48 PM   #1 (permalink)
Not an Executive Member
 
HSC: 2006
Gender: Male
 
Join Date: Nov 2005
Posts: 574
 
Last Activity:
22 Oct 2008, 6:35 PM
 
Excalibur_ is on a distinguished road
So, what languages are you studying / have you studied?

You can hide this advertisement by registering.
...and what do you think of them?

A bit curious to see what kind of programming languages people have studied in the SD / IS subject and for those who know multiple lanuages, how the 'cross-over' has been like for them.
__________________
VCE 2005/06
English (36), Information Systems (43), Information Processing and Management (45),
Music Performance: Group (37), Music Performance: Solo (39), Mathematical Methods (37).


Bachelor of Business Information Systems (Industry-Based Learning Stream) - Monash University, Clayton
Excalibur_ 当前离线   Reply With Quote
Old 25 May 2007, 9:03 PM   #2 (permalink)
Member
 
HSC: 2007
Gender: Male
 
Join Date: May 2007
Posts: 180
 
Last Activity:
31 Dec 2007, 12:38 AM
 
Matthew89 is on a distinguished road
Re: So, what languages are you studying / have you studied?

I did IS in VB.NET last year
Matthew89 当前离线   Reply With Quote
Old 29 May 2007, 3:46 PM   #3 (permalink)
Assistant Member
 
HSC: N/A
Gender: Undisclosed
 
Join Date: Jan 2007
Posts: 86
 
Last Activity:
28 Jan 2009, 12:19 PM
 
Electioneering is on a distinguished road
Re: So, what languages are you studying / have you studied?

I am fluent in 1337 speak, and conversant in HTML.

Right now in SD I am learning PHP. Sometimes PHP makes me angry and I want to punch it in the face.

Yah.
Electioneering 当前离线   Reply With Quote
Old 1 Jun 2007, 10:25 PM   #4 (permalink)
Member
 
bregitta's Avatar
 
HSC: 2007
Gender: Female
 
Join Date: Oct 2006
Posts: 117
 
Last Activity:
Today, 1:00 AM
 
bregitta can only hope to improve
Re: So, what languages are you studying / have you studied?

We're using vb.net, although I wish we could just use hardcore html. sigh.
__________________
Bachelor of @ Monash
bregitta 当前离线   Reply With Quote
Old 2 Jun 2007, 12:15 AM   #5 (permalink)
Not an Executive Member
 
HSC: 2006
Gender: Male
 
Join Date: Nov 2005
Posts: 574
 
Last Activity:
22 Oct 2008, 6:35 PM
 
Excalibur_ is on a distinguished road
Re: So, what languages are you studying / have you studied?

I don't think HTML is gonna get more hardcore than you've already done :P

That is, unless, you use PHP or ASP.net with it...then it's a tad more hardcore.
__________________
VCE 2005/06
English (36), Information Systems (43), Information Processing and Management (45),
Music Performance: Group (37), Music Performance: Solo (39), Mathematical Methods (37).


Bachelor of Business Information Systems (Industry-Based Learning Stream) - Monash University, Clayton
Excalibur_ 当前离线   Reply With Quote
Old 12 Jun 2007, 4:10 PM   #6 (permalink)
New Member
 
HSC: 2007
Gender: Male
 
Join Date: Jun 2007
Posts: 5
 
Last Activity:
12 Jun 2007, 4:11 PM
 
dirtydog is on a distinguished road
Re: So, what languages are you studying / have you studied?

lol learning the basics of visual basic in our yr 12 systems class, and not one besides me even knew the basics. using the best of facilities at my school haha
dirtydog 当前离线   Reply With Quote
Old 28 Jul 2007, 4:49 PM   #7 (permalink)
Senior Member
 
Redwan's Avatar
 
HSC: N/A
Gender: Male
Location: Melbourne
 
Join Date: Jul 2007
Posts: 334
 
Last Activity:
2 Oct 2009, 10:47 PM
 
Redwan is on a distinguished road

Send a message via MSN to Redwan
Re: So, what languages are you studying / have you studied?

Quote:
Originally Posted by dirtydog
lol learning the basics of visual basic in our yr 12 systems class, and not one besides me even knew the basics. using the best of facilities at my school haha
lol we learnt so much VB in year 10

now we're re-doing it in year 11 and im like wayyy ahead.
__________________


!
Redwan 当前离线   Reply With Quote
Old 7 Sep 2007, 3:00 AM   #8 (permalink)
Not an Executive Member
 
HSC: 2006
Gender: Male
 
Join Date: Nov 2005
Posts: 574
 
Last Activity:
22 Oct 2008, 6:35 PM
 
Excalibur_ is on a distinguished road
Re: So, what languages are you studying / have you studied?

I think the important thing to learn is algorithms. More specifically, the break-down of a problem into an algorithm. Might seem boring, but if you master these - you'll be able learn any language because at the end of the day all languages are the same. They just use different words to do different things. Like, a loop will be a loop - a branch (if...else) statement will be a branch statement.

Contrast:

Code:
Java:

public static void main(String[] args) {
      int x = 0;
      do {
             x = x + 1;   // or x++...but just to demonstrate a point
             System.out.println(x);
      }
      while (x < 4);
}

VB:

Public Sub main()
      Dim x As Integer
      x = 0
      Do While x < 4
             x = x + 1
             MsgBox(x)
      Loop
End Sub

Algorithm:
Start
      Define x as Integer
      x <- 0    //or equals...but VCAA love the arrows??
      Loop
           Increment x by 1
           Print x to screen
      Until x is 4
End
Notice the structual similarities? Algorithmically, the problem would've been described the same way....and the implementation was not that different (in this case, essentially line for line for the algorithm). You're not going to be expected to remember every insy bit of the language...cause no-one does. I don't remember much VB back from Year 11...but give me a language reference and I'll be able to code in it. Why? Because the skill of breaking a problem down into simple steps that can be interpreted by a computer is universal across programming languages.

Besides, you're only examined on algorithms - NOT languages.
__________________
VCE 2005/06
English (36), Information Systems (43), Information Processing and Management (45),
Music Performance: Group (37), Music Performance: Solo (39), Mathematical Methods (37).


Bachelor of Business Information Systems (Industry-Based Learning Stream) - Monash University, Clayton

Last edited by Excalibur_; 7 Sep 2007 at 3:05 AM.
Excalibur_ 当前离线   Reply With Quote
Old 13 Nov 2008, 7:31 PM   #9 (permalink)
New Member
 
HSC: 2008
Gender: Male
 
Join Date: Nov 2008
Posts: 6
 
Last Activity:
22 Jan 2009, 9:24 AM
 
Arayan is on a distinguished road
Re: So, what languages are you studying / have you studied?

Oh man.. where do I start?

I've been doing programming since year 7, started with Java..

Know: Java, C++, HTML, CSS, Javascript, PHP, XML (not sure if its considered as a language), C-script

Did Visual Basic 6 this year @ school.. I dont consider that as a language that "i know" since I'm not very fluent at it.

Learning python now...

Last edited by Arayan; 13 Nov 2008 at 7:34 PM.
Arayan 当前离线   Reply With Quote
Old 26 Jun 2009, 2:26 AM   #10 (permalink)
Assistant Member
 
cdjm92's Avatar
 
HSC: 2010
Gender: Male
Location: Victoria, Australia
 
Join Date: Aug 2008
Posts: 94
 
Last Activity:
2 Nov 2009, 6:10 PM
 
cdjm92 is on a distinguished road

Send a message via AIM to cdjm92 Send a message via MSN to cdjm92 Send a message via Yahoo to cdjm92
Re: So, what languages are you studying / have you studied?

Quote:
Originally Posted by Excalibur_ View Post
I don't think HTML is gonna get more hardcore than you've already done :P

That is, unless, you use PHP or ASP.net with it...then it's a tad more hardcore.
I did VB in yr10, then VB.net in SD...we didnt do anything else except a VERY tiny touch on html. We were told only to use VB.net in 12 but coz neither our highly qualified teachers nor our highly qualified techies could fix the program that annoyed me enough I secretly used VB instead the whole year


The teacher only bothered about my work for SACs and when i was testing the programs before giving them to the class (my friend and I were the only ones who had half an idea about SD so we tested the work and help teach others)

Other than that work i made the worlds awesomest snake game, a few virtual pet experimentals....apps to freeze school pcs when nobody's looking....apps that make tiny little dots float around the sceen, unminimisable etc and impossible to get rid of on restricted school pcs no task manager etc)....oh yeah and moded version of a login prog my engineering teacher made to log on to students accounts from within his account............hehehe(though never got far in using it)


Ive known basic html for a few years and recently learned a bit of ASP....

I REEEAALLY wish i still had time to program :'( Ive been meaning to do ASP/PHP/Java etc since i started HTML and havent used VB since SD.....im dying!!!
and i just discovered python for mobiles....which would be so much fun!
__________________
Chris



http://cdjm92.googlepages.com

VCE
2007: Systems Engineering, IT Software Development
2008: Physics, English
2009: Math Methods (CAS), Specialist Math, Chemistry, Psychology
cdjm92 当前离线   Reply With Quote
Reply

Bookmarks

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
What is the best uni for studying European languages? shangtsail General University Discussion 17 9 Jun 2008 8:40 PM
studying languages beginners? lgaica Faculty of Arts/COFA 2 12 Oct 2007 8:10 PM
Anyone studying/studied in UNSW (Commerce)? cloud7 General - University of New South Wales 13 7 Nov 2005 4:44 PM
Anyone Studying or studied Arab-Israeli conflict gbell Modern History 2 20 Apr 2004 12:53 AM


All times are GMT +11. The time now is 10:25 AM.


Powered by vBulletin Version 3.8.1
Copyright © 2002 - 2009, iStudy Australia Pty Ltd. All rights reserved.

Search Engine Optimization by vBSEO 3.2.0