• 0

Hey calling all programmers to give help if you wish


Question

Hey i'm in year 11 now this year

doing Software design and development

starting on turbo pascal version 1.5

i know it's old

and it's BS to you guys

but gees i'm just soooo lost about this we jump so fast

we start talking about object orientated and then we start talking about flowcharts ans psuedocode

wat the hell am i learning

so can you guys give me some tips on what to do in programming

do u guys still remember when the first time u touched this stuff?..

Recommended Posts

  • 0
Originally posted by Winston

ahhh i duno

all these pre test loops as well

honestly guys

should i read up and familarise al on the history and jargon terms before i even start writing an app?..

Yes, you have to in order to get yourself familiarize with Pascal... you make this sound like the teacher did not give you much resources to start with...

  • 0

of course

this is almost a self study course

he expects us to pull info out of our frekin ass and noe it

and like he was away for a fe wweeks

and yeah

and u ahve two brainy wanks

who just talk jargon

and ur sitting there waiting for the bell to go becoz the two smart students are talking technical stuff tot the teacher

and the class is negelcted

theres 8 ppl doing software and 5 of them are gunna drop

soooo thats funny

i dont wanna drop becoz

its hard to catch up on a new subject...

i mean he expects us to read and understand

i dont get it

ahhh gees im sooo gunna stuff it and read all holidays and when i return i want to be able to produce an application and understand why i did it

i hope u guys dont find me a pain

becoz when i wanna do sumthing i do it!

and i mean it..

so if i need help

ill ask

and hopefully u guys will help

  • 0
Originally posted by Winston

of course

and u ahve two brainy wanks

who just talk jargon

and ur sitting there waiting for the bell to go becoz the two smart students are talking technical stuff tot the teacher

and the class is negelcted

theres 8 ppl doing software and 5 of them are gunna drop

soooo thats funny

i dont wanna drop becoz

its hard to catch up on a new subject...

You'll probably have found aco will have made an off comment about me and zoodboog doing the same thing (yes, same school). But I try to help if you help yourself.

i mean he expects us to read and understand

i dont get it

ahhh gees im sooo gunna stuff it and read all holidays and when i return i want to be able to produce an application and understand why i did it

i hope u guys dont find me a pain

becoz when i wanna do sumthing i do it!

and i mean it..

so if i need help

ill ask

and hopefully u guys will help

If you're proactive then you'll be fine. Go through the examples, pull code from them to make up something else etc. This is how you'll learn it. Go to http://web.mit.edu/taoyue/www/tutorials/pa...l/contents.html it steps through the parts of learning Pascal very simply. At some point in time the penny will drop - you'll have understood the syntax and see the relationship Pascal has to pseudocode.

  • 0

Yes. Be proactive and you should do fine. This applies to anything really... oh... Just one tiny suggestion... could you try to not "carriage return" so often in your post? :) It kinda make the page a bit longer than it should, even harder to understand at times... I suggest put it in perspective paragraph and such... :)

Nevermind about the sig... :) but a bit tad long too... any ways... just a suggestions...

  • 0

try reading about UML, if you want to learn to program code correctly...

If you want to learn to program code, find a interesting project and start coding....

possible projects

- build a easy access phone/adress book databasse program.

- build a program converting something into an other, example: various textfiles into html, or plain text into richtext using some sort of "stylesheet" thingy..

Dexter's Lab

Omelet du fromage, Just du it!

  • 0

Concurred, learn how to do it now. You've spent two months doing theory that's quite long enough.

Tikimotel:

They're finally getting a chance to do some prac work after 2 months of pseudocode and flowcharts. Their dev tool is TP 1.5 (or is it Borland Pascal for Windows 1.5 - I don't know). No database connectivity, no DLL support (Windows one does), no access to Win32 common controls...

A cheese omelete (yuck) !?!? LOL

  • 0

Only 1 week on pseudocode? Consider yourself lucky, no bad habits to unlearn.

Remember your control structure IF..THEN, WHILE..END WHILE etc and you'll understand Pascal - eventually. Don't confuse yourself with more than you need for marks in your Final School Exam

