Difference between revisions of "IAG0582 - Programming II"

From ATI public wiki
Jump to: navigation, search
(new line)
m (plagirasim)
(3 intermediate revisions by the same user not shown)
Line 3: Line 3:
 
[http://pld.ttu.ee/~trkal/Download%20PuTTY.pdf How to access your P drive from home and how to remotely compile code in school computers]<br />
 
[http://pld.ttu.ee/~trkal/Download%20PuTTY.pdf How to access your P drive from home and how to remotely compile code in school computers]<br />
  
[https://docs.google.com/spreadsheets/d/1AhX9Zcx7YsERITXy8WewILtJl5VrTs_LeKfKp5O8Bjg/edit?usp=sharing Results]
+
[https://docs.google.com/spreadsheets/d/10XYmGs3TF9rCSYVsmE1ewDG-HixHFsq-Un6WvyvPSXY/edit?usp=sharing Results]<br />
 +
[https://docs.google.com/document/d/1uFQgAoKpQ_KS2JWnZgwGb_ZpC7U-MXXXJNs-WMCwaXo/edit?usp=sharing Programming resources]<br />
 +
 
 +
 
 +
HW2 version is chosen by the last digit in your student code<br />
 +
[http://www.tud.ttu.ee/im/Vladimir.Viies/materials/IAX0583%2cIAX0584%2cIAG0581%2cIAG0582%2cPROGRAMMEERIMINE/PR2/PR2en/pr2_en20/home_kodune2Pr2/ Link to homework2]
 
==E-studies==
 
==E-studies==
 +
All homeworks are individual works and while learning programming in groups is allowed, sending 2 identical works is not allowed<br />
 +
 
[http://pld.ttu.ee/~trkal/E/PR217.03.pdf Exercise for 17.03.2020 lesson]<br />
 
[http://pld.ttu.ee/~trkal/E/PR217.03.pdf Exercise for 17.03.2020 lesson]<br />
 
All codes have to be sent to trkal@ati.ttu.ee and vladimir.viies@gmail.com
 
All codes have to be sent to trkal@ati.ttu.ee and vladimir.viies@gmail.com

Revision as of 22:16, 23 March 2020

Eesti keelne leht Estonia.png

General Information

How to access your P drive from home and how to remotely compile code in school computers

Results
Programming resources


HW2 version is chosen by the last digit in your student code
Link to homework2

E-studies

All homeworks are individual works and while learning programming in groups is allowed, sending 2 identical works is not allowed

Exercise for 17.03.2020 lesson
All codes have to be sent to trkal@ati.ttu.ee and vladimir.viies@gmail.com

Tests

I test 5. week files and structs 20 points
II test 12. week dynamic memory allocation 20 points

Homeworks

I homework files and structs 15 points
II homework dynamic memory allocation 15 points
III homework optional 10 points
Database task
Microcontroller task

First two homeworks must be done before thursday of 16. week. Third homework's deadline is until the end of the semester.

If there is a suspicion of plagiarism for any submitted work of student, the grade for that submission will be 0 points. To improve the score, the submission must be defended.

Practice classes

It is possible to gather up to 36 points from practice classes

  • 1p for participation (total can be maximum of 14p)
  • practice class tasks up to 22, from which 4p will be from guest practice classes:
    • Database task 2p
    • Microcontroller task 2p

More information about the practice classes can be found on your practice class teacher's homepage

Requirements for exam

  1. Pre-exam requirement is 61p before the start of exam session
  2. Exam requirement is 50p ( practice + test I + test 2 + bonus )

Exam

Exam's grade is the result of the following points:

Homework I + homework II + homework III + written examination (max 65p)

3. Homework

Database homework

  • There has been given a PostgreSQL database, which consists of a simple student information system data.
  • To take the task, you first have to register with your student code. This is necessary for creating an user for you and an user specific database, which has been filled with sample structure and data. You will have rights to insert, modify and delete rows in your database and feel free to do so.
Registration
  • Connection parameters:
Host: ewis.pld.ttu.ee
Database: <student code>
Port: 5432
User: <student code>
Password: <password you chose during registration>
  • For managing the database, you can use some of postgre database clients, like:
  • Data structure has been given with the image

Is struct.png

  • If there is a need to reset the initial database, you can use the following SQL statements for that - Link

Tasks

Create a text based user interface program, that would have the following functionality:

  1. Adding a student. User will be asked: first name, last name, date of birth. Program has to generate unique student code for each student. (2p)
  2. Modifying and deleting a student. (2p)
  3. Adding, modifying and deleting a course. (2p)
  4. Giving grade for a student for a specific course. When inserting a grade, the average grade should also be updated taking account the credit points. (2p)
  5. Searching students based on their weighted average grade. (2p) For example, if we want to find the best students we could specify condition 'avg > 4.6'

Program has to communicate with the given database and use it for reading and storing data.

Finished homework should be sent to raiko.keinanen@gmail.com

Compiling code with PostgreSQL library

To connect the PostgreSQL database within your C code, you have to have the connector libraries installed and the compiler has to know where to find them.

The easiest way to compile your program is using TUT's lab computers, where PostgreSQL is previously installed and the library can be easily included. Guide for connecting to lab computers over SSH

It is of course possible to install the PostgreSQL C libraries also on your own computer independent of your OS, but this can be time consuming on the first try.

For more information about setting it up yourself, you can see PostgreSQL setup

When compiling, you should include the header file in your C code:

#include <pgsql/libpg-fe.h>

Keep in mind that the location could be different if you choose to compile it from your own computer.

While compiling you should also give the linker argument -lpq. For example gcc -o program main.c -lpq.

Helping materials

C sample

Sample - Creates a connection with a database and queries 10 first rows.