A New Didactic Method for Programming in C for Freshmen Students Using LEGO Mindstorms EV3

Μέγεθος: px
Εμφάνιση ξεκινά από τη σελίδα:

Download "A New Didactic Method for Programming in C for Freshmen Students Using LEGO Mindstorms EV3"

Transcript

1 A New Didactic Method for Programming in C for Freshmen Students Using LEGO Mindstorms EV3 Simón Rodriguez Perez, Carolin Gold-Veerkamp, Jörg Abke, Kai Borgeest University of Applied Sciences Aschaffenburg Wuerzburger Straße 45 D Aschaffenburg {simon.rodriguez-perez, carolin.gold-veerkamp, joerg.abke, kai.borgeest}@h-ab.de Abstract In this paper a new teaching-learning-method including the LEGO Mindstorms EV3 is presented. This computer sciences course is part of the studies of mechatronics in the first two semesters. The programming language being mediated is ANSI-C. Computer science is not the most popular subject in the interdisciplinary engineering field of mechatronics, therefore the EV3 should be included to increase motivation. For the new approach the former course without the usage of EV3s was evaluated and a competency profile was identified. On this basis a new didactical method was designed and implemented. The EV3 is programmed with the IDE Eclipse and with a self programmed plug-in. Index Terms C-programming, didactic method, EV3, freshmen students, LEGO Mindstorms. I. INTRODUCTION In engineering classes computer science is not the favorite subject. A lot of students have big problems with programming, because of the complexity, abstract thinking and the fact that it is not tangible. Also many of the mechatronic students prefer the field of mechanical engineering, so they like the real hardware more. This is a empirical value of several professors of the university in Aschaffenburg. The aim is to improve the quality of teaching and learning in C-programming, taking place in the first and second semester of a bachelor course in mechatronics. The subject lists a total of eight ECTS credit points (four for each semester) and requires 180 minutes (50% lecture and 50% practical sessions) plus preparation and wrap-up time per week. Another reason is to lower the obstacles for software engineering in the fourth semester, in which the students have to program a microcontroller in a project using C. In the following Sections an analysis of the students evaluation to identify potentials for improvements takes place. Additionally, a comparison of technical competencies between intention and mediation was made to detect further possibilities for optimisation. Using this information a new haptic teaching-learning-method was developed, which is explained in this paper. This topic was presented in earlier papers submitted to the IEEE, but the themes differ from this publications. In this course the IDE Eclipse with the programming language C is used, in contrast to [1] [9]. Furthermore, in [1] [5], [7], [10], [11] the LEGO Mindstorms NXT or RCX is applied, not the EV3, which offers a lot of new possibilities. Also the target group is different from the one in this paper: [1], [5], [7], [8], [12]. In [9] [11] they have the same target group freshmen students in engineering studies, but an older version of the robot or another programming language. The paper is organized as follows: In Section II there is an overview of the used software (Eclipse and our own EV3 plugin) and hardware (EV3). Then the detected potentials for a new course are described in Section III. With this information the new teaching-learning arrangement was developed and is pictured in Section IV. To validate this new course there was an evaluation of the new exercises (Sec. V). The conclusion (Sec. VI) summarizes the content. II. CONTEXT This Section gives a brief introduction into the used softand hardware. A. IDE Eclipse The IDE (Integrated Development Environment) Eclipse [13] is a powerful development environment, which is also used in industry. Also it is an open source project, which offers a lot of possibilities for programmers, e.g. developing own plug-ins. A lot of companies use Eclipse for developing software, so the students learn how to work with a practiceoriented tool. With all these points in background, the decision was made to use Eclipse for this course and in higher semesters. B. LEGO Mindstorms EV3 LEGO Mindstorms is a product of the toy manufacturer LEGO. It contains a programmable brick, a lot of sensors and motors and can be build up with the LEGO technical line. [14] The robot (Figure 1) has two different types of motors, one for higher speed and one with higher torque. The standard sensors are listed here: Touch Sensor Color Sensor Ultrasonic Sensor Gyro Sensor Infrared Sensor

2 The following potentials were detected: 1) More practical orientation 2) Not enough exercises 3) Missing illustrative exercises Also the students were asked about their expectations for the second semester: 4) Get an insight of embedded programming 5) Enhancing learning-by-doing 6) Improved comprehension Figure 1. LEGO Mindstorms EV3 [15] There are three different versions of the LEGO Mindstorms, RIS, NXT and EV3. The EV3 is the latest Version and offers a lot of new possibilities with its Linux kernel. With the original software from LEGO the EV3 can be programmed graphically. Also there are lot of extensions for most of the common languages. Only for ANSI-C, which is used in this course, there was no complete plug-in including all the robot functions. C. Eclipse plug-in for EV3 The reason for developing our own plug-in was that there was no possibility to program the brick with ANSI-C without changing the EV3-firmware. Also there was no complete application programming interface (API), which included all motors and sensors from LEGO. So the existing projects were completed by including the functions to readout all sensors. It is now possible to receive all data with its correct resolution. After completing the API a plug-in for the IDE Eclipse was programmed. It creates a new project, includes the API and the necessary cross compiler. For downloading the files via USB to the EV3 an interface was designed, which is shown in Figure 2. With these answers in background, the decision was made to use LEGO Mindstorms Robots [14] to improve the process of learning. The EV3 is an embedded system, which offers the students a more practical and illustrative learning by moving a real hardware and selecting data from the laboratory environment. As a consequence the students have been asked which advantages and disadvantages they would expect by the implementation of a robot into the teaching-learning arrangement. The listed advantages have been named most often: Better understanding More practical relevance More fun in education Higher motivation Outcome and errors directly visible Incentive to work harder Disadvantages: Complexity New challenges Programming takes longer Too specific context deflection from the main teaching objective Exercises can not be done at home Limitation of the programming topics IV. CONCEPTUAL APPROACH On this basis, a new teaching-learning arrangement for the practical part of the course has been designed, which tries to implement the potentials found, to meet the students prospects and to eliminate the expected disadvantages. Figure 3 shows this new conceptual design by illustrating the theoretical as well as the practical section. Figure 2. Screenshot of the plug-in buttons for transmitting the program III. POTENTIALS FOR IMPROVEMENT At the end of the winter semester 2014/15 an evaluation in the first semester was performed. Figure 3. Conceptual course design for the 1 st and 2 nd semester separated in a theoretical and practical part

3 The theoretical session is an ex-cathedra lecture where themes like variables, functions, pointers and abstract data types are part of the course. In the practical session the theoretical knowledge is deepened. At the beginning of the first semester the students have to program on the PC, because this approach makes it easier to focus on teaching the fundamentals and learning how two work with the environment Eclipse. The students learn how to build up a C-project, define and use simple data types (e.g. integer, boolean, float,...) as well as declarate variables and existing number systems (e.g. decimal, dual, floating point,...). In the second part of the first semester and at the beginning of the second semester the EV3 is used to support the learning process, which is appropriate for the following themes e.g.: Conditional statements: React on specific sensor values and control the flow Loops: Repeat specific steps, like reading out the sensors Pointer: Save the sensor values temporarily in an array and analyze them File management: Create, read and write (in) files to save the data in the long term and check them with a PC V. EVALUATION AND EXPERIENCES The following Section includes the perspective of the students (Sec. V-A) as well as of the laboratory team (Sec. V-B) and combines the two to give recommendations for possible modifications and adjustments. The laboratory team consists of one professor, two tutors and one masterstudent. All Figures and explanations are based on the actual status of the semester (end of May 2015) and includes only the EV3 exercises, which were performed until now. A. Students After every exercise the students were asked how difficult it was using a questionnaire. The result of the difficulty on average is shown in Figure 4, thereby a five-point Likert scale (1 really easy, 5 very hard) was exploited. Each group consists of about 18 students. The second semester will end with a small project to repeat all learned topics and to use a few algorithms. The project will take approximately three weeks while working in team. One possible task could be a pathfinder for a labyrinth. For checking the implemented algorithm the design of the labyrinth will be alternated. Subsequently there are two exercises explained exemplarily. A. One- and two-dimensional arrays In this exercise the students should learn how to work with arrays. Therefore they have to implement a distance meter. The robot reads out the distance to the next object with its ultrasonic sensor. The actual distance is shown on the LC display and updated cyclically. If the touch sensor is pressed, the distance has to be saved in a field, which was declarated at the beginning of the program. After finishing the measurement the robot should show the number of data points, the minimum and the maximum distance. B. Storing data in text files Later on, the distance meter should be extended. For this the code of the old exercise (Sec. IV-A) will be copied. Then a text file will be opened or a new one created. When this text file will be opened successfully all datapoints are saved in this file. After closing the file and finishing the program, the file can be opened at the PC and the data can be processed. This exercise should show how important it is to save data and how it is implemented. Figure 4. Graph of the difficulty of the exercises The graphs show a relatively equal trend. The most difficult exercises on average are structures and dynamic memory management. The first exercise was only an introduction into the EV3 without any themes and the values show that programming the brick itself is a bit difficult to understand. It relates to the amount of commands that are necessary for programming an easy program. A solution for this problem could be a smaller list of commands, by reducing it to a minimum. The following exercises seem to be quite difficult from the students point of view. But in contrast there has been no evaluation of prior semesters concerning the difficulty of exercises without the usage of EV3s. In Figure 5 the fun and the difficulty of the regular exercises with the EV3 are shown. The scale goes from 1 (no fun) to 5 (very much). The graphs show that in every group the fun depends on the difficulty respectively vice versa.