(Others: this is school work, we have enough of it already, more technolgies to learn is a waste :D )

  • 0

DOnt discredit psuedocode and flowcharts so easily, weather you like them or not if you make a complex project for your major design youll end up using them, just to follow some programs through.

Also you had better get use to them because in the major project they count as a very significant part of your mark psu, flow, and system diagrams, project diary, desk checking, testing. hehe have fun with all them.

Thats no including your external and intrisnic documentation.

Look youve got plenty of time yet, grab yourself a copy of VB and preferably Delphi and go see what you can do. The help systems in both and fantastic. You can pretty much teach yourself all the basics then download or purchase tutorials for the more complex stuff and your set. Delphi and VB youll be able to produce some very nice visually pleasing programs which certainly doesnt hurt with the marks.

Whatever you do dont do what my mate did, he leartn the basics of VB and then found site where you can download freeware source code, now its freeware nothing too wrong with it, but he didnt bother to learn the code he downloaded, so when it came time to do the psu, flowcharts, and asnswering teachers questions hehe well it was funny for the rest of the class, and embarrasing for him. Eitherway by the end of it he had failed the course and still only knew the basics of VB when he had a pretty impressive lil program compliled.

  • 0

Hey guys

in school at the moment

scratching head off

how the hell do u make a temp changer

like i wanna make a statement

letting the user change from celcius to fareign

and vice versa

and once user says that wanna concvert celcius to fareign

then they have to enter an interger in

and it converts how does that go in turbo pascal??

  • 0

Winston,

Are you using Turbo Pascal 1.5 or 5.5? If you want 5.5, you can download it from Borland's community website. I think you have to be a member, but enrollment is free. You get access to a lot of good information.

You can also go to the Borland newsgroups and get help with pascal in borland.public.delphi.students and borland.public.turbopascal.

Also...

http://www.devq.net/pascal/

http://www.uwasa.fi/~ts/http/http2.html#batch

  • 0

Surely you did some work in creating an algorithm?

First work out how you convert Celcius to Fahrenheit and vice-versa mathematically -

C = (5 / 9) * (F - 32)

F = (9 / 5) * (C + 32)

where C = ?C and F = ?F...

convert that to Pascal syntax e.g.

C := (5 / 9) * (F - 32);

Just make sure the C and F variables are of Real (floating-point) type. Put a few writeln() and readln() in and you have a program.

  • 0

weenur:

I already suggested Winston get 5.5, then I thought he might be using "Borland Pascal for Windows 1.5" which is a bit different again (though I doubt it). But I agree, TP 5.5 is easier than TP1.5 which appears to be quit horrible...

Osiris:

Said I:

I can see uses for UML and flowcharts, even Pseudocode in some cases but never to write the program twice

I object to the way they treat pseudocode in our course as "the common programming language that they can ask exam questions on"

  • 0

See my post here for an example of using Readln() or look at one of the tutorial links that we've been giving you.

Read & Write

Read() - reads the variable passed as its parameters into that variable (of any type, will crash program if input is invalid)

Readln() - same as Read() but moves the console cursor to the next line

Write() - outputs the parameters passed to it (of any type including string literals)

Writeln() - same as Write() but moves the console cursor to the next line

  • 0

Winston - Turbo Pascal is a VERY OLD language. It lacks structure, object orientation and a lot of extras new languages offer today. However, in some ways, it can provide the fundamental building blocks in programming. Don't expect to be making anything too spectacular with the langauge, however...it doesn't handle well with the newer versions of Windows and was never really intended to be a versitile langauge.

About all the flowcharts and psuedocode - they are basically just algorithms. They are ways of representing how a program will work (or is working) when you compile the application. There were designed for a few reasons. The most evident is probably to provide a simplistic view of the way things will work. However - they were also created to forecast what may (or should) happen and can describe the way a processor is working without having to dive into the infrastructure of processor. Generally, flowcharts and psuedocode etc attempt to give a simplistic view of a complex operation.

