• 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

    • Now comes with a money back guarantee instead of a replacement! Hah
    • Rufus 4.15.2391 Beta by Razvan Serea Rufus is a small utility that helps format and create bootable USB flash drives, such as USB keys/pendrives, memory sticks, etc. Despite its small size, Rufus provides everything you need! Oh, and Rufus is fast. For instance it's about twice as fast as UNetbootin, Universal USB Installer or Windows 7 USB download tool, on the creation of a Windows 7 USB installation drive from an ISO (with honorable mention to WiNToBootic for managing to keep up). It is also marginally faster on the creation of Linux bootable USBs from ISOs. A non-exhaustive list of Rufus supported ISOs is available here. It can be especially useful for cases where: you need to create USB installation media from bootable ISOs (Windows, Linux, UEFI, etc.) you need to work on a system that doesn't have an OS installed you need to flash a BIOS or other firmware from DOS you want to run a low-level utility Rufus 4.15.2391 Beta changelog: Improve the guards for using the "silent" option Improve the ability to cancel during write retries Fix unrestricted XML entity expansion and integer overflow in ezxml parser (courtesy of @esadowski4) [GHSA-55r2-34wg-8mv9] Fix "silent" Windows installation failing at 75% in most cases [#2960] Fix a crash during boot when using UEFI:NTFS on Snapdragon X based ARM64 platforms [#2934] Fix the first WUE option always being checked by default [#2965] Fix an infinite loop when using Windows ISOs that contain multiple WIMs Fix "Enable runtime UEFI media validation" checkbox not always being properly enabled Other WUE improvements/fixes for OneDrive removal and username validation (with thanks to @christian8641) [#2984, #2991] Download: Rufus 4.15 Beta | 1.9 MB (Open Source) Links: Rufus Home Page | Project Page @GitHub | Screenshot Get alerted to all of our Software updates on Twitter at @NeowinSoftware
    • Media Player Classic - Home Cinema 2.7.3 by Razvan Serea Media Player Classic - Home Cinema (MPC-HC) is a free and open-source video and audio player for Windows. MPC-HC is based on the original Guliverkli project (which is no longer maintained) and contains many additional features and bug fixes. As the continuation of the original Media Player Classic, MPC-HC isn’t flashy but it works with nearly any media format. MPC-HC uses DXVA technology to pass decoding operations to your modern video card, enhancing your viewing experience. And MPC-HC supports both physical and software DVDs with menus, chapter navigation, and subtitles. Overview of features A lot of people seem to be unaware of some of the awesome features that have been added to MPC-HC in the past years. Here is a list of useful options and features that everyone should know about: Dark interface Menu > View > Dark Theme When using dark theme it is also possible to change the height of the seekbar and size of the toolbar buttons. Options > Advanced Video preview on the seekbar Options > Tweaks > Show preview on seek bar Adjust playback speed Menu > Play > Playback rate The buttons in the player that control playback rate take a 2x step by default. This can be customized to smaller values (like 10%): Options > Playback > Speed step Adjusting playback speed works best with the internal audio renderer. This also has automatic pitch correction. Options > Playback > Output > Audio Renderer MPC-HC can remember playback position, so you can resume from that point later Options > Player > History You can quickly seek through a video with Ctrl + Mouse Scrollwheel. You can jump to next/previous file in a folder by pressing PageUp/PageDown. You can perform automatic actions at end of file. For example to go to next file or close player. Options > Playback > After Playback (permanent setting) Menu > Play > After Playback (for current file only) A-B repeat - You can loop a segment of a video. Press [ and ] to set start and stop markers. You can rotate/flip/mirror/stretch/zoom the video Menu > View > Pan&Scan This is also easily done with hotkeys (see below). There are lots of keyboard hotkeys and mouse actions to control the player. They can be customized as well. Options > Player > Keys Tip: there is a search box above the table. You can stream videos directly from Youtube and many other video websites You can stream videos directly from Youtube and many other video websites Put yt-dlp.exe or youtube-dl.exe in the MPC-HC installation folder. Then you can open website URLs in the player: Menu > File > Open File/URL You can even download those videos: Menu > File > Save a copy Tip: to be able to download in best quality with yt-dlp/youtube-dl, it is recommended to also put ffmpeg.exe in the MPC-HC folder. Several YDL configuration options are found here: Options > Advanced This includes an option to specify the location of the .exe in case you don't want to put it in MPC-HC folder. Play HDR video This requires using madVR or MPC Video Renderer. After installation these renderers can be selected here: Options > Playback > Output Ability to search for and download subtitles, either automatically or manually (press D): Options > Subtitles > Misc Besides all these (new) features, there have also been many bugfixes and internal improvements in the player in the past years that give better performance and stability. It also has updated internal codecs. Support was added for CUE sheets, WebVTT subtitles, etc. Media Player Classic - Home Cinema 2.7.3 changelog: Updated LAV Filters to version 0.82 Updated MPC Video Renderer to version 0.10.4.2550 Updated MPC Audio Renderer A few crash fixes, bug fixes and small improvements. Download: MPC-HC 2.7.3 (x64) | Standalone | ~20.0 MB (Open Source) Download: MPC-HC 2.7.3 (x86) | Standalone Links: MPC-HC Home Page | Screenshot Get alerted to all of our Software updates on Twitter at @NeowinSoftware
    • Microsoft will finally let you sign in to Edge with a Google account by Usama Jawad As things currently stand, Microsoft Edge only allows you to sign in to the browser with a Microsoft Account (MSA). This allows you to sync your browser settings and other data across other devices, as long as you sign in with the same account. However, Microsoft is now modifying this mechanism in a way that will likely please many users. In an update to its Microsoft 365 Roadmap, Microsoft has indicated that it will soon let users sign into Edge using a Google account from the profile menu and the Edge sign-in screen. This will be in addition to the MSA login option, and it opens up new doors for people who prefer using Edge, but cannot be bothered to configure a Microsoft account. This brings several advantages such as the ability to sync your data across devices using just a Google account. It may even facilitate flexible single sign-on (SSO) experiences where you can quickly login to websites and services through a single Google account that is presented as the preferred sign-in option. Up until now, Microsoft allowed customers to indirectly use a Google account, by configuring a Google account as a Microsoft account, or by setting up a one-way sync option between Edge and Chrome. This is a rather interesting development, especially considering that Google Chrome still limits you to a Google account sign-in, but it will be interesting to see if the company reciprocates Microsoft's gesture in the future. This is not the only recent instance in which Microsoft has extended a handshake to Google via Edge. In April 2026, it began tracking the development of a work search banner for Google Search queries, just like the one present in Edge. However, if we go back almost seven years, to January 2020, Microsoft had emphasized that it had no plans to "integrate Google services into Microsoft Edge by default", in response to people requesting Google sign-in services on Edge. Fast-forward to today, and Microsoft is planning to release this feature in July 2026, with IT admins having the option to control its availability on Windows and macOS through the NonMicrosoftAccountSignInEnabled policy.
    • If they ever come out and say the AI is no longer accessible to the gen pop people aren't going to know how to tie their own shoelaces.
  • 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
      509
    2. 2
      +Edouard
      172
    3. 3
      PsYcHoKiLLa
      89
    4. 4
      Steven P.
      76
    5. 5
      neufuse
      69
  • Tell a friend

    Love Neowin? Tell a friend!