4 ACKNOWLEDGMENT The present work as part of the EVELIN project was funded by the German Federal Ministry of Education and Research (Bundesministerium für Bildung und Forschung) under grant number 01PL12022B. The authors are responsible for the content of this publication. REFERENCES Figure 5. Graph of the fun the students had with the exercises B. Laboratory Team The problems the students have with programming the EV3 could be reduced to the fact that the students have big problems with using the knowledge attained in the first semester; e.g.: implementing loops, conditional statements and calling functions correctly. This can be seen during the practical session and in the evaluation. C. Conclusion In the first exercises the students had to program too much on the EV3, so the actual content got lost; i.e. the students were busy with understanding and implementing the EV3- specific commands. These exercises will be edited to reduce the workload of the EV3 and focus more on the topics. Also the new ones will include the EV3 only as functional instrument, so the students do not learn programming a robot but learn programming in C. In summary, it can be said that the fun is directly related to the difficulty of the exercises. The goal for the next semester is to increase the fun factor without reducing the difficulty by improving the EV3 plug-in and shorten the workload for the EV3 programming to focus on the important content. VI. SUMMARY AND OUTLOOK The Eclipse plug-in was successfully implemented, including an EV3-API (Sec. II-C). This plug-in allows the students to build a program using ANSI-C Code and transfer the program onto the robot via USB-interface. At the moment, the conceptual course design (Sec. IV) is implemented in the current semester, which started in March It is based on the identified potentials for improvement (Sec. III). In this short paper the first experiences with this new didactical method are presented (Sec. V). At the end of the semester a final evaluation of the whole course (2 nd semester) will take place including all exercises. The described design for the 1 st semester will be performed in the winter semester (starting in October 2015). [1] S. Kato and H. Tominaga, A style and tool for group exercise of introductory programming with lego robot control as pre-education event, in th International Conference on Information Technology Based Higher Education and Training (ITHET), pp [2] Seung Han Kim and Jae Wook Jeon, Programming lego mindstorms nxt with visual programming, in 2007 International Conference on Control, Automation and Systems, pp [3], Using visual programming kit and lego mindstorms: An introduction to embedded system, in 2008 IEEE International Conference on Industrial Technology - (ICIT), pp [4] H.-N. Liang, C. Fleming, K. L. Man, and T. Tillo, A first introduction to programming for first-year students at a chinese university using lego mindstorms, in 2013 IEEE International Conference on Teaching, Assessment and Learning for Engineering (TALE), pp [5] I. Weissberger, A. Qureshi, and A. Qureshi, Delivering software engineering education through lego robotics, in th International Conference on Computer Science & Education (ICCSE), pp [6] Y. Onishi, H. Tominaga, and T. Yamasaki, Goalpost: Lego programming exercise support, in 2005 International Conference on Active Media Technology, (AMT 2005), May 19-21, 2005, pp [7] A. M. Brandt and M. B. Colton, Toys in the classroom: Lego mindstorms as an educational haptics platform, in 2008 Symposium on Haptic Interfaces for Virtual Environment and Teleoperator Systems, pp [8] A. Nagchaudhuri, G. Singh, M. Kaur, and S. George, Lego robotics products boost student creativity in precollege programs at umes, in Conference on Frontiers in Education, 6-9 Nov. 2002, pp. S4D 1 S4D 6. [9] M. Lykke, M. Coto, S. Mora, N. Vandel, and C. Jantzen, Motivating programming students by problem based learning and lego robots, in 2014 IEEE Global Engineering Education Conference (EDUCON), pp [10] M. v. Schwerin, Software engineering in a nutshell for electrical engineering students, in 2014 IEEE Global Engineering Education Conference (EDUCON), pp [11] M. I. Garduno Mota, Work in progress - using lego mindstorms and robolab as a mean to lowering dropout and failure rate in programming course, in th annual frontiers in education conference - global engineering: knowledge without borders, opportunities without passports, pp. F4A 1 F4A 2. [12] A. Sovic, T. Jagust, and D. Sersic, How to teach basic university-level programming concepts to first graders? in 2014 IEEE Integrated STEM Education Conference (ISEC), pp [13] The Eclipse Foundation, Eclipse ide, retrieved: [Online]. Available: [14] The LEGO Group, Lego education, retrieved: [Online]. Available: [15] Vistateach Instructional Services, Ev 3, retrieved: [Online]. Available:

CONTINUING EDUCATION IN EMERGENCY CARE

CONTINUING EDUCATION IN EMERGENCY CARE CONTINUING EDUCATION IN EMERGENCY CARE Ir.Christodoulou, Z. Koukouritaki, C.Pogonidis, E.Xenodoxidou 2nd Surgical department, Papanikolaou Hospital of Thessaloniki AIM: The widely accepted need for continuing

Διαβάστε περισσότερα

TRIAGE IN MASS CASUALTIES: THE ROLE OF TEAMWORK

TRIAGE IN MASS CASUALTIES: THE ROLE OF TEAMWORK TRIAGE IN MASS CASUALTIES: THE ROLE OF TEAMWORK Ir.Christodoulou 1, Z. Koukouritaki 1, Ch.Pogonidis 2 E.Xenodoxidou 2, I. Karoutsou 2, M.Handolias 1, E.Papamichael 1,G.Christianopoulos 1 1. 2nd Surgical

Διαβάστε περισσότερα

O R A M A M I N I M A L F R A M E S A R C H I T E C T U R A L C A T A L O G U E

O R A M A M I N I M A L F R A M E S A R C H I T E C T U R A L C A T A L O G U E O R A M A M I N I M A L F R A M E S A R C H I T E C T U R A L C A T A L O G U E 2 Introduction 3 Technical sheet Table of contents 1 4 OMICRON 4.1 Typical Sections 4.2 Multitrack Frames 4.3 Labyrinth Profiles

Διαβάστε περισσότερα

A, B. Before installation of the foam parts (A,B,C,D) into the chambers we put silicone around. We insert the foam parts in depth shown on diagram.

A, B. Before installation of the foam parts (A,B,C,D) into the chambers we put silicone around. We insert the foam parts in depth shown on diagram. Corner Joints Machining, Frame edge sealing. Page ID: frame01 D D C A, B A C B C A 20 60 Before installation of the foam parts (A,B,C,D) into the chambers we put silicone around. We insert the foam parts

Διαβάστε περισσότερα

Pellet P50 FAN HEATER STOVE. NEW Fan heater Pellet stove P50.

Pellet P50 FAN HEATER STOVE. NEW Fan heater Pellet stove P50. Pellet FAN HEATER STOVE P50 NEW Fan heater Pellet stove P50 www.caminodesign.gr Pellet P50 FAN HEATER STOVE 6,6 kw FAN HEATER PELLET STOVE Fan heater stove Pellet P50 is a stove with unique design, sloping

Διαβάστε περισσότερα

Project Pavillion Vert Discrict Heating. Groupe Gambetta - Compte-R Le Grand Parc, Bondoufle, France PelleTech Idro 500 kw Αποτελέσματα ενεργειακής αναβάθμισης σε συγκρότημα διαμερισμάτων στην Γαλλία

Project Pavillion Vert Discrict Heating. Groupe Gambetta - Compte-R Le Grand Parc, Bondoufle, France PelleTech Idro 500 kw
Αποτελέσματα ενεργειακής αναβάθμισης σε συγκρότημα διαμερισμάτων στην Γαλλία Project Pavillion Vert Discrict Heating Groupe Gambetta - Compte-R Le Grand Parc, Bondoufle, France PelleTech Idro 500 kw PROJECT OVERVIEW 1 x PelleTech 500 kw Idro Pellet Version Supplying heat to 3 independent

Διαβάστε περισσότερα

Tsikolatas A. (2014) Inclusive Education in Greek Education System. Challenges and prospects. Athens

Tsikolatas A. (2014) Inclusive Education in Greek Education System. Challenges and prospects. Athens University of Athens DEPARTMENT OF EDUCATION POSTGRADUATE STUDIES IN SPECIAL EDUCATION Cross-cultural Perspectives of Educational Exclusion and Inclusion Inclusive Education in Greek Education System.

Διαβάστε περισσότερα

derivation of the Laplacian from rectangular to spherical coordinates