About the object oriented side of programming - dont stress. You wont really have to worry about it until it comes up which isn't really until the start of year 12. Object Orientated programming in some ways can be easier than procedural (Pascal for example) but dont confuse yourself until you have to. If you have any more problems with it send me an e-mail and I'll see what I can find. Some people I know may be able to help you out and if not i'll try and find some stuff on the net.

This topic is now closed to further replies.
  • Recently Browsing   0 members

    • No registered users viewing this page.
  • Posts

    • whoosh my comment went over your head. Enjoy your notchless 3:2 OLED device
    • As a game dev, today was really depressing. They announced that Blueprints will be deprecated in UE6 to be fully replaced by their sh**ty Python-like Verse language... They also announced that 5.8 will be the last version of UE5 until UE6 comes out in MID 2029!!!! They have completely lost the plot.
    • Prime Early Deal: Amazon Echo Dot Max drops to its lowest price ever by Fiza Ali While Prime Day 2026 is officially kicking off next week, Amazon has started offering Prime Early Deals already. Particularly, the newest model of Amazon Echo Dot Max, unveiled in September 2025, is now selling at its lowest price yet with a 35% discount on its original MSRP. The device features a two-way mono speaker system comprising a 0.8-inch tweeter and a 2.5-inch woofer that should deliver sound across a claimed frequency range of 53Hz to 16kHz. It offers Wi-Fi 6E support (802.11 a/b/g/n/ac/ax) alongside Bluetooth 5.3 with Low Energy, including A2DP for audio playback and AVRCP for device control. The device also operates as a smart home hub, with built-in support for Zigbee, Matter, and Thread Border Router functionality. Furthermore, Amazon Sidewalk is included to help extend connectivity beyond standard Wi-Fi range by leveraging shared network infrastructure. Under the hood, it is powered by the AZ3 processor with an integrated AI accelerator. It also features Omnisense technology, enabling ambient intelligence capabilities such as presence detection, temperature monitoring, and tap gesture control. There are also additional built-in sensors that include ambient light, temperature, and an accelerometer. When paired with a compatible eero router, it can also help extend Wi-Fi coverage by up to 1,000 square feet, supporting speeds of up to 100Mbps and up to 10 devices on the 5GHz band. Setup is handled via the Alexa app, available on Android, iOS, Fire OS, and web browsers. In terms of privacy, it includes a microphone mute button, wake word activation, and options to review and delete voice recordings. Accessibility features cover adaptive listening, adjustable speech rate, audible request tones, and read-aloud support. Lastly, the device is backed by a one-year limited warranty, with optional extended protection available as well. Amazon Echo Dot Max (newest model): $64.99 (Amazon US) - 35% off Good to know This Amazon deal is U.S. specific, and not available in other regions unless specified. We only use first-party seller links (at the time of article publishing); ensure that you purchase from a first-party seller link only. Check out Today's Deals on Amazon | or our recent tech deals. Become a Prime member (for Students or SNAP) via Neowin Get Prime Access - Prime for half price (for qualifying Medicaid, EBT, SNAP) Subscribe to Prime Video, Audible Plus, Music Unlimited or Kindle Unlimited via Neowin As an Amazon Associate, we earn from qualifying purchases.
    • That's not what I meant:) I like the tabs being above the URL bar, but previously the tab selection started from the top of the screen (y=0). So I could just quickly push my mouse up and done. Now I have to actually aim it just slightly below the top, because the tab is now a few pixels below the top. In other words, previously I only had to aim with my mouse horizontally, now I have to both vertically and horizontally. Super annoying.
  • Recent Achievements

    • One Month Later
      Vincian earned a badge
      One Month Later
    • First Post
      Jocimo earned a badge
      First Post
    • Week One Done
      suprememobiles48 earned a badge
      Week One Done
    • One Month Later
      Windows Guy earned a badge
      One Month Later
    • One Month Later
      Prasann earned a badge
      One Month Later
  • Popular Contributors

    1. 1
      +primortal
      501
    2. 2
      +Edouard
      160
    3. 3
      PsYcHoKiLLa
      86
    4. 4
      Steven P.
      67
    5. 5
      ATLien_0
      64
  • Tell a friend

    Love Neowin? Tell a friend!