Real World of Coding with Various Languages & Practices

Real World of Coding with Various Languages & Practices
Slide Note
Embed
Share

In the real world of coding, different languages and practices play a crucial role. From machine and assembly languages to object-oriented and scripting languages, each serves a unique purpose. Explore the similarities and differences among these coding languages and delve into a typical workday of a coder filled with meetings, defect investigations, code reviews, and more.

  • Coding Languages
  • Programming Practices
  • Coding Environment
  • Software Development
  • Workday Routines

Uploaded on Mar 13, 2025 | 0 Views


Download Presentation

Please find below an Image/Link to download the presentation.

The content on the website is provided AS IS for your information and personal use only. It may not be sold, licensed, or shared on other websites without obtaining consent from the author.If you encounter any issues during the download, it is possible that the publisher has removed the file from their server.

You are allowed to download the files provided on this website for personal or commercial use, subject to the condition that they are used lawfully. All files are the property of their respective owners.

The content on the website is provided AS IS for your information and personal use only. It may not be sold, licensed, or shared on other websites without obtaining consent from the author.

E N D

Presentation Transcript


  1. Coding in the Real World Hassan Habib

  2. Are All Codes the Same? Machine and assembly languages Algorithmic languages Business-oriented languages Education-oriented languages Object-oriented languages Declarative languages Scripting languages Document formatting languages World Wide Web display languages

  3. Visual Basic Dim Input Input = InputBox("How old are you?? - Code") If Not IsNumeric(Input) Then MsgBox & Input & "That's not a number!" ElseIf Input < 0 Then MsgBox "You cannot be less than that age!" ElseIf Input > 1000 Then MsgBox "That's old!" Else MsgBox "You're " & Input & " years old." End If

  4. Python try: age = int(raw_input("How old are you? ")) except ValueError: print ("That's not a number!") else: if age < 0: print ("You cannot be less than zero!") elif age > 1000: print ("That's old!") else: print("You're %s years old." % age)

  5. Code Family!

  6. Typical Work Day Meetings Investigating Defects/Bugs Designing Features Code Reviewing Planning Writing Code Testing Deployment Helping Other Engineers

More Related Content