derivation of the Laplacian from rectangular to spherical coordinates derivation of the Laplacian from rectangular to spherical coordinates swapnizzle 03-03- :5:43 We begin by recognizing the familiar conversion from rectangular to spherical coordinates (note that φ is used

Διαβάστε περισσότερα

Control of electric gates and barriers via mobile phone Mobile web app www.topkodas.lt info@topkodas.lt Price list: Sample 99 EUR 10pcs 71 EUR 100pcs 49 EUR 1000pcs 36 EUR

Control of electric gates and barriers via mobile phone Mobile web app www.topkodas.lt info@topkodas.lt Price list:
Sample 99 EUR
10pcs 71 EUR 
100pcs 49 EUR
1000pcs 36 EUR Control of electric gates and barriers via mobile phone Mobile web app Report Date 1 Control of electric gates and barriers via mobile phone Mobile web app Applications: Features of the module GTalarm2

Διαβάστε περισσότερα

Code Breaker. TEACHER s NOTES

Code Breaker. TEACHER s NOTES TEACHER s NOTES Time: 50 minutes Learning Outcomes: To relate the genetic code to the assembly of proteins To summarize factors that lead to different types of mutations To distinguish among positive,

Διαβάστε περισσότερα

GSM Gate Opener Free Call Wireless Door Access controller Remote Control system. www.topkodas.lt info@topkodas.lt Price list: Sample 99 EUR 10pcs 71 EUR 100pcs 49 EUR 1000pcs 36 EUR

GSM Gate Opener Free Call Wireless Door Access controller Remote Control system. www.topkodas.lt info@topkodas.lt
Price list:
Sample 99 EUR
10pcs 71 EUR 
100pcs 49 EUR
1000pcs 36 EUR Price list: Sample 99 EUR; 10pcs 71 EUR; 100pcs 49 EUR; 1000pcs 36 EUR 1 Application examples 1.1 One or multiple door control with app User2 ON ON ON OFF OFF OFF Gate Barier Database User1 Out1 User2

Διαβάστε περισσότερα

Section 8.3 Trigonometric Equations

Section 8.3 Trigonometric Equations 99 Section 8. Trigonometric Equations Objective 1: Solve Equations Involving One Trigonometric Function. In this section and the next, we will exple how to solving equations involving trigonometric functions.

Διαβάστε περισσότερα

SIMULATION MODELS IN EMERGENCY MEDICINE

SIMULATION MODELS IN EMERGENCY MEDICINE SIMULATION MODELS IN EMERGENCY MEDICINE Christodoulou Ir 1,Babalis D 2,Ch. Pogonidis 2, E.Xenodoxidou 2 1.2nd Surgical Department, Papanikolaou Hospital, Thessaloniki, 2.Surgical Department, Hospital of

Διαβάστε περισσότερα

HOMEWORK 4 = G. In order to plot the stress versus the stretch we define a normalized stretch:

HOMEWORK 4 = G. In order to plot the stress versus the stretch we define a normalized stretch: HOMEWORK 4 Problem a For the fast loading case, we want to derive the relationship between P zz and λ z. We know that the nominal stress is expressed as: P zz = ψ λ z where λ z = λ λ z. Therefore, applying

Διαβάστε περισσότερα

Capacitors - Capacitance, Charge and Potential Difference

Capacitors - Capacitance, Charge and Potential Difference Capacitors - Capacitance, Charge and Potential Difference Capacitors store electric charge. This ability to store electric charge is known as capacitance. A simple capacitor consists of 2 parallel metal

Διαβάστε περισσότερα

Answer ALL questions. Write your answers in the spaces provided. You must write down all the stages in your working

Answer ALL questions. Write your answers in the spaces provided. You must write down all the stages in your working Answer ALL questions. 1 Write the following numbers in order of size. Start with the smallest number. 2 Write 0.037 as a fraction. 3 Write down the 20th odd number. Write your answers in the spaces provided.

Διαβάστε περισσότερα

Οι αδελφοί Montgolfier: Ψηφιακή αφήγηση The Montgolfier Βrothers Digital Story (προτείνεται να διδαχθεί στο Unit 4, Lesson 3, Αγγλικά Στ Δημοτικού)

Οι αδελφοί Montgolfier: Ψηφιακή αφήγηση The Montgolfier Βrothers Digital Story (προτείνεται να διδαχθεί στο Unit 4, Lesson 3, Αγγλικά Στ Δημοτικού) Οι αδελφοί Montgolfier: Ψηφιακή αφήγηση The Montgolfier Βrothers Digital Story (προτείνεται να διδαχθεί στο Unit 4, Lesson 3, Αγγλικά Στ Δημοτικού) Προσδοκώμενα αποτελέσματα Περιεχόμενο Ενδεικτικές δραστηριότητες

Διαβάστε περισσότερα

BECAUSE WE REALLY WANT TO KNOW WHAT YOU THINK ABOUT SCHOOL AND YOUR GARDEN. Fairly true If I decide to learn something hard, I can.

BECAUSE WE REALLY WANT TO KNOW WHAT YOU THINK ABOUT SCHOOL AND YOUR GARDEN. Fairly true If I decide to learn something hard, I can. BECAUSE WE REALLY WANT TO KNOW WHAT YOU THINK ABOUT SCHOOL AND YOUR GARDEN Name GRADE Science Teacher A. What do I think about School? bit I try hard to do well in school. I look forward to coming to school.

Διαβάστε περισσότερα

Εγκατάσταση λογισμικού και αναβάθμιση συσκευής Device software installation and software upgrade

Εγκατάσταση λογισμικού και αναβάθμιση συσκευής Device software installation and software upgrade Για να ελέγξετε το λογισμικό που έχει τώρα η συσκευή κάντε κλικ Menu > Options > Device > About Device Versions. Στο πιο κάτω παράδειγμα η συσκευή έχει έκδοση λογισμικού 6.0.0.546 με πλατφόρμα 6.6.0.207.

Διαβάστε περισσότερα

Instruction Execution Times

Instruction Execution Times 1 C Execution Times InThisAppendix... Introduction DL330 Execution Times DL330P Execution Times DL340 Execution Times C-2 Execution Times Introduction Data Registers This appendix contains several tables

Διαβάστε περισσότερα

Right Rear Door. Let's now finish the door hinge saga with the right rear door

Right Rear Door. Let's now finish the door hinge saga with the right rear door Right Rear Door Let's now finish the door hinge saga with the right rear door You may have been already guessed my steps, so there is not much to describe in detail. Old upper one file:///c /Documents

Διαβάστε περισσότερα

Modern Greek Extension

Modern Greek Extension Centre Number 2017 HIGHER SCHOOL CERTIFICATE EXAMINATION Student Number Modern Greek Extension Written Examination General Instructions Reading time 10 minutes Working time 1 hour and 50 minutes Write

Διαβάστε περισσότερα

the total number of electrons passing through the lamp.

the total number of electrons passing through the lamp. 1. A 12 V 36 W lamp is lit to normal brightness using a 12 V car battery of negligible internal resistance. The lamp is switched on for one hour (3600 s). For the time of 1 hour, calculate (i) the energy

Διαβάστε περισσότερα

[1] P Q. Fig. 3.1

[1] P Q. Fig. 3.1 1 (a) Define resistance....... [1] (b) The smallest conductor within a computer processing chip can be represented as a rectangular block that is one atom high, four atoms wide and twenty atoms long. One

Διαβάστε περισσότερα

Τελική Εξέταση =1 = 0. a b c. Τµήµα Ηλεκτρολόγων Μηχανικών και Μηχανικών Υπολογιστών. HMY 626 Επεξεργασία Εικόνας

Τελική Εξέταση =1 = 0. a b c. Τµήµα Ηλεκτρολόγων Μηχανικών και Μηχανικών Υπολογιστών. HMY 626 Επεξεργασία Εικόνας Τελική Εξέταση. Logic Operations () In the grid areas provided below, draw the results of the following binary operations a. NOT(NOT() OR ) (4) b. ( OR ) XOR ( ND ) (4) c. (( ND ) XOR ) XOR (NOT()) (4)

Διαβάστε περισσότερα

MR. DICKSON'S METHOD FOR BAND Book Two

MR. DICKSON'S METHOD FOR BAND Book Two Trombone Baritone MR. DICKSON'S METHOD FOR BAND Book Two www.justindickson.com/band revised February 18, 2017 "Strategies That Work When Learning New Music" Read before you play ----------------------

Διαβάστε περισσότερα

PELLET BOILER SERIES. NEW PelleTech Rotomatic boiler series with built in burner and fuel tank.

PELLET BOILER SERIES. NEW PelleTech Rotomatic boiler series with built in burner and fuel tank. PELLET BOILER SERIES NEW PelleTech Rotomatic boiler series with built in burner and fuel tank www.caminodesign.gr 2 PELLET BOILER SERIES PELLET BOILER WITH BUILT IN BURNER AND FUEL TANK Complete boiler-burner

Διαβάστε περισσότερα

ΓΡΑΜΜΙΚΟΣ & ΔΙΚΤΥΑΚΟΣ ΠΡΟΓΡΑΜΜΑΤΙΣΜΟΣ

ΓΡΑΜΜΙΚΟΣ & ΔΙΚΤΥΑΚΟΣ ΠΡΟΓΡΑΜΜΑΤΙΣΜΟΣ ΓΡΑΜΜΙΚΟΣ & ΔΙΚΤΥΑΚΟΣ ΠΡΟΓΡΑΜΜΑΤΙΣΜΟΣ Ενότητα 12: Συνοπτική Παρουσίαση Ανάπτυξης Κώδικα με το Matlab Σαμαράς Νικόλαος Άδειες Χρήσης Το παρόν εκπαιδευτικό υλικό υπόκειται σε άδειες χρήσης Creative Commons.

Διαβάστε περισσότερα

TaxiCounter Android App. Περδίκης Ανδρέας ME10069

TaxiCounter Android App. Περδίκης Ανδρέας ME10069 TaxiCounter Android App Περδίκης Ανδρέας ME10069 Content Android Operating System Development Tools Taxi Counter Algorithm Design Development Process Android Operating System Android is a Linux-based operating

Διαβάστε περισσότερα

ΠΡΟΣΟΜΟΙΩΣΗ ΘΕΩΡΙΑ 1. H αρχική οθόνη του Open Roberta lab

ΠΡΟΣΟΜΟΙΩΣΗ ΘΕΩΡΙΑ 1. H αρχική οθόνη του Open Roberta lab ΠΡΟΣΟΜΟΙΩΣΗ ΘΕΩΡΙΑ 1 Πριν ξεκινήσουμε να δημιουργούμε και να προγραμματίζουμε τα ρομπότ και ιδιαίτερα το EV3 της Lego, καλό θα ήταν να δοκιμάσουμε τις γνώσεις και τις ικανότητές μας στον προσομοιωτή. Ο

Διαβάστε περισσότερα

ΠΑΝΕΠΙΣΤΗΜΙΟ ΚΥΠΡΟΥ - ΤΜΗΜΑ ΠΛΗΡΟΦΟΡΙΚΗΣ ΕΠΛ 133: ΑΝΤΙΚΕΙΜΕΝΟΣΤΡΕΦΗΣ ΠΡΟΓΡΑΜΜΑΤΙΣΜΟΣ ΕΡΓΑΣΤΗΡΙΟ 3 Javadoc Tutorial

ΠΑΝΕΠΙΣΤΗΜΙΟ ΚΥΠΡΟΥ - ΤΜΗΜΑ ΠΛΗΡΟΦΟΡΙΚΗΣ ΕΠΛ 133: ΑΝΤΙΚΕΙΜΕΝΟΣΤΡΕΦΗΣ ΠΡΟΓΡΑΜΜΑΤΙΣΜΟΣ ΕΡΓΑΣΤΗΡΙΟ 3 Javadoc Tutorial ΕΡΓΑΣΤΗΡΙΟ 3 Javadoc Tutorial Introduction Το Javadoc είναι ένα εργαλείο που παράγει αρχεία html (παρόμοιο με τις σελίδες στη διεύθυνση http://docs.oracle.com/javase/8/docs/api/index.html) από τα σχόλια

Διαβάστε περισσότερα

C.S. 430 Assignment 6, Sample Solutions

C.S. 430 Assignment 6, Sample Solutions C.S. 430 Assignment 6, Sample Solutions Paul Liu November 15, 2007 Note that these are sample solutions only; in many cases there were many acceptable answers. 1 Reynolds Problem 10.1 1.1 Normal-order

Διαβάστε περισσότερα

SPEEDO AQUABEAT. Specially Designed for Aquatic Athletes and Active People

SPEEDO AQUABEAT. Specially Designed for Aquatic Athletes and Active People SPEEDO AQUABEAT TM Specially Designed for Aquatic Athletes and Active People 1 2 Decrease Volume Increase Volume Reset EarphonesUSBJack Power Off / Rewind Power On / Fast Forward Goggle clip LED Status

Διαβάστε περισσότερα

Section 1: Listening and responding. Presenter: Niki Farfara MGTAV VCE Seminar 7 August 2016

Section 1: Listening and responding. Presenter: Niki Farfara MGTAV VCE Seminar 7 August 2016 Section 1: Listening and responding Presenter: Niki Farfara MGTAV VCE Seminar 7 August 2016 Section 1: Listening and responding Section 1: Listening and Responding/ Aκουστική εξέταση Στο πρώτο μέρος της

Διαβάστε περισσότερα

ΑΡΙΣΤΟΤΕΛΕΙΟ ΠΑΝΕΠΙΣΤΗΜΙΟ ΘΕΣΣΑΛΟΝΙΚΗΣ

ΑΡΙΣΤΟΤΕΛΕΙΟ ΠΑΝΕΠΙΣΤΗΜΙΟ ΘΕΣΣΑΛΟΝΙΚΗΣ ΑΡΙΣΤΟΤΕΛΕΙΟ ΠΑΝΕΠΙΣΤΗΜΙΟ ΘΕΣΣΑΛΟΝΙΚΗΣ Μελέτη των υλικών των προετοιμασιών σε υφασμάτινο υπόστρωμα, φορητών έργων τέχνης (17ος-20ος αιώνας). Διερεύνηση της χρήσης της τεχνικής της Ηλεκτρονικής Μικροσκοπίας

Διαβάστε περισσότερα

Math 6 SL Probability Distributions Practice Test Mark Scheme

Math 6 SL Probability Distributions Practice Test Mark Scheme Math 6 SL Probability Distributions Practice Test Mark Scheme. (a) Note: Award A for vertical line to right of mean, A for shading to right of their vertical line. AA N (b) evidence of recognizing symmetry

Διαβάστε περισσότερα

Pelletech domestic heating units PELLET BOILERS

Pelletech domestic heating units PELLET BOILERS Pelletech domestic heating units PELLET BOILERS Small. Affordable. Reliable. Pellet boilers with built in burner and fuel tank www.caminodesign.gr 2 15/25/35/50 PELLET BOILERS 50 kw 35 kw 25 kw 15 kw PELLET

Διαβάστε περισσότερα

Pellet P55 FAN HEATER PELLET STOVE. Fan Heater Pellet P55 stove.

Pellet P55 FAN HEATER PELLET STOVE. Fan Heater Pellet P55 stove. Pellet P55 FAN HEATER PELLET STOVE Fan Heater Pellet P55 stove www.caminodesign.gr Pellet P55 FAN HEATER STOVE 13 kw FAN HEATER PELLET STOVE Fan heater stove Pellet P55 is a stove with unique design, sloping

Διαβάστε περισσότερα

9.09. # 1. Area inside the oval limaçon r = cos θ. To graph, start with θ = 0 so r = 6. Compute dr

9.09. # 1. Area inside the oval limaçon r = cos θ. To graph, start with θ = 0 so r = 6. Compute dr 9.9 #. Area inside the oval limaçon r = + cos. To graph, start with = so r =. Compute d = sin. Interesting points are where d vanishes, or at =,,, etc. For these values of we compute r:,,, and the values

Διαβάστε περισσότερα

Phys460.nb Solution for the t-dependent Schrodinger s equation How did we find the solution? (not required)

Phys460.nb Solution for the t-dependent Schrodinger s equation How did we find the solution? (not required) Phys460.nb 81 ψ n (t) is still the (same) eigenstate of H But for tdependent H. The answer is NO. 5.5.5. Solution for the tdependent Schrodinger s equation If we assume that at time t 0, the electron starts

Διαβάστε περισσότερα

Calculating the propagation delay of coaxial cable

Calculating the propagation delay of coaxial cable Your source for quality GNSS Networking Solutions and Design Services! Page 1 of 5 Calculating the propagation delay of coaxial cable The delay of a cable or velocity factor is determined by the dielectric

Διαβάστε περισσότερα

department listing department name αχχουντσ ϕανε βαλικτ δδσϕηασδδη σδηφγ ασκϕηλκ τεχηνιχαλ αλαν ϕουν διξ τεχηνιχαλ ϕοην µαριανι

department listing department name αχχουντσ ϕανε βαλικτ δδσϕηασδδη σδηφγ ασκϕηλκ τεχηνιχαλ αλαν ϕουν διξ τεχηνιχαλ ϕοην µαριανι She selects the option. Jenny starts with the al listing. This has employees listed within She drills down through the employee. The inferred ER sttricture relates this to the redcords in the databasee

Διαβάστε περισσότερα

1999 MODERN GREEK 2 UNIT Z

1999 MODERN GREEK 2 UNIT Z STUDENT NUMBER CENTRE NUMBER HIGHER SCHOOL CERTIFICATE EXAMINATION 1999 MODERN GREEK 2 UNIT Z (55 Marks) Time allowed Two hours (Plus 5 minutes reading time) DIRECTIONS TO CANDIDATES Write your Student

Διαβάστε περισσότερα

ΚΥΠΡΙΑΚΗ ΕΤΑΙΡΕΙΑ ΠΛΗΡΟΦΟΡΙΚΗΣ CYPRUS COMPUTER SOCIETY ΠΑΓΚΥΠΡΙΟΣ ΜΑΘΗΤΙΚΟΣ ΔΙΑΓΩΝΙΣΜΟΣ ΠΛΗΡΟΦΟΡΙΚΗΣ 6/5/2006

ΚΥΠΡΙΑΚΗ ΕΤΑΙΡΕΙΑ ΠΛΗΡΟΦΟΡΙΚΗΣ CYPRUS COMPUTER SOCIETY ΠΑΓΚΥΠΡΙΟΣ ΜΑΘΗΤΙΚΟΣ ΔΙΑΓΩΝΙΣΜΟΣ ΠΛΗΡΟΦΟΡΙΚΗΣ 6/5/2006 Οδηγίες: Να απαντηθούν όλες οι ερωτήσεις. Ολοι οι αριθμοί που αναφέρονται σε όλα τα ερωτήματα είναι μικρότεροι το 1000 εκτός αν ορίζεται διαφορετικά στη διατύπωση του προβλήματος. Διάρκεια: 3,5 ώρες Καλή

Διαβάστε περισσότερα

Section 7.6 Double and Half Angle Formulas

Section 7.6 Double and Half Angle Formulas 09 Section 7. Double and Half Angle Fmulas To derive the double-angles fmulas, we will use the sum of two angles fmulas that we developed in the last section. We will let α θ and β θ: cos(θ) cos(θ + θ)

Διαβάστε περισσότερα

DESIGN OF MACHINERY SOLUTION MANUAL h in h 4 0.

DESIGN OF MACHINERY SOLUTION MANUAL h in h 4 0. DESIGN OF MACHINERY SOLUTION MANUAL -7-1! PROBLEM -7 Statement: Design a double-dwell cam to move a follower from to 25 6, dwell for 12, fall 25 and dwell for the remader The total cycle must take 4 sec

Διαβάστε περισσότερα

ΚΥΠΡΙΑΚΗ ΕΤΑΙΡΕΙΑ ΠΛΗΡΟΦΟΡΙΚΗΣ CYPRUS COMPUTER SOCIETY ΠΑΓΚΥΠΡΙΟΣ ΜΑΘΗΤΙΚΟΣ ΔΙΑΓΩΝΙΣΜΟΣ ΠΛΗΡΟΦΟΡΙΚΗΣ 19/5/2007

ΚΥΠΡΙΑΚΗ ΕΤΑΙΡΕΙΑ ΠΛΗΡΟΦΟΡΙΚΗΣ CYPRUS COMPUTER SOCIETY ΠΑΓΚΥΠΡΙΟΣ ΜΑΘΗΤΙΚΟΣ ΔΙΑΓΩΝΙΣΜΟΣ ΠΛΗΡΟΦΟΡΙΚΗΣ 19/5/2007 Οδηγίες: Να απαντηθούν όλες οι ερωτήσεις. Αν κάπου κάνετε κάποιες υποθέσεις να αναφερθούν στη σχετική ερώτηση. Όλα τα αρχεία που αναφέρονται στα προβλήματα βρίσκονται στον ίδιο φάκελο με το εκτελέσιμο

Διαβάστε περισσότερα

ΚΥΠΡΙΑΚΟΣ ΣΥΝΔΕΣΜΟΣ ΠΛΗΡΟΦΟΡΙΚΗΣ CYPRUS COMPUTER SOCIETY 21 ος ΠΑΓΚΥΠΡΙΟΣ ΜΑΘΗΤΙΚΟΣ ΔΙΑΓΩΝΙΣΜΟΣ ΠΛΗΡΟΦΟΡΙΚΗΣ Δεύτερος Γύρος - 30 Μαρτίου 2011

ΚΥΠΡΙΑΚΟΣ ΣΥΝΔΕΣΜΟΣ ΠΛΗΡΟΦΟΡΙΚΗΣ CYPRUS COMPUTER SOCIETY 21 ος ΠΑΓΚΥΠΡΙΟΣ ΜΑΘΗΤΙΚΟΣ ΔΙΑΓΩΝΙΣΜΟΣ ΠΛΗΡΟΦΟΡΙΚΗΣ Δεύτερος Γύρος - 30 Μαρτίου 2011 Διάρκεια Διαγωνισμού: 3 ώρες Απαντήστε όλες τις ερωτήσεις Μέγιστο Βάρος (20 Μονάδες) Δίνεται ένα σύνολο από N σφαιρίδια τα οποία δεν έχουν όλα το ίδιο βάρος μεταξύ τους και ένα κουτί που αντέχει μέχρι

Διαβάστε περισσότερα

Assalamu `alaikum wr. wb.

Assalamu `alaikum wr. wb. LUMP SUM Assalamu `alaikum wr. wb. LUMP SUM Wassalamu alaikum wr. wb. Assalamu `alaikum wr. wb. LUMP SUM Wassalamu alaikum wr. wb. LUMP SUM Lump sum lump sum lump sum. lump sum fixed price lump sum lump

Διαβάστε περισσότερα

SCITECH Volume 13, Issue 2 RESEARCH ORGANISATION Published online: March 29, 2018

SCITECH Volume 13, Issue 2 RESEARCH ORGANISATION Published online: March 29, 2018 Journal of rogressive Research in Mathematics(JRM) ISSN: 2395-028 SCITECH Volume 3, Issue 2 RESEARCH ORGANISATION ublished online: March 29, 208 Journal of rogressive Research in Mathematics www.scitecresearch.com/journals

Διαβάστε περισσότερα

ΔΙΠΛΩΜΑΤΙΚΗ ΕΡΓΑΣΙΑ. Τα γνωστικά επίπεδα των επαγγελματιών υγείας Στην ανοσοποίηση κατά του ιού της γρίπης Σε δομές του νομού Λάρισας

ΔΙΠΛΩΜΑΤΙΚΗ ΕΡΓΑΣΙΑ. Τα γνωστικά επίπεδα των επαγγελματιών υγείας Στην ανοσοποίηση κατά του ιού της γρίπης Σε δομές του νομού Λάρισας ΠΑΝΕΠΙΣΤΗΜΙΟ ΘΕΣΣΑΛΙΑΣ ΣΧΟΛΗ ΕΠΙΣΤΗΜΩΝ ΥΓΕΙΑΣ ΤΜΗΜΑ ΙΑΤΡΙΚΗΣ ΠΡΟΓΡΑΜΜΑ ΜΕΤΑΠΤΥΧΙΑΚΩΝ ΣΠΟΥΔΩΝ ΠΡΩΤΟΒΑΘΜΙΑ ΦΡΟΝΤΙΔΑ ΥΓΕΙΑΣ ΔΙΠΛΩΜΑΤΙΚΗ ΕΡΓΑΣΙΑ Τα γνωστικά επίπεδα των επαγγελματιών υγείας Στην ανοσοποίηση

Διαβάστε περισσότερα

ΓΕΩΜΕΣΡΙΚΗ ΣΕΚΜΗΡΙΩΗ ΣΟΤ ΙΕΡΟΤ ΝΑΟΤ ΣΟΤ ΣΙΜΙΟΤ ΣΑΤΡΟΤ ΣΟ ΠΕΛΕΝΔΡΙ ΣΗ ΚΤΠΡΟΤ ΜΕ ΕΦΑΡΜΟΓΗ ΑΤΣΟΜΑΣΟΠΟΙΗΜΕΝΟΤ ΤΣΗΜΑΣΟ ΨΗΦΙΑΚΗ ΦΩΣΟΓΡΑΜΜΕΣΡΙΑ

ΓΕΩΜΕΣΡΙΚΗ ΣΕΚΜΗΡΙΩΗ ΣΟΤ ΙΕΡΟΤ ΝΑΟΤ ΣΟΤ ΣΙΜΙΟΤ ΣΑΤΡΟΤ ΣΟ ΠΕΛΕΝΔΡΙ ΣΗ ΚΤΠΡΟΤ ΜΕ ΕΦΑΡΜΟΓΗ ΑΤΣΟΜΑΣΟΠΟΙΗΜΕΝΟΤ ΤΣΗΜΑΣΟ ΨΗΦΙΑΚΗ ΦΩΣΟΓΡΑΜΜΕΣΡΙΑ ΕΘΝΙΚΟ ΜΕΣΟΒΙΟ ΠΟΛΤΣΕΧΝΕΙΟ ΣΜΗΜΑ ΑΓΡΟΝΟΜΩΝ-ΣΟΠΟΓΡΑΦΩΝ ΜΗΧΑΝΙΚΩΝ ΣΟΜΕΑ ΣΟΠΟΓΡΑΦΙΑ ΕΡΓΑΣΗΡΙΟ ΦΩΣΟΓΡΑΜΜΕΣΡΙΑ ΓΕΩΜΕΣΡΙΚΗ ΣΕΚΜΗΡΙΩΗ ΣΟΤ ΙΕΡΟΤ ΝΑΟΤ ΣΟΤ ΣΙΜΙΟΤ ΣΑΤΡΟΤ ΣΟ ΠΕΛΕΝΔΡΙ ΣΗ ΚΤΠΡΟΤ ΜΕ ΕΦΑΡΜΟΓΗ ΑΤΣΟΜΑΣΟΠΟΙΗΜΕΝΟΤ

Διαβάστε περισσότερα

Srednicki Chapter 55

Srednicki Chapter 55 Srednicki Chapter 55 QFT Problems & Solutions A. George August 3, 03 Srednicki 55.. Use equations 55.3-55.0 and A i, A j ] = Π i, Π j ] = 0 (at equal times) to verify equations 55.-55.3. This is our third

