Code Monkey home page Code Monkey logo

exercise-1-fredrikaugust's Introduction

Exercise 1 : Hello World

This exercise does not require that you use the machines at the real-time lab. However, for the last part of the exercise (and for exercise 2) you will need some way to run code written in C and Go.

Go has an interactive tour you can take. Go's syntax is a bit different, so it may be worth skimming through, or at least using as a quick reference.

1: Thinking about elevators

Not for handing in, just for thinking about. Talk to other groups, assistants, or even people who have taken the course in previous years.

Brainstorm some techniques you could use to prevent a user from being hopelessly stranded, waiting for an elevator that will never arrive. Think about the worst-case behavior of the system.

  • What if the software controlling one of the elevators suddenly crashes?
  • What if it doesn't crash, but hangs?
  • What if a message between machines is lost?
  • What if the network cable is suddenly disconnected? Then re-connected?
  • What if a user of the system is being a troll?
  • What if the elevator car never arrives at its destination?

2: Version control

If you can read this text you have already taken your first steps in starting to use a version control system.

A version control system is a tool helps a group of people work on the same files in a systematic and safe manner, allowing multiple users to make changes to the same file and merge the changes later. It is also possible to create diverging branches so that multiple independent areas of development can happen in parallel, then have these merged together safely at a later time. Version control systems also keep track of all previous versions of files, so that you can revert any or all changes made since a given date.

In this course we will be using Github Classroom, where you will find the assignment texts, project description, and all the code related to the project. You will be given private repositories on the TTK4145 organization, which means that teachers and student assistants will have access to your code by default. You can create issues that reference specific assignment tasks or part of your project code, while tagging the student assistants to get their attention.

You will not be able to complete this exercise without a very basic practical understanding of git. Unless you're already familiar with git, it's highly recommended to have a look at the following resources before moving on to Part 3 and 4. Don't let the feeling that you have to google everything discourage you, this is perfectly fine, even expected. And don't forget that the student assistants are there to help you.

Some prefer the command line while some prefer something graphical, both are fine. An overview of graphical git clients can be found here.

3: Reasons for concurrency and parallelism

To complete this exercise you will have to use git. Edit in your answers to the theory questions in this file, then create one (or several) commits, and push it to GitHub to complete the task.

When answering the questions, remember to use all the resources at your disposal (including the internet)

4: Finally some code

Implement this in C and Go:

global shared int i = 0

main:
    spawn thread_1
    spawn thread_2
    join all threads (or wait for them to finish)
    print i

thread_1:
    do 1_000_000 times:
        i++
thread_2:
    do 1_000_000 times:
        i--

In this exercise you should take advantage of the starter code found in the subdirectories corresponding to the different programming languages. Fill out the missing code and make sure your program is working before committing and pushing the changes to your repository.

Finally, create a new file called result.md inside this directory explaining what happens, and why. Remember to add, commit, and push the new file.

exercise-1-fredrikaugust's People

Contributors

fredrikaugust avatar github-classroom[bot] avatar

Watchers

James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.