Διαβάστε περισσότερα

ΠΑΝΕΠΙΣΤΗΜΙΟ ΠΑΤΡΩΝ ΤΜΗΜΑ ΗΛΕΚΤΡΟΛΟΓΩΝ ΜΗΧΑΝΙΚΩΝ ΚΑΙ ΤΕΧΝΟΛΟΓΙΑΣ ΥΠΟΛΟΓΙΣΤΩΝ ΤΟΜΕΑΣ ΣΥΣΤΗΜΑΤΩΝ ΗΛΕΚΤΡΙΚΗΣ ΕΝΕΡΓΕΙΑΣ ΕΡΓΑΣΤΗΡΙΟ ΥΨΗΛΩΝ ΤΑΣΕΩΝ

ΠΑΝΕΠΙΣΤΗΜΙΟ ΠΑΤΡΩΝ ΤΜΗΜΑ ΗΛΕΚΤΡΟΛΟΓΩΝ ΜΗΧΑΝΙΚΩΝ ΚΑΙ ΤΕΧΝΟΛΟΓΙΑΣ ΥΠΟΛΟΓΙΣΤΩΝ ΤΟΜΕΑΣ ΣΥΣΤΗΜΑΤΩΝ ΗΛΕΚΤΡΙΚΗΣ ΕΝΕΡΓΕΙΑΣ ΕΡΓΑΣΤΗΡΙΟ ΥΨΗΛΩΝ ΤΑΣΕΩΝ ΠΑΝΕΠΙΣΤΗΜΙΟ ΠΑΤΡΩΝ ΤΜΗΜΑ ΗΛΕΚΤΡΟΛΟΓΩΝ ΜΗΧΑΝΙΚΩΝ ΚΑΙ ΤΕΧΝΟΛΟΓΙΑΣ ΥΠΟΛΟΓΙΣΤΩΝ ΤΟΜΕΑΣ ΣΥΣΤΗΜΑΤΩΝ ΗΛΕΚΤΡΙΚΗΣ ΕΝΕΡΓΕΙΑΣ ΕΡΓΑΣΤΗΡΙΟ ΥΨΗΛΩΝ ΤΑΣΕΩΝ Διπλωµατική Εργασία Της Φοιτήτριας του Τµήµατος Ηλεκτρολόγων

Διαβάστε περισσότερα

Example Sheet 3 Solutions

Example Sheet 3 Solutions Example Sheet 3 Solutions. i Regular Sturm-Liouville. ii Singular Sturm-Liouville mixed boundary conditions. iii Not Sturm-Liouville ODE is not in Sturm-Liouville form. iv Regular Sturm-Liouville note

Διαβάστε περισσότερα

ΔΘΝΗΚΖ ΥΟΛΖ ΓΖΜΟΗΑ ΓΗΟΗΚΖΖ

ΔΘΝΗΚΖ ΥΟΛΖ ΓΖΜΟΗΑ ΓΗΟΗΚΖΖ Ε ΔΘΝΗΚΖ ΥΟΛΖ ΓΖΜΟΗΑ ΓΗΟΗΚΖΖ Κ ΔΚΠΑΗΓΔΤΣΗΚΖ ΔΗΡΑ ΣΜΖΜΑ : Σνπξηζηηθήο Οηθνλνκίαο θαη Αλάπηπμεο (ΣΟΑ) ΣΔΛΗΚΖ ΔΡΓΑΗΑ Θέκα: Σνπξηζκφο θαη Οηθνλνκηθή Κξίζε Δπηβιέπσλ : Νηνχβαο Λνπθάο πνπδάζηξηα : Σζαγθαξάθε

Διαβάστε περισσότερα

Στο εστιατόριο «ToDokimasesPrinToBgaleisStonKosmo?» έξω από τους δακτυλίους του Κρόνου, οι παραγγελίες γίνονται ηλεκτρονικά.

Στο εστιατόριο «ToDokimasesPrinToBgaleisStonKosmo?» έξω από τους δακτυλίους του Κρόνου, οι παραγγελίες γίνονται ηλεκτρονικά. Διαστημικό εστιατόριο του (Μ)ΑστροΈκτορα Στο εστιατόριο «ToDokimasesPrinToBgaleisStonKosmo?» έξω από τους δακτυλίους του Κρόνου, οι παραγγελίες γίνονται ηλεκτρονικά. Μόλις μια παρέα πελατών κάτσει σε ένα

Διαβάστε περισσότερα

RESULTS FROM THE U.S. DOE 2008 SAVE ENERGY NOW ASSESSMENT INITIATIVE:

RESULTS FROM THE U.S. DOE 2008 SAVE ENERGY NOW ASSESSMENT INITIATIVE: ORNL/TM-2010/146 RESULTS FROM THE U.S. DOE 2008 SAVE ENERGY NOW ASSESSMENT INITIATIVE: DOE s Partnership with U.S. Industry to Reduce Energy Consumption, Energy Costs, and Carbon Dioxide Emissions DETAILED

Διαβάστε περισσότερα

ΤΕΧΝΟΛΟΓΙΚΟ ΠΑΝΕΠΙΣΤΗΜΙΟ ΚΥΠΡΟΥ ΤΜΗΜΑ ΝΟΣΗΛΕΥΤΙΚΗΣ

ΤΕΧΝΟΛΟΓΙΚΟ ΠΑΝΕΠΙΣΤΗΜΙΟ ΚΥΠΡΟΥ ΤΜΗΜΑ ΝΟΣΗΛΕΥΤΙΚΗΣ ΤΕΧΝΟΛΟΓΙΚΟ ΠΑΝΕΠΙΣΤΗΜΙΟ ΚΥΠΡΟΥ ΤΜΗΜΑ ΝΟΣΗΛΕΥΤΙΚΗΣ ΠΤΥΧΙΑΚΗ ΕΡΓΑΣΙΑ ΨΥΧΟΛΟΓΙΚΕΣ ΕΠΙΠΤΩΣΕΙΣ ΣΕ ΓΥΝΑΙΚΕΣ ΜΕΤΑ ΑΠΟ ΜΑΣΤΕΚΤΟΜΗ ΓΕΩΡΓΙΑ ΤΡΙΣΟΚΚΑ Λευκωσία 2012 ΤΕΧΝΟΛΟΓΙΚΟ ΠΑΝΕΠΙΣΤΗΜΙΟ ΚΥΠΡΟΥ ΣΧΟΛΗ ΕΠΙΣΤΗΜΩΝ

Διαβάστε περισσότερα

Fractional Colorings and Zykov Products of graphs

Fractional Colorings and Zykov Products of graphs Fractional Colorings and Zykov Products of graphs Who? Nichole Schimanski When? July 27, 2011 Graphs A graph, G, consists of a vertex set, V (G), and an edge set, E(G). V (G) is any finite set E(G) is

Διαβάστε περισσότερα

Κατανοώντας και στηρίζοντας τα παιδιά που πενθούν στο σχολικό πλαίσιο

Κατανοώντας και στηρίζοντας τα παιδιά που πενθούν στο σχολικό πλαίσιο Κατανοώντας και στηρίζοντας τα παιδιά που πενθούν στο σχολικό πλαίσιο Δρ. Παναγιώτης Πεντάρης - University of Greenwich - Association for the Study of Death and Society (ASDS) Περιεχόµενα Εννοιολογικές

Διαβάστε περισσότερα

Jesse Maassen and Mark Lundstrom Purdue University November 25, 2013

Jesse Maassen and Mark Lundstrom Purdue University November 25, 2013 Notes on Average Scattering imes and Hall Factors Jesse Maassen and Mar Lundstrom Purdue University November 5, 13 I. Introduction 1 II. Solution of the BE 1 III. Exercises: Woring out average scattering

Διαβάστε περισσότερα

Potential Dividers. 46 minutes. 46 marks. Page 1 of 11

Potential Dividers. 46 minutes. 46 marks. Page 1 of 11 Potential Dividers 46 minutes 46 marks Page 1 of 11 Q1. In the circuit shown in the figure below, the battery, of negligible internal resistance, has an emf of 30 V. The pd across the lamp is 6.0 V and

Διαβάστε περισσότερα

Access control system. www.topkodas.lt info@topkodas.lt Price list: Sample 99 EUR 10pcs 71 EUR 100pcs 49 EUR 1000pcs 36 EUR

Access control system.    www.topkodas.lt info@topkodas.lt Price list:
Sample 99 EUR
10pcs 71 EUR 
100pcs 49 EUR
1000pcs 36 EUR Access control system www.topkodas.lt zivile@topkodas.lt UPC: 99989897969062 Access control via: Android, web app, ibutton, RFID, call, SMS; Up to 800 users; Events log to server; Alarm events. 3 Digital

Διαβάστε περισσότερα

Other Test Constructions: Likelihood Ratio & Bayes Tests

Other Test Constructions: Likelihood Ratio & Bayes Tests Other Test Constructions: Likelihood Ratio & Bayes Tests Side-Note: So far we have seen a few approaches for creating tests such as Neyman-Pearson Lemma ( most powerful tests of H 0 : θ = θ 0 vs H 1 :

Διαβάστε περισσότερα

SAINT CATHERINE S GREEK SCHOOL ΕΛΛΗΝΙΚΟ ΣΧΟΛΕΙΟ ΑΓΙΑΣ ΑΙΚΑΤΕΡΙΝΗΣ

SAINT CATHERINE S GREEK SCHOOL ΕΛΛΗΝΙΚΟ ΣΧΟΛΕΙΟ ΑΓΙΑΣ ΑΙΚΑΤΕΡΙΝΗΣ SAINT CATHERINE S GREEK SCHOOL ΕΛΛΗΝΙΚΟ ΣΧΟΛΕΙΟ ΑΓΙΑΣ ΑΙΚΑΤΕΡΙΝΗΣ WELCOME TO ST. CATHERINE S GREEK SCHOOL! WEEKDAY GREEK SCHOOL - REGISTRATION FORM SCHOOL YEAR 2016-2017 ΑΙΤΗΣΗ ΕΓΓΡΑΦΗΣ ΣΧΟΛΙΚΗ ΧΡΟΝΙΑ

Διαβάστε περισσότερα

2 Composition. Invertible Mappings

2 Composition. Invertible Mappings Arkansas Tech University MATH 4033: Elementary Modern Algebra Dr. Marcel B. Finan Composition. Invertible Mappings In this section we discuss two procedures for creating new mappings from old ones, namely,

Διαβάστε περισσότερα

ΚΥΠΡΙΑΚΗ ΕΤΑΙΡΕΙΑ ΠΛΗΡΟΦΟΡΙΚΗΣ CYPRUS COMPUTER SOCIETY ΠΑΓΚΥΠΡΙΟΣ ΜΑΘΗΤΙΚΟΣ ΔΙΑΓΩΝΙΣΜΟΣ ΠΛΗΡΟΦΟΡΙΚΗΣ 24/3/2007

ΚΥΠΡΙΑΚΗ ΕΤΑΙΡΕΙΑ ΠΛΗΡΟΦΟΡΙΚΗΣ CYPRUS COMPUTER SOCIETY ΠΑΓΚΥΠΡΙΟΣ ΜΑΘΗΤΙΚΟΣ ΔΙΑΓΩΝΙΣΜΟΣ ΠΛΗΡΟΦΟΡΙΚΗΣ 24/3/2007 Οδηγίες: Να απαντηθούν όλες οι ερωτήσεις. Όλοι οι αριθμοί που αναφέρονται σε όλα τα ερωτήματα μικρότεροι του 10000 εκτός αν ορίζεται διαφορετικά στη διατύπωση του προβλήματος. Αν κάπου κάνετε κάποιες υποθέσεις

Διαβάστε περισσότερα

F-TF Sum and Difference angle

F-TF Sum and Difference angle F-TF Sum and Difference angle formulas Alignments to Content Standards: F-TF.C.9 Task In this task, you will show how all of the sum and difference angle formulas can be derived from a single formula when

Διαβάστε περισσότερα

2nd Training Workshop of scientists- practitioners in the juvenile judicial system Volos, EVALUATION REPORT

2nd Training Workshop of scientists- practitioners in the juvenile judicial system Volos, EVALUATION REPORT 2nd Training Workshop of scientists- practitioners in the juvenile judicial system Volos, 26-6-2016 Can anyone hear me? The participation of juveniles in juvenile justice. EVALUATION REPORT 80 professionals

Διαβάστε περισσότερα

ANSWERSHEET (TOPIC = DIFFERENTIAL CALCULUS) COLLECTION #2. h 0 h h 0 h h 0 ( ) g k = g 0 + g 1 + g g 2009 =?

ANSWERSHEET (TOPIC = DIFFERENTIAL CALCULUS) COLLECTION #2. h 0 h h 0 h h 0 ( ) g k = g 0 + g 1 + g g 2009 =? Teko Classes IITJEE/AIEEE Maths by SUHAAG SIR, Bhopal, Ph (0755) 3 00 000 www.tekoclasses.com ANSWERSHEET (TOPIC DIFFERENTIAL CALCULUS) COLLECTION # Question Type A.Single Correct Type Q. (A) Sol least

Διαβάστε περισσότερα

PERI-HEPATIC URINOMA A CASE REPORT

PERI-HEPATIC URINOMA A CASE REPORT PERI-HEPATIC URINOMA A CASE REPORT Ir. Christodoulou, Z.Koukouritaki, C.Pogonidis, E.Xenodoxidou,M.Handolias, A.Amanatidou, C.Christianopoulos. 2ND SURGICAL DEPARTMENT, PAPANIKOLAOU HOSPITAL,THESSALONIKI

Διαβάστε περισσότερα

Πτυχιακή Εργασία. Παραδοσιακά Προϊόντα Διατροφική Αξία και η Πιστοποίηση τους

Πτυχιακή Εργασία. Παραδοσιακά Προϊόντα Διατροφική Αξία και η Πιστοποίηση τους ΑΛΕΞΑΝΔΡΕΙΟ ΤΕΧΝΟΛΟΓΙΚΟ ΕΚΠΑΙΔΕΥΤΙΚΟ ΙΔΡΥΜΑ ΣΧΟΛΗ ΤΕΧΝΟΛΟΓΙΑΣ ΤΡΟΦΙΜΩΝ ΚΑΙ ΔΙΑΤΡΟΦΗΣ ΤΜΗΜΑ ΔΙΑΤΡΟΦΗΣ ΚΑΙ ΔΙΑΙΤΟΛΟΓΙΑΣ Πτυχιακή Εργασία Παραδοσιακά Προϊόντα Διατροφική Αξία και η Πιστοποίηση τους Εκπόνηση:

Διαβάστε περισσότερα

ΚΥΠΡΙΑΚΗ ΕΤΑΙΡΕΙΑ ΠΛΗΡΟΦΟΡΙΚΗΣ CYPRUS COMPUTER SOCIETY ΠΑΓΚΥΠΡΙΟΣ ΜΑΘΗΤΙΚΟΣ ΔΙΑΓΩΝΙΣΜΟΣ ΠΛΗΡΟΦΟΡΙΚΗΣ 11/3/2006

ΚΥΠΡΙΑΚΗ ΕΤΑΙΡΕΙΑ ΠΛΗΡΟΦΟΡΙΚΗΣ CYPRUS COMPUTER SOCIETY ΠΑΓΚΥΠΡΙΟΣ ΜΑΘΗΤΙΚΟΣ ΔΙΑΓΩΝΙΣΜΟΣ ΠΛΗΡΟΦΟΡΙΚΗΣ 11/3/2006 ΠΑΓΚΥΠΡΙΟΣ ΜΑΘΗΤΙΚΟΣ ΔΙΑΓΩΝΙΣΜΟΣ ΠΛΗΡΟΦΟΡΙΚΗΣ 11/3/26 Οδηγίες: Να απαντηθούν όλες οι ερωτήσεις. Ολοι οι αριθμοί που αναφέρονται σε όλα τα ερωτήματα μικρότεροι το 1 εκτός αν ορίζεται διαφορετικά στη διατύπωση

Διαβάστε περισσότερα

Section 9.2 Polar Equations and Graphs

Section 9.2 Polar Equations and Graphs 180 Section 9. Polar Equations and Graphs In this section, we will be graphing polar equations on a polar grid. In the first few examples, we will write the polar equation in rectangular form to help identify

Διαβάστε περισσότερα

ΠΑΝΕΠΙΣΤΗΜΙΟ ΘΕΣΣΑΛΙΑΣ ΤΜΗΜΑ ΠΟΛΙΤΙΚΩΝ ΜΗΧΑΝΙΚΩΝ ΤΟΜΕΑΣ ΥΔΡΑΥΛΙΚΗΣ ΚΑΙ ΠΕΡΙΒΑΛΛΟΝΤΙΚΗΣ ΤΕΧΝΙΚΗΣ. Ειδική διάλεξη 2: Εισαγωγή στον κώδικα της εργασίας

ΠΑΝΕΠΙΣΤΗΜΙΟ ΘΕΣΣΑΛΙΑΣ ΤΜΗΜΑ ΠΟΛΙΤΙΚΩΝ ΜΗΧΑΝΙΚΩΝ ΤΟΜΕΑΣ ΥΔΡΑΥΛΙΚΗΣ ΚΑΙ ΠΕΡΙΒΑΛΛΟΝΤΙΚΗΣ ΤΕΧΝΙΚΗΣ. Ειδική διάλεξη 2: Εισαγωγή στον κώδικα της εργασίας ΠΑΝΕΠΙΣΤΗΜΙΟ ΘΕΣΣΑΛΙΑΣ ΤΜΗΜΑ ΠΟΛΙΤΙΚΩΝ ΜΗΧΑΝΙΚΩΝ ΤΟΜΕΑΣ ΥΔΡΑΥΛΙΚΗΣ ΚΑΙ ΠΕΡΙΒΑΛΛΟΝΤΙΚΗΣ ΤΕΧΝΙΚΗΣ Ειδική διάλεξη 2: Εισαγωγή στον κώδικα της εργασίας Χειμερινό εξάμηνο 2008 Αρχίζοντας... Αρχίζοντας... http://folk.ntnu.no/nilsol/ssiim/

Διαβάστε περισσότερα

Η ΑΥΛΗ ΤΟΥ ΣΧΟΛΕΙΟΥ ΠΑΙΧΝΙΔΙΑ ΣΤΗΝ ΑΥΛΗ ΤΟΥ ΣΧΟΛΕΙΟΥ

Η ΑΥΛΗ ΤΟΥ ΣΧΟΛΕΙΟΥ ΠΑΙΧΝΙΔΙΑ ΣΤΗΝ ΑΥΛΗ ΤΟΥ ΣΧΟΛΕΙΟΥ Η ΑΥΛΗ ΤΟΥ ΣΧΟΛΕΙΟΥ ΠΑΙΧΝΙΔΙΑ ΣΤΗΝ ΑΥΛΗ ΤΟΥ ΣΧΟΛΕΙΟΥ ΑΘΑΝΑΣΟΠΟΥΛΟΥ Κ. 6ο Δμοτικό Σχολείο Κηφησιας Πηνελόπη Δέλτα, Β Δ/νση Εκπ/σης Αθήνας ΠΕΡΙΛΗΨΗ Πρόθεσή μας είναι να παρουσιάσουμε ένα συνδυασμό των προγραμμάτων

Διαβάστε περισσότερα

ΦΥΛΛΟ ΕΡΓΑΣΙΑΣ Α. Διαβάστε τις ειδήσεις και εν συνεχεία σημειώστε. Οπτική γωνία είδησης 1:.

ΦΥΛΛΟ ΕΡΓΑΣΙΑΣ Α.  Διαβάστε τις ειδήσεις και εν συνεχεία σημειώστε. Οπτική γωνία είδησης 1:. ΦΥΛΛΟ ΕΡΓΑΣΙΑΣ Α 2 ειδήσεις από ελληνικές εφημερίδες: 1. Τα Νέα, 13-4-2010, Σε ανθρώπινο λάθος αποδίδουν τη συντριβή του αεροσκάφους, http://www.tanea.gr/default.asp?pid=2&artid=4569526&ct=2 2. Τα Νέα,

Διαβάστε περισσότερα

ΙΠΛΩΜΑΤΙΚΗ ΕΡΓΑΣΙΑ. ΘΕΜΑ: «ιερεύνηση της σχέσης µεταξύ φωνηµικής επίγνωσης και ορθογραφικής δεξιότητας σε παιδιά προσχολικής ηλικίας»

ΙΠΛΩΜΑΤΙΚΗ ΕΡΓΑΣΙΑ. ΘΕΜΑ: «ιερεύνηση της σχέσης µεταξύ φωνηµικής επίγνωσης και ορθογραφικής δεξιότητας σε παιδιά προσχολικής ηλικίας» ΠΑΝΕΠΙΣΤΗΜΙΟ ΑΙΓΑΙΟΥ ΣΧΟΛΗ ΑΝΘΡΩΠΙΣΤΙΚΩΝ ΕΠΙΣΤΗΜΩΝ ΤΜΗΜΑ ΕΠΙΣΤΗΜΩΝ ΤΗΣ ΠΡΟΣΧΟΛΙΚΗΣ ΑΓΩΓΗΣ ΚΑΙ ΤΟΥ ΕΚΠΑΙ ΕΥΤΙΚΟΥ ΣΧΕ ΙΑΣΜΟΥ «ΠΑΙ ΙΚΟ ΒΙΒΛΙΟ ΚΑΙ ΠΑΙ ΑΓΩΓΙΚΟ ΥΛΙΚΟ» ΙΠΛΩΜΑΤΙΚΗ ΕΡΓΑΣΙΑ που εκπονήθηκε για τη

Διαβάστε περισσότερα

UNIVERSITY OF CALIFORNIA. EECS 150 Fall ) You are implementing an 4:1 Multiplexer that has the following specifications:

UNIVERSITY OF CALIFORNIA. EECS 150 Fall ) You are implementing an 4:1 Multiplexer that has the following specifications: UNIVERSITY OF CALIFORNIA Department of Electrical Engineering and Computer Sciences EECS 150 Fall 2001 Prof. Subramanian Midterm II 1) You are implementing an 4:1 Multiplexer that has the following specifications:

Διαβάστε περισσότερα

Partial Trace and Partial Transpose

Partial Trace and Partial Transpose Partial Trace and Partial Transpose by José Luis Gómez-Muñoz http://homepage.cem.itesm.mx/lgomez/quantum/ jose.luis.gomez@itesm.mx This document is based on suggestions by Anirban Das Introduction This

Διαβάστε περισσότερα

ΔΙΠΛΩΜΑΤΙΚΗ ΕΡΓΑΣΙΑ ΕΠΑΝΑΣΧΕΔΙΑΣΜΟΣ ΓΡΑΜΜΗΣ ΣΥΝΑΡΜΟΛΟΓΗΣΗΣ ΜΕ ΧΡΗΣΗ ΕΡΓΑΛΕΙΩΝ ΛΙΤΗΣ ΠΑΡΑΓΩΓΗΣ REDESIGNING AN ASSEMBLY LINE WITH LEAN PRODUCTION TOOLS

ΔΙΠΛΩΜΑΤΙΚΗ ΕΡΓΑΣΙΑ ΕΠΑΝΑΣΧΕΔΙΑΣΜΟΣ ΓΡΑΜΜΗΣ ΣΥΝΑΡΜΟΛΟΓΗΣΗΣ ΜΕ ΧΡΗΣΗ ΕΡΓΑΛΕΙΩΝ ΛΙΤΗΣ ΠΑΡΑΓΩΓΗΣ REDESIGNING AN ASSEMBLY LINE WITH LEAN PRODUCTION TOOLS ΔΙΑΤΜΗΜΑΤΙΚΟ ΠΡΟΓΡΑΜΜΑ ΜΕΤΑΠΤΥΧΙΑΚΩΝ ΣΠΟΥΔΩΝ ΣΤΗ ΔΙΟΙΚΗΣΗ ΤΩΝ ΕΠΙΧΕΙΡΗΣΕΩΝ ΔΙΠΛΩΜΑΤΙΚΗ ΕΡΓΑΣΙΑ ΕΠΑΝΑΣΧΕΔΙΑΣΜΟΣ ΓΡΑΜΜΗΣ ΣΥΝΑΡΜΟΛΟΓΗΣΗΣ ΜΕ ΧΡΗΣΗ ΕΡΓΑΛΕΙΩΝ ΛΙΤΗΣ ΠΑΡΑΓΩΓΗΣ REDESIGNING AN ASSEMBLY LINE WITH

Διαβάστε περισσότερα

ΣΟΡΟΠΤΙΜΙΣΤΡΙΕΣ ΕΛΛΗΝΙΔΕΣ

ΣΟΡΟΠΤΙΜΙΣΤΡΙΕΣ ΕΛΛΗΝΙΔΕΣ ΕΛΛΗΝΙΔΕΣ ΣΟΡΟΠΤΙΜΙΣΤΡΙΕΣ ΕΚΔΟΣΗ ΤΗΣ ΣΟΡΟΠΤΙΜΙΣΤΙΚΗΣ ΕΝΩΣΗΣ ΕΛΛΑΔΟΣ - ΤΕΥΧΟΣ Νο 110 - Δ ΤΡΙΜΗΝΟ 2014 Το πρώτο βραβείο κέρδισε η Ελλάδα για την φωτογραφία Blue + Yellow = Green στον διαγωνισμό 2014 του

Διαβάστε περισσότερα

Μηχανική Μάθηση Hypothesis Testing

Μηχανική Μάθηση Hypothesis Testing ΕΛΛΗΝΙΚΗ ΔΗΜΟΚΡΑΤΙΑ ΠΑΝΕΠΙΣΤΗΜΙΟ ΚΡΗΤΗΣ Μηχανική Μάθηση Hypothesis Testing Γιώργος Μπορμπουδάκης Τμήμα Επιστήμης Υπολογιστών Procedure 1. Form the null (H 0 ) and alternative (H 1 ) hypothesis 2. Consider

Διαβάστε περισσότερα

Variational Wavefunction for the Helium Atom

Variational Wavefunction for the Helium Atom Technische Universität Graz Institut für Festkörperphysik Student project Variational Wavefunction for the Helium Atom Molecular and Solid State Physics 53. submitted on: 3. November 9 by: Markus Krammer

Διαβάστε περισσότερα

Advanced Subsidiary Unit 1: Understanding and Written Response

Advanced Subsidiary Unit 1: Understanding and Written Response Write your name here Surname Other names Edexcel GE entre Number andidate Number Greek dvanced Subsidiary Unit 1: Understanding and Written Response Thursday 16 May 2013 Morning Time: 2 hours 45 minutes

Διαβάστε περισσότερα

Μετανάστευση Σπουδές. Σπουδές - Πανεπιστήμιο. Για να δηλώσετε ότι θέλετε να εγγραφείτε

Μετανάστευση Σπουδές. Σπουδές - Πανεπιστήμιο. Για να δηλώσετε ότι θέλετε να εγγραφείτε - Πανεπιστήμιο Θα ήθελα να εγγραφώ σε πανεπιστήμιο. Για να δηλώσετε ότι θέλετε να εγγραφείτε I would like to enroll at a university. Θα ήθελα να γραφτώ για. I want to apply for course. Για να υποδείξετε

Διαβάστε περισσότερα

Οδηγίες Αγοράς Ηλεκτρονικού Βιβλίου Instructions for Buying an ebook

Οδηγίες Αγοράς Ηλεκτρονικού Βιβλίου Instructions for Buying an ebook Οδηγίες Αγοράς Ηλεκτρονικού Βιβλίου Instructions for Buying an ebook Βήμα 1: Step 1: Βρείτε το βιβλίο που θα θέλατε να αγοράσετε και πατήστε Add to Cart, για να το προσθέσετε στο καλάθι σας. Αυτόματα θα

Διαβάστε περισσότερα

The st Asian Legislative Experts Symposium ALES ALES KOICA ALES. The 1st Asian Forum of Legislative Information Affairs ALES

The st Asian Legislative Experts Symposium ALES ALES KOICA ALES. The 1st Asian Forum of Legislative Information Affairs ALES 1 The st Asian Legislative Experts Symposium ALES ALES KOICA ALES ALES IT The 1st Asian Forum of Legislative Information Affairs Ministry of Government Legislation of Korea MOLEG http://www. moleg.go.kr/english/

Διαβάστε περισσότερα

Modbus basic setup notes for IO-Link AL1xxx Master Block

Modbus basic setup notes for IO-Link AL1xxx Master Block n Modbus has four tables/registers where data is stored along with their associated addresses. We will be using the holding registers from address 40001 to 49999 that are R/W 16 bit/word. Two tables that

Διαβάστε περισσότερα

Approximation of distance between locations on earth given by latitude and longitude

Approximation of distance between locations on earth given by latitude and longitude Approximation of distance between locations on earth given by latitude and longitude Jan Behrens 2012-12-31 In this paper we shall provide a method to approximate distances between two points on earth

Διαβάστε περισσότερα

HOT AIR GENERATORS. PelleTech Aero Modular Biomass hot air generators. 60 kw 110 kw.

HOT AIR GENERATORS. PelleTech Aero Modular Biomass hot air generators. 60 kw 110 kw. HOT AIR GENERATORS 60 kw 110 kw PelleTech Aero Modular Biomass hot air generators www.caminodesign.gr 2 MODULAR BIOMASS HOT AIR GENERATORS Integrated hot air production systems RAPID AIR WARMING AUTOMATIC

Διαβάστε περισσότερα

CHAPTER 101 FOURIER SERIES FOR PERIODIC FUNCTIONS OF PERIOD

CHAPTER 101 FOURIER SERIES FOR PERIODIC FUNCTIONS OF PERIOD CHAPTER FOURIER SERIES FOR PERIODIC FUNCTIONS OF PERIOD EXERCISE 36 Page 66. Determine the Fourier series for the periodic function: f(x), when x +, when x which is periodic outside this rge of period.

Διαβάστε περισσότερα

Paper Reference. Paper Reference(s) 1776/04 Edexcel GCSE Modern Greek Paper 4 Writing. Thursday 21 May 2009 Afternoon Time: 1 hour 15 minutes

Paper Reference. Paper Reference(s) 1776/04 Edexcel GCSE Modern Greek Paper 4 Writing. Thursday 21 May 2009 Afternoon Time: 1 hour 15 minutes Centre No. Candidate No. Paper Reference(s) 1776/04 Edexcel GCSE Modern Greek Paper 4 Writing Thursday 21 May 2009 Afternoon Time: 1 hour 15 minutes Materials required for examination Nil Paper Reference

Διαβάστε περισσότερα

-ΔΕΛΤΙΟ ΤΥΠΟΥ- Εκδήλωση Ενημέρωσης για τη λίμνη Ορόκλινης και το έργο LIFE Oroklini

-ΔΕΛΤΙΟ ΤΥΠΟΥ- Εκδήλωση Ενημέρωσης για τη λίμνη Ορόκλινης και το έργο LIFE Oroklini -ΔΕΛΤΙΟ ΤΥΠΟΥ- Εκδήλωση Ενημέρωσης για τη λίμνη Ορόκλινης και το έργο LIFE Oroklini 18 Ιουλίου 2014, Βορόκληνη Το Κοινοτικό Συμβούλιο Βορόκληνης σε συνεργασία με τους υπόλοιπους εταίρους του έργου, την

Διαβάστε περισσότερα

«Έντυπο και ψηφιακό βιβλίο στη σύγχρονη εποχή: τάσεις στην παγκόσμια βιομηχανία».

«Έντυπο και ψηφιακό βιβλίο στη σύγχρονη εποχή: τάσεις στην παγκόσμια βιομηχανία». ΕΛΛΗΝΙΚΗ ΔΗΜΟΚΡΑΤΙΑ ΤΕΧΝΟΛΟΓΙΚΟ ΕΚΠΑΙΔΕΥΤΙΚΟ ΙΔΡΥΜΑ ΙΟΝΙΩΝ ΝΗΣΩΝ ΤΜΗΜΑ ΔΗΜΟΣΙΩΝ ΣΧΕΣΕΩΝ ΚΑΙ ΕΠΙΚΟΙΝΩΝΙΑΣ Ταχ. Δ/νση : ΑΤΕΙ Ιονίων Νήσων- Λεωφόρος Αντώνη Τρίτση Αργοστόλι- Κεφαλληνίας, Ελλάδα 28100, +30

Διαβάστε περισσότερα

Αζεκίλα Α. Μπνπράγηεξ (Α.Μ. 261)

Αζεκίλα Α. Μπνπράγηεξ (Α.Μ. 261) ΠΑΝΔΠΗΣΖΜΗΟ ΠΑΣΡΧΝ ΥΟΛΖ ΑΝΘΡΧΠΗΣΗΚΧΝ ΚΑΗ ΚΟΗΝΧΝΗΚΧΝ ΠΟΤΓΧΝ ΠΑΗΓΑΓΧΓΗΚΟ ΣΜΖΜΑ ΓΖΜΟΣΗΚΖ ΔΚΠΑΗΓΔΤΖ ΜΔΣΑΠΣΤΥΗΑΚΟ ΠΡΟΓΡΑΜΜΑ ΠΟΤΓΧΝ ΘΔΜΑ ΓΗΠΛΧΜΑΣΗΚΖ ΔΡΓΑΗΑ: Ζ ΑΝΣΗΛΖΦΖ ΣΧΝ ΔΚΠΑΗΓΔΤΣΗΚΧΝ ΓΗΑ ΣΖ ΖΜΑΗΑ ΣΖ ΑΤΣΟΔΚΣΗΜΖΖ

Διαβάστε περισσότερα

b. Use the parametrization from (a) to compute the area of S a as S a ds. Be sure to substitute for ds!

b. Use the parametrization from (a) to compute the area of S a as S a ds. Be sure to substitute for ds! MTH U341 urface Integrals, tokes theorem, the divergence theorem To be turned in Wed., Dec. 1. 1. Let be the sphere of radius a, x 2 + y 2 + z 2 a 2. a. Use spherical coordinates (with ρ a) to parametrize.

Διαβάστε περισσότερα

PHOS π 0 analysis, for production, R AA, and Flow analysis, LHC11h

PHOS π 0 analysis, for production, R AA, and Flow analysis, LHC11h PHOS π, ask PHOS π analysis, for production, R AA, and Flow analysis, Henrik Qvigstad henrik.qvigstad@fys.uio.no University of Oslo --5 PHOS π, ask ask he task we use, AliaskPiFlow was written prior, for

Διαβάστε περισσότερα