INFORMATIKA ANGOL NYELVEN INFORMATION TECHNOLOGY
|
|
- Norbert János Péter
- 8 évvel ezelőtt
- Látták:
Átírás
1 Informatika angol nyelven emelt szint 0611 ÉRETTSÉGI VIZSGA május 17. INFORMATIKA ANGOL NYELVEN INFORMATION TECHNOLOGY EMELT SZINTŰ GYAKORLATI ÉRETTSÉGI VIZSGA ADVANCED LEVEL PRACTICAL FINAL EXAMINATION JAVÍTÁSI-ÉRTÉKELÉSI ÚTMUTATÓ KEY AND GUIDE FOR EVALUATION OKTATÁSI MINISZTÉRIUM MINISTRY OF EDUCATION
2 Introduction The exercises are marked in accordance with the guide for evaluation given in the key and guide for evaluation. In the key the marks given for the major logical units are in the bordered parts. The parts without bordering contain the breakdown of the marks and reference to situations where the given mark can be awarded or can not be awarded. To ensure unified evaluation, please do not divert from the marking in the guide for evaluation. The marks can not be broken down further than indicated in the guide for evaluation. If several solutions are given for the same problem, please evaluate the solution with the most given marks. In the case of several good solutions no extra marks can be awarded. The evaluation sheet, which only contains the marks for the major evaluation units, can be found at the end of the guide for evaluation. One evaluation sheet should be filled for each examination paper and it should be attached to the examination paper (to the candidate s exercise sheet). The candidate receives this sheet at the seeing of the examination paper. The total marks awarded for the individual exercises, the marks awarded for the exam should also be indicated on the last page of the examination paper, in the tables provided. For further processing please fill in the electronic guide for evaluation attached to the solution as well. gyakorlati vizsga / május 17.
3 1. The history of photography Imported or inserted the text from tortenet.txt into the document and saved it as fototort in the own format of the word processor Page setup The right margin is set to 2 cm, the left margin is set to 1 cm Settings concerning paragraphs The left indent is 4 cm for the complete text Title settings Typed in the title, the font type is Arial (or Sans Serif) and the font size is 16 points The font style is all caps and expanded by 1.5 points Spacing of 12 points before and after the title Set the font style of the names of the people to bold (only for the first appearance) The candidate receives it is set for fewer than 4 names. Set the font style to italics for words Kodak and Leica Formatting the text Applied justified alignment throughout the text If alignment is set correctly in a textbox or at least one paragraph of the text of the history, the mark can be awarded. Automatic hyphenation Inserting the pictures into the text The pictures are inserted into the text (camera.jpg, dagerrotipia.jpg, niepce.jpg, talbot.jpg, leica.jpg, eastman.jpg) If at least two pictures were inserted, the mark can be awarded. The photos of people are aligned with the right margin, the other pictures are aligned with the left margin The pictures are aligned with the text (they are placed in accordance with the example) Inserting and formatting the textboxes There are textboxes between the left margin and the text If there are at least two textboxes, the mark can be awarded. The given texts (fogalom.txt) are inserted into the textboxes, the font size of the texts is 9 points If the student inserted the text into at least one textbox and set the font size, the mark can be awarded. The Lithography textbox is 6.5 cm high and 3.5 cm wide, the textbox does not have borders The size and the border of the other textboxes are as given Inserting picture Kodak Inserted picture kodak.jpg into the given place Modified the dimensions of picture kodak.jpg so that it fits into the given area The table appears on new page gyakorlati vizsga / május 17.
4 Table The table has 10 rows and 4 columns and the borders are in accordance with the example The height of the table is 20 cm with equal row heights, the column widths are 9 cm, 1 cm, 1 cm, 1 cm, respectively Inserted or copied the text into the first column from file kronologia.txt The font size is 8 points, the text is aligned centered vertically in the cells The second column contains the years, the years are aligned centered and the font style is bold An arrow is drawn into the third column The length of the arrow is 19 cm and its colour is orange (a deviation of 0.5 cm can be accepted if the arrow fits into the cell) Merged the cells of the fourth column, the font type of the title appearing in it is Arial (or Sans Serif) and the font size is 14 points The direction of the title and the years is vertical 9 marks 30 marks 2. Remainder of addition Saved the table as maradek Filled column A and the first row with the given values Filling range B2:D106 in the table using a function Calculated the remainder for at least one cell in cells B2:D106 B2: =MOD($A2;B$1) Calculated the remainder everywhere in cells B2:D106 Determining the values in H2:J3 Determined the remainder of the division when the number in cell G2 is divided by 3 using a function or functions and table A1:D106 Into cell H2: =VLOOKUP($G2;$A$2:$D$106; 1+MATCH(H$1;$B$1:$D$1);0) Determined the remainders in the other cells as well If the result is correct if the applied function is copied within the range If the candidate calculated the remainders in range H2:J3 without using the table, only can be awarded out of the 4. Calculating the values in H4:J4 Determined the sum of cells H2:H3 using a summing function or formula gyakorlati vizsga / május 17.
5 Determining the value of G5 The candidate could handle the combination (that is, the 3 remainders) as a single unit Into cell K5: =100*H5+10*I5+J5 Into cell E2: =100*B2+10*C2+D2 The candidate could determine the position of the combination handled as a unit in the table using a function =INDEX(A2:A106;MATCH(K5;E2:E106;0)) If the concept applied in the solution of the exercise is correct, full mark should be awarded for other calculation methods as well. Formatting the table Formatted table A1:D106 in accordance with the example The mark can be awarded if the borders or the background colour was set correctly. Formatting table G1:J5 The mark can be awarded if the font colour or the background colour was set correctly. 15 mark 3. Final examination For these exercises, the queries should be evaluated regardless of the results of the queries. Creating the database (erettsegi) Created database erettsegi Created tables vizsgazo, vizsga, vizsgatargy from the txt files with the same name (the mark can only be awarded if each table exists) Setting the fields and the keys The keys in the tables are correct, a field with identifying function is inserted into table VIZSGA The given fields are of the correct type Should be marked together for the remaining exercises In each saved query exactly the required fields appear Saved each created query as the name required (the mark can be awarded if at least 4 queries were created) Query 3evf9 Filtering for 9 th grade Ordered by class, within class by name SELECT vizsgazo.nev, vizsgazo.osztaly FROM vizsgazo WHERE vizsgazo.osztaly LIKE "9*" ORDER BY vizsgazo.osztaly, vizsgazo.nev; Query 4irmax Selecting the subjects with the highest score (ordering, displaying the first) gyakorlati vizsga / május 17.
6 SELECT TOP 1 vizsgatargy.nev FROM vizsgatargy ORDER BY vizsgatargy.irmax DESC; Query 5bukas Use of several tables Filtering for written score SELECT vizsgazo.nev, vizsgatargy.nev FROM vizsgazo, vizsga, vizsgatargy WHERE vizsga.irasbeli<vizsgatargy.irmax/10 And vizsgazo.azon=vizsga.vizsgazoaz And vizsga.vizsgatargyaz=vizsgatargy.azon; Query 6atlag Correct application of functions COUNT and AVG Grouping by subject names Filtering for the class SELECT vizsgatargy.nev, COUNT(vizsga.azon) AS letszam, AVG(vizsga.szobeli) AS szobeli, AVG(vizsga.irasbeli) AS irasbeli FROM vizsgazo, vizsga, vizsgatargy WHERE vizsgazo.osztaly="12/a" And vizsgazo.azon=vizsga.vizsgazoaz And vizsga.vizsgatargyaz=vizsgatargy.azon GROUP BY vizsgatargy.nev; Query 7teljesitmeny Creating field teljesitmeny (of real type) Creating an update query (UPDATE) Use of several tables Using a calculated field UPDATE vizsga, vizsgatargy SET teljesitmeny = (vizsga.szobeli+vizsga.irasbeli)/(vizsgatargy. szomax+vizsgatargy.irmax) WHERE vizsga.vizsgatargyaz=vizsgatargy.azon; Query 8jobb Use of several tables Filtering for subject History and for the grades Building a subquery or auxiliary table into the solution Correct use of function AVG in the subquery or auxiliary query Use of several tables and filtering for the subject in the subquery or auxiliary query SELECT vizsgazo.nev FROM vizsgazo, vizsga, vizsgatargy WHERE vizsgazo.azon=vizsga.vizsgazoaz AND vizsga.vizsgatargyaz=vizsgatargy.azon AND vizsga.irasbeli>( SELECT Avg(vizsga.irasbeli) FROM vizsga, vizsgatargy WHERE vizsga.vizsgatargyaz=vizsgatargy.azon AND vizsgatargy.nev="history" ) AND vizsgatargy.nev="history" AND (vizsgazo.osztaly LIKE "11*" OR vizsgazo.osztaly LIKE "12*"); 5 marks gyakorlati vizsga / május 17.
7 Query 9dombi Creating a make-table query Use of several tables Filtering for the required classes and the subject Grouping by class and correct use of the MAX function SELECT vizsgazo.osztaly, max(vizsga.irasbeli) AS legjobb INTO dombi FROM vizsgazo, vizsga, vizsgatargy WHERE (vizsgazo.osztaly Not Like "11*" Or vizsgazo.osztaly="11/c") And vizsgatargy.nev="mathematics" And vizsgazo.azon=vizsga.vizsgazoaz And vizsga.vizsgatargyaz=vizsgatargy.azon GROUP BY vizsgazo.osztaly; Query 10jeles Use of several tables Filtering for the achieved score Grouping by class and correct use of the COUNT function SELECT vizsgazo.osztaly, count(vizsga.azon) FROM vizsgazo, vizsga WHERE vizsga.szobeli+vizsga.irasbeli>=90 AND vizsgazo.azon=vizsga.vizsgazoaz GROUP BY vizsgazo.osztaly; 4. Protein Source code with name feherje exists Loading the file One data is read from file aminosav.txt successfully Data of one amino acid is read correctly Each data is read Determining relative molecular mass Uses the given atomic masses correctly to determine molecular mass Gives correct result for at least 1 amino acid Gives correct result for each amino acid Writing the results into file (eredmeny.txt) Creates file eredmeny.txt using the program At least 1 data appears in the file The exercise number appears before the written data in every case The mark can not be awarded if nothing is written out but can be awarded if the exercise number is written in vain the exercise does not require the writing out of data. 30 marks gyakorlati vizsga / május 17.
8 Ordering Determined one extreme value correctly The amino acids with the smallest or greatest molecular mass appear at the right place (name and mass are correct) The masses are arranged into order correctly The names are arranged together with masses The corresponding data are kept together Worked with collected data or arranged the other data of the amino acids as well. The result is written on the screen, in a line the identifier and the molecular mass are separated by a space The result is written into file eredmeny.txt, in a line the identifier and the molecular mass are separated by a space Empirical formula of BSA Reads data from file bsa.txt Reads each data (even without storing into an array) Finds at least one letter among the amino acids Calculates correctly for at least one atom (within an amino acid) Calculates correctly for each atom Takes each amino acid into consideration Takes the leaving of the water molecule into consideration during or after calculation Calculates correctly with the leaving of the water molecule (n-1 O and 2n-2 H less) Gives the values in the empirical formula correctly The solution can only differ in the order of the list. The numeric values assigned to the individual atoms are correct. The result appears on the screen in one line, separated by spaces The result appears in file eredmeny.txt in one line, separated by spaces Splitting with Chimotripsine Gives the condition for splitting correctly (based on key letter or abbreviation, checking for three values) Determines one splitting position correctly (first or last member) Determines the length of one segment correctly Chooses the longest segment Gives all three data correctly (length, start, end) Writes the result on the screen The data are named correctly Number of Cisteines in the first segment Counts Cisteines Gives correct condition for the end of counting Writes the result on the screen Answer is written as a complete sentence 2 mark 9 marks 1s 9 marks 6 marks 45 marks gyakorlati vizsga / május 17.
9 Informatika angol nyelven emelt szint értékelőlap Azonosító jel: 1. The history of photography Imported or inserted the text from tortenet.txt into the document and saved it as fototort in the own format of the word processor Page setup Settings concerning paragraphs Title settings Set the font style to bold for the names of the people (only for the first appearance) The candidate receives if he/she set it for fewer then 4 names. Set the font style to italics for words Kodak and Leica Formatting the text Inserting the pictures into the text Inserting and formatting the textboxes Inserting picture Kodak The table appears on new page Table 9 marks 30 marks gyakorlati vizsga / május 17.
10 Informatika angol nyelven emelt szint értékelőlap Azonosító jel: 2. Remainder of addition Saved the table as maradek Filled column A and the first row with the given values Filling range B2:D106 in the table using a function Determining the values in H2:J3 Calculating the values in H4:J4 Determining the value of G5 Formatting the table 15 marks gyakorlati vizsga / május 17.
11 Informatika angol nyelven emelt szint értékelőlap Azonosító jel: 3. Final examination Creating the database (erettsegi) Setting the fields and the keys Should be marked together for the remaining exercises Query 3evf9 Query 4irmax Query 5bukas Query 6atlag Query 7teljesitmeny Query 8jobb Query 9dombi Query 10jeles 5 marks 30 marks gyakorlati vizsga / május 17.
12 Informatika angol nyelven emelt szint értékelőlap Azonosító jel: 4. Protein Source code with name feherje exists Loading the file Determining relative molecular mass Writing the results into file (eredmeny.txt) Arranging into increasing order Empirical formula of BSA Splitting with Chimotripsine Number of Cisteines in the first segment 9 marks 1s 9 marks 6 marks 45 marks gyakorlati vizsga / május 17.
INFORMATIKA JAVÍTÁSI-ÉRTÉKELÉSI ÚTMUTATÓ
Informatika emelt szint 0611 ÉRETTSÉGI VIZSGA 2006. május 17. INFORMATIKA EMELT SZINTŰ GYAKORLATI ÉRETTSÉGI VIZSGA JAVÍTÁSI-ÉRTÉKELÉSI ÚTMUTATÓ OKTATÁSI MINISZTÉRIUM Bevezetés A feladatok értékelése a
FÖLDRAJZ ANGOL NYELVEN
Földrajz angol nyelven középszint 0821 ÉRETTSÉGI VIZSGA 2009. május 14. FÖLDRAJZ ANGOL NYELVEN KÖZÉPSZINTŰ ÍRÁSBELI ÉRETTSÉGI VIZSGA JAVÍTÁSI-ÉRTÉKELÉSI ÚTMUTATÓ OKTATÁSI ÉS KULTURÁLIS MINISZTÉRIUM Paper
Construction of a cube given with its centre and a sideline
Transformation of a plane of projection Construction of a cube given with its centre and a sideline Exercise. Given the center O and a sideline e of a cube, where e is a vertical line. Construct the projections
FÖLDRAJZ ANGOL NYELVEN GEOGRAPHY
Földrajz angol nyelven középszint 0623 ÉRETTSÉGI VIZSGA 2007. május 15. FÖLDRAJZ ANGOL NYELVEN GEOGRAPHY KÖZÉPSZINTŰ ÍRÁSBELI ÉRETTSÉGI VIZSGA INTERMEDIATE LEVEL WRITTEN EXAM JAVÍTÁSI-ÉRTÉKELÉSI ÚTMUTATÓ
On The Number Of Slim Semimodular Lattices
On The Number Of Slim Semimodular Lattices Gábor Czédli, Tamás Dékány, László Ozsvárt, Nóra Szakács, Balázs Udvari Bolyai Institute, University of Szeged Conference on Universal Algebra and Lattice Theory
Using the CW-Net in a user defined IP network
Using the CW-Net in a user defined IP network Data transmission and device control through IP platform CW-Net Basically, CableWorld's CW-Net operates in the 10.123.13.xxx IP address range. User Defined
STUDENT LOGBOOK. 1 week general practice course for the 6 th year medical students SEMMELWEIS EGYETEM. Name of the student:
STUDENT LOGBOOK 1 week general practice course for the 6 th year medical students Name of the student: Dates of the practice course: Name of the tutor: Address of the family practice: Tel: Please read
USER MANUAL Guest user
USER MANUAL Guest user 1 Welcome in Kutatótér (Researchroom) Top menu 1. Click on it and the left side menu will pop up 2. With the slider you can make left side menu visible 3. Font side: enlarging font
FÖLDRAJZ ANGOL NYELVEN GEOGRAPHY
Földrajz angol nyelven középszint 0513 ÉRETTSÉGI VIZSGA 2005. május 18. FÖLDRAJZ ANGOL NYELVEN GEOGRAPHY KÖZÉPSZINTŰ ÍRÁSBELI VIZSGA STANDARD LEVEL WRITTEN EXAMINATION Duration of written examination:
JAVÍTÁSI-ÉRTÉKELÉSI INFORMATIKA ÚTMUTATÓ. ÉRETTSÉGI VIZSGA 2006. május 17. ÉRETTSÉGI VIZSGA EMELT SZINT% GYAKORLATI OKTATÁSI MINISZTÉRIUM. 4.
Informatika emelt szint értékellap Azonosító jel: 4. Fehérje Létezik feherje néven forráskód Fájlbeolvasás 3 pont Relatív molekulatömeg meghatározása 3 pont Adatok kiírása (eredmeny.txt) 3 pont Rendezés
INDEXSTRUKTÚRÁK III.
2MU05_Bitmap.pdf camü_ea INDEXSTRUKTÚRÁK III. Molina-Ullman-Widom: Adatbázisrendszerek megvalósítása Panem, 2001könyv 5.4. Bittérkép indexek fejezete alapján Oracle: Indexek a gyakorlatban Oracle Database
ELEKTRONIKAI ALAPISMERETEK ANGOL NYELVEN
ÉRETTSÉGI VIZSGA 200. május 4. ELEKTRONIKAI ALAPISMERETEK ANGOL NYELVEN KÖZÉPSZINTŰ ÍRÁSBELI VIZSGA 200. május 4. 8:00 Az írásbeli vizsga időtartama: 80 perc Pótlapok száma Tisztázati Piszkozati OKTATÁSI
ACTA AGRARIA DEBRECENIENSIS A kézirat elkészítésére vonatkozó elıírások
ACTA AGRARIA DEBRECENIENSIS A kézirat elkészítésére vonatkozó elıírások ACTA AGRARIA DEBRECENIENSIS Manuscript Editing Instructions (short version, see also the examples given in the full Hungarian version)
Miskolci Egyetem Gazdaságtudományi Kar Üzleti Információgazdálkodási és Módszertani Intézet. Hypothesis Testing. Petra Petrovics.
Hypothesis Testing Petra Petrovics PhD Student Inference from the Sample to the Population Estimation Hypothesis Testing Estimation: how can we determine the value of an unknown parameter of a population
Adattípusok. Max. 2GByte
Adattípusok Típus Méret Megjegyzés Konstans BIT 1 bit TRUE/FALSE SMALLINT 2 byte -123 INTEGER 4 byte -123 COUNTER 4 byte Automatikus 123 REAL 4 byte -12.34E-2 FLOAT 8 byte -12.34E-2 CURRENCY / MONEY 8
Adattípusok. Max. 2GByte
Adattípusok Típus Méret Megjegyzés Konstans BIT 1 bit TRUE/FALSE TINIINT 1 byte 12 SMALLINT 2 byte -123 INTEGER 4 byte -123 COUNTER 4 byte Automatikus 123 REAL 4 byte -12.34E-2 FLOAT 8 byte -12.34E-2 CURRENCY
FÖLDRAJZ ANGOL NYELVEN GEOGRAPHY
Földrajz angol nyelven középszint 0612 É RETTSÉGI VIZSGA 2006. október 25. FÖLDRAJZ ANGOL NYELVEN GEOGRAPHY KÖZÉPSZINTŰ ÍRÁSBELI ÉRETTSÉGI VIZSGA INTERMEDIATE LEVEL WRITTEN EXAM JAVÍTÁSI-ÉRTÉKELÉSI ÚTMUTATÓ
MATEMATIKA ANGOL NYELVEN
ÉRETTSÉGI VIZSGA 2016. október 18. MATEMATIKA ANGOL NYELVEN KÖZÉPSZINTŰ ÍRÁSBELI VIZSGA 2016. október 18. 8:00 I. Időtartam: 45 perc Pótlapok száma Tisztázati Piszkozati EMBERI ERŐFORRÁSOK MINISZTÉRIUMA
Miskolci Egyetem Gazdaságtudományi Kar Üzleti Információgazdálkodási és Módszertani Intézet Nonparametric Tests
Nonparametric Tests Petra Petrovics Hypothesis Testing Parametric Tests Mean of a population Population proportion Population Standard Deviation Nonparametric Tests Test for Independence Analysis of Variance
Mapping Sequencing Reads to a Reference Genome
Mapping Sequencing Reads to a Reference Genome High Throughput Sequencing RN Example applications: Sequencing a genome (DN) Sequencing a transcriptome and gene expression studies (RN) ChIP (chromatin immunoprecipitation)
T Á J É K O Z T A T Ó. A 1108INT számú nyomtatvány a http://www.nav.gov.hu webcímen a Letöltések Nyomtatványkitöltő programok fülön érhető el.
T Á J É K O Z T A T Ó A 1108INT számú nyomtatvány a http://www.nav.gov.hu webcímen a Letöltések Nyomtatványkitöltő programok fülön érhető el. A Nyomtatványkitöltő programok fület választva a megjelenő
ENROLLMENT FORM / BEIRATKOZÁSI ADATLAP
ENROLLMENT FORM / BEIRATKOZÁSI ADATLAP CHILD S DATA / GYERMEK ADATAI PLEASE FILL IN THIS INFORMATION WITH DATA BASED ON OFFICIAL DOCUMENTS / KÉRJÜK, TÖLTSE KI A HIVATALOS DOKUMENTUMOKBAN SZEREPLŐ ADATOK
ELEKTRONIKAI ALAPISMERETEK ANGOL NYELVEN
ÉRETTSÉGI VIZSGA 2008. május 26. ELEKTRONIKAI ALAPISMERETEK ANGOL NYELVEN KÖZÉPSZINTŰ ÍRÁSBELI VIZSGA 2008. május 26. 8:00 Az írásbeli vizsga időtartama: 180 perc Pótlapok száma Tisztázati Piszkozati OKTATÁSI
Széchenyi István Egyetem www.sze.hu/~herno
Oldal: 1/6 A feladat során megismerkedünk a C# és a LabVIEW összekapcsolásának egy lehetőségével, pontosabban nagyon egyszerű C#- ban írt kódból fordítunk DLL-t, amit meghívunk LabVIEW-ból. Az eljárás
ELEKTRONIKAI ALAPISMERETEK ANGOL NYELVEN
ÉRETTSÉGI VIZSGA 2013. május 23. ELEKTRONIKAI ALAPISMERETEK ANGOL NYELVEN KÖZÉPSZINTŰ ÍRÁSBELI VIZSGA 2013. május 23. 8:00 Az írásbeli vizsga időtartama: 180 perc Pótlapok száma Tisztázati Piszkozati EMBERI
EN United in diversity EN A8-0206/419. Amendment
22.3.2019 A8-0206/419 419 Article 2 paragraph 4 point a point i (i) the identity of the road transport operator; (i) the identity of the road transport operator by means of its intra-community tax identification
MATEMATIKA ANGOL NYELVEN MATHEMATICS
ÉRETTSÉGI VIZSGA 2005. május 10. MATEMATIKA ANGOL NYELVEN MATHEMATICS KÖZÉPSZINTŰ ÍRÁSBELI VIZSGA STANDARD LEVEL WRITTEN EXAMINATION I. Időtartam: 45 perc Time allowed: 45 minutes Number of extra sheets
MATEMATIKA ANGOL NYELVEN MATHEMATICS
ÉRETTSÉGI VIZSGA 2005. május 10. MATEMATIKA ANGOL NYELVEN MATHEMATICS EMELT SZINTŰ ÍRÁSBELI VIZSGA HIGHER LEVEL WRITTEN EXAMINATION Az írásbeli vizsga időtartama: 240 perc Time allowed for the examination:
Where are the parrots? (Hol vannak a papagájok?)
Where are the parrots? (Hol vannak a papagájok?) Hi Agents! This is your final test so get ready. Work your way through the exercises and when you have finished, the letters will spell out the name of
Proxer 7 Manager szoftver felhasználói leírás
Proxer 7 Manager szoftver felhasználói leírás A program az induláskor elkezdi keresni az eszközöket. Ha van olyan eszköz, amely virtuális billentyűzetként van beállítva, akkor azokat is kijelzi. Azokkal
Angol Középfokú Nyelvvizsgázók Bibliája: Nyelvtani összefoglalás, 30 kidolgozott szóbeli tétel, esszé és minta levelek + rendhagyó igék jelentéssel
Angol Középfokú Nyelvvizsgázók Bibliája: Nyelvtani összefoglalás, 30 kidolgozott szóbeli tétel, esszé és minta levelek + rendhagyó igék jelentéssel Timea Farkas Click here if your download doesn"t start
ENGLISH 24 English is fun Letter #1 Letters In the age of e-mails and cell phones writing a letter might seem out of fashion. However, learners of a foreign language should know how to do it. Here you
Miskolci Egyetem Gazdaságtudományi Kar Üzleti Információgazdálkodási és Módszertani Intézet. Nonparametric Tests. Petra Petrovics.
Nonparametric Tests Petra Petrovics PhD Student Hypothesis Testing Parametric Tests Mean o a population Population proportion Population Standard Deviation Nonparametric Tests Test or Independence Analysis
ELEKTRONIKAI ALAPISMERETEK ANGOL NYELVEN
ÉRETTSÉGI VIZSGA 2012. május 25. ELEKTRONIKAI ALAPISMERETEK ANGOL NYELVEN KÖZÉPSZINTŰ ÍRÁSBELI VIZSGA 2012. május 25. 8:00 Az írásbeli vizsga időtartama: 180 perc Pótlapok száma Tisztázati Piszkozati NEMZETI
FÖLDRAJZ ANGOL NYELVEN
Földrajz angol nyelven középszint 1012 ÉRETTSÉGI VIZSGA 2012. május 16. FÖLDRAJZ ANGOL NYELVEN KÖZÉPSZINTŰ ÍRÁSBELI ÉRETTSÉGI VIZSGA JAVÍTÁSI-ÉRTÉKELÉSI ÚTMUTATÓ NEMZETI ERŐFORRÁS MINISZTÉRIUM Paper 1
Excel vagy Given-When-Then? Vagy mindkettő?
TESZT & TEA BUDAPEST AGILE MEETUP Pénzügyi számítások automatizált agilis tesztelése: Excel vagy Given-When-Then? Vagy mindkettő? NAGY GÁSPÁR TechTalk developer coach Budapest, 2014 február 6. SpecFlow
FAMILY STRUCTURES THROUGH THE LIFE CYCLE
FAMILY STRUCTURES THROUGH THE LIFE CYCLE István Harcsa Judit Monostori A magyar társadalom 2012-ben: trendek és perspektívák EU összehasonlításban Budapest, 2012 november 22-23 Introduction Factors which
MATEMATIKA ANGOL NYELVEN
ÉRETTSÉGI VIZSGA 2011. május 3. MATEMATIKA ANGOL NYELVEN KÖZÉPSZINTŰ ÍRÁSBELI VIZSGA 2011. május 3. 8:00 I. Időtartam: 45 perc Pótlapok száma Tisztázati Piszkozati NEMZETI ERŐFORRÁS MINISZTÉRIUM Matematika
2. Local communities involved in landscape architecture in Óbuda
Év Tájépítésze pályázat - Wallner Krisztina 2. Közösségi tervezés Óbudán Óbuda jelmondata: Közösséget építünk, ennek megfelelően a formálódó helyi közösségeket bevonva fejlesztik a közterületeket. Békásmegyer-Ófaluban
FÖLDRAJZ ANGOL NYELVEN
Földrajz angol nyelven középszint 0802 ÉRETTSÉGI VIZSGA 2008. május 15. FÖLDRAJZ ANGOL NYELVEN KÖZÉPSZINTŰ ÍRÁSBELI ÉRETTSÉGI VIZSGA JAVÍTÁSI-ÉRTÉKELÉSI ÚTMUTATÓ OKTATÁSI ÉS KULTURÁLIS MINISZTÉRIUM Paper
ANGOL NYELV KÖZÉPSZINT SZÓBELI VIZSGA I. VIZSGÁZTATÓI PÉLDÁNY
ANGOL NYELV KÖZÉPSZINT SZÓBELI VIZSGA I. VIZSGÁZTATÓI PÉLDÁNY A feladatsor három részből áll 1. A vizsgáztató társalgást kezdeményez a vizsgázóval. 2. A vizsgázó egy szituációs feladatban vesz részt a
Longman Exams Dictionary egynyelvű angol szótár nyelvvizsgára készülőknek
Longman Exams Dictionary egynyelvű angol szótár nyelvvizsgára készülőknek Egynyelvű angol nagyszótár haladó nyelvtanulóknak és nyelvvizsgázóknak 212,000 szócikkel A szótárban minden definíció egyszerű
MATEMATIKA ANGOL NYELVEN
ÉRETTSÉGI VIZSGA 2018. május 8. MATEMATIKA ANGOL NYELVEN EMELT SZINTŰ ÍRÁSBELI VIZSGA 2018. május 8. 8:00 Időtartam: 300 perc Pótlapok száma Tisztázati Piszkozati EMBERI ERŐFORRÁSOK MINISZTÉRIUMA Matematika
Földtani térképek kartografálásának segítése térinformatikai módszerekkel
A Magyar Állami Földtani Intézet Évi Jelentése, 2004 139 Földtani térképek kartografálásának segítése térinformatikai módszerekkel Aiding the cartographic process of geological maps with GIS-methods Magyar
ELEKTRONIKAI ALAPISMERETEK ANGOL NYELVEN FOUNDATIONS IN ELECTRONICS
ÉRETTSÉGI VIZSGA 2007. május 25. ELEKTRONIKAI ALAPISMERETEK ANGOL NYELVEN FOUNDATIONS IN ELECTRONICS 2007. május 25. 8:00 KÖZÉPSZINTŰ ÍRÁSBELI VIZSGA STANDARD-LEVEL WRITTEN EXAM Az írásbeli vizsga időtartama:
FÖLDRAJZ ANGOL NYELVEN
Földrajz angol nyelven középszint 1112 ÉRETTSÉGI VIZSGA 2014. május 15. FÖLDRAJZ ANGOL NYELVEN KÖZÉPSZINTŰ ÍRÁSBELI ÉRETTSÉGI VIZSGA JAVÍTÁSI-ÉRTÉKELÉSI ÚTMUTATÓ EMBERI ERŐFORRÁSOK MINISZTÉRIUMA Paper
Create & validate a signature
IOTA TUTORIAL 7 Create & validate a signature v.0.0 KNBJDBIRYCUGVWMSKPVA9KOOGKKIRCBYHLMUTLGGAV9LIIPZSBGIENVBQ9NBQWXOXQSJRIRBHYJ9LCTJLISGGBRFRTTWD ABBYUVKPYFDJWTFLICYQQWQVDPCAKNVMSQERSYDPSSXPCZLVKWYKYZMREAEYZOSPWEJLHHFPYGSNSUYRZXANDNQTTLLZA
Hogyan használja az OROS online pótalkatrész jegyzéket?
Hogyan használja az OROS online pótalkatrész jegyzéket? Program indítása/program starts up Válassza ki a weblap nyelvét/choose the language of the webpage Látogasson el az oros.hu weboldalra, majd klikkeljen
Tudományos Ismeretterjesztő Társulat
Sample letter number 5. International Culture Festival PO Box 34467 Harrogate HG 45 67F Sonnenbergstraße 11a CH-6005 Luzern Re: Festival May 19, 2009 Dear Ms Atkinson, We are two students from Switzerland
16F628A megszakítás kezelése
16F628A megszakítás kezelése A 'megszakítás' azt jelenti, hogy a program normális, szekvenciális futása valamilyen külső hatás miatt átmenetileg felfüggesztődik, és a vezérlést egy külön rutin, a megszakításkezelő
Ellenőrző lista. 2. Hálózati útvonal beállítások, kapcsolatok, névfeloldások ellenőrzése: WebEC és BKPR URL-k kliensről történő ellenőrzése.
Ellenőrző lista 1. HW/SW rendszer követelmények meglétének ellenőrzése: A telepítési segédlet által megjelölt elemek meglétének, helyes üzemének ellenőrzése. 2. Hálózati útvonal beállítások, kapcsolatok,
Statistical Dependence
Statistical Dependence Petra Petrovics Statistical Dependence Deinition: Statistical dependence exists when the value o some variable is dependent upon or aected by the value o some other variable. Independent
MATEMATIKA ANGOL NYELVEN
ÉRETTSÉGI VIZSGA 2017. október 17. MATEMATIKA ANGOL NYELVEN KÖZÉPSZINTŰ ÍRÁSBELI VIZSGA 2017. október 17. 8:00 I. Időtartam: 57 perc Pótlapok száma Tisztázati Piszkozati EMBERI ERŐFORRÁSOK MINISZTÉRIUMA
FÖLDRAJZ ANGOL NYELVEN GEOGRAPHY JAVÍTÁSI-ÉRTÉKELÉSI ÚTMUTATÓ MARKSCHEME
Földrajz angol nyelven középszint 0521 ÉRETTSÉGI VIZSGA 2006. május 16. FÖLDRAJZ ANGOL NYELVEN GEOGRAPHY KÖZÉPSZINTŰ ÍRÁSBELI VIZSGA STANDARD LEVEL WRITTEN EXAMINATION JAVÍTÁSI-ÉRTÉKELÉSI ÚTMUTATÓ MARKSCHEME
Készítette: Szabóné Nacsa Rozália
Készítette: Szabóné Nacsa Rozália nacsa@inf.elte.hu 1 Structured Query Language (Struktúrált lekérdező nyelv) Relációs adatbázisok kezelésére kifejlesztett szabvány 2 DIAKOK dkód vnév knév 1001 Kiss János
3. MINTAFELADATSOR KÖZÉPSZINT. Az írásbeli vizsga időtartama: 30 perc. III. Hallott szöveg értése
Oktatáskutató és Fejlesztő Intézet TÁMOP-3.1.1-11/1-2012-0001 XXI. századi közoktatás (fejlesztés, koordináció) II. szakasz ANGOL NYELV 3. MINTAFELADATSOR KÖZÉPSZINT Az írásbeli vizsga időtartama: 30 perc
ELEKTRONIKAI ALAPISMERETEK ANGOL NYELVEN
ÉRETTSÉGI VIZSGA 2011. május 13. ELEKTRONIKAI ALAPISMERETEK ANGOL NYELVEN KÖZÉPSZINTŰ ÍRÁSBELI VIZSGA 2011. május 13. 8:00 Az írásbeli vizsga időtartama: 180 perc Pótlapok száma Tisztázati Piszkozati NEMZETI
Személyes adatváltoztatási formanyomtatvány- Magyarország / Personal Data Change Form - Hungary
Személyes adatváltoztatási formanyomtatvány- Magyarország / Personal Data Change Form - Hungary KITÖLTÉSI ÚTMUTATÓ: A formanyomtatványon a munkavállaló a személyes adatainak módosítását kezdeményezheti.
ANGOL NYELV KÖZÉPSZINT SZÓBELI VIZSGA I. VIZSGÁZTATÓI PÉLDÁNY
ANGOL NYELV KÖZÉPSZINT SZÓBELI VIZSGA I. VIZSGÁZTATÓI PÉLDÁNY A feladatsor három részbol áll 1. A vizsgáztató társalgást kezdeményez a vizsgázóval. 2. A vizsgázó egy szituációs feladatban vesz részt a
Correlation & Linear Regression in SPSS
Petra Petrovics Correlation & Linear Regression in SPSS 4 th seminar Types of dependence association between two nominal data mixed between a nominal and a ratio data correlation among ratio data Correlation
EN United in diversity EN A8-0206/445. Amendment
21.3.2019 A8-0206/445 445 Title Proposal for a DIRECTIVE OF THE EUROPEAN PARLIAMENT AND OF THE COUNCIL amending Directive 2006/22/EC as regards enforcement requirements and laying down specific rules with
István Micsinai Csaba Molnár: Analysing Parliamentary Data in Hungarian
István Micsinai Csaba Molnár: Analysing Parliamentary Data in Hungarian The Hungarian Comparative Agendas Project Participant of international Comparative Agendas Project Datasets on: Laws (1949-2014)
Csatlakozás a BME eduroam hálózatához Setting up the BUTE eduroam network
Csatlakozás a BME eduroam hálózatához Setting up the BUTE eduroam network Table of Contents Windows 7... 2 Windows 8... 6 Windows Phone... 11 Android... 12 iphone... 14 Linux (Debian)... 20 Sebők Márton
(Asking for permission) (-hatok/-hetek?; Szabad ni? Lehet ni?) Az engedélykérés kifejezésére a következő segédigéket használhatjuk: vagy vagy vagy
(Asking for permission) (-hatok/-hetek?; Szabad ni? Lehet ni?) SEGÉDIGÉKKEL Az engedélykérés kifejezésére a következő segédigéket használhatjuk: vagy vagy vagy A fenti felsorolásban a magabiztosság/félénkség
A modern e-learning lehetőségei a tűzoltók oktatásának fejlesztésében. Dicse Jenő üzletfejlesztési igazgató
A modern e-learning lehetőségei a tűzoltók oktatásának fejlesztésében Dicse Jenő üzletfejlesztési igazgató How to apply modern e-learning to improve the training of firefighters Jenő Dicse Director of
MATEMATIKA ANGOL NYELVEN
ÉRETTSÉGI VIZSGA MATEMATIKA ANGOL NYELVEN EMELT SZINTŰ ÍRÁSBELI VIZSGA 8:00 Az írásbeli vizsga időtartama: 240 perc Pótlapok száma Tisztázati Piszkozati OKTATÁSI ÉS KULTURÁLIS MINISZTÉRIUM Matematika angol
MATEMATIKA ANGOL NYELVEN
ÉRETTSÉGI VIZSGA 2014. május 6. MATEMATIKA ANGOL NYELVEN EMELT SZINTŰ ÍRÁSBELI VIZSGA 2014. május 6. 8:00 Az írásbeli vizsga időtartama: 240 perc Pótlapok száma Tisztázati Piszkozati EMBERI ERŐFORRÁSOK
FÖLDRAJZ ANGOL NYELVEN
Földrajz angol nyelven középszint 1411 ÉRETTSÉGI VIZSGA 2015. május 14. FÖLDRAJZ ANGOL NYELVEN KÖZÉPSZINTŰ ÍRÁSBELI ÉRETTSÉGI VIZSGA JAVÍTÁSI-ÉRTÉKELÉSI ÚTMUTATÓ EMBERI ERŐFORRÁSOK MINISZTÉRIUMA Paper
Személyes adatváltoztatási formanyomtatvány - Magyarország / Personal Data Change Form - Hungary
Személyes adatváltoztatási formanyomtatvány - Magyarország / Personal Data Change Form - Hungary Kitöltési útmutató: A formanyomtatványon a munkavállaló a személyes adatainak módosítását kezdeményezheti.
AZ ACM NEMZETKÖZI PROGRAMOZÓI VERSENYE
AZ ACM NEMZETKÖZI PROGRAMOZÓI VERSENYE Kuki Attila, kuki@math.klte.hu Kossuth Lajos Tudományegyetem, Információ Technológia Tanszék Abstract This paper is dedicated to the Scholastic Programming Contest
Adatbázisok 1. Rekurzió a Datalogban és SQL-99
Adatbázisok 1 Rekurzió a Datalogban és SQL-99 Expressive Power of Datalog Without recursion, Datalog can express all and only the queries of core relational algebra. The same as SQL select-from-where,
Tudományos Ismeretterjesztő Társulat
Sample letter number 3. Russell Ltd. 57b Great Hawthorne Industrial Estate Hull East Yorkshire HU 19 5BV 14 Bebek u. Budapest H-1105 10 December, 2009 Ref.: complaint Dear Sir/Madam, After seeing your
DOAS változások, összefoglaló
DOAS 3.835.2.0 változások, összefoglaló 1149 Budapest, Egressy út 17-21. Telefon: +36 1 469 4021; fax: +36 1 469 4029 1 / 6 Tartalomjegyzék 1. Start Csomag /Start package...3 1.1. Általános modul / General
BKI13ATEX0030/1 EK-Típus Vizsgálati Tanúsítvány/ EC-Type Examination Certificate 1. kiegészítés / Amendment 1 MSZ EN 60079-31:2014
(1) EK-TípusVizsgálati Tanúsítvány (2) A potenciálisan robbanásveszélyes környezetben történő alkalmazásra szánt berendezések, védelmi rendszerek 94/9/EK Direktíva / Equipment or Protective Systems Intended
kmµvifisiksa kumbüút½r fñak;qñmasiksamuldæanena RULE cmnyn 45 h= 3eRkDIt
kmµvifisiksa kumbüút½r fñak;qñmasiksamuldæanena RULE cmnyn 45 h= 3eRkDIt ekalbmng sßab½nrdæ ÉkCn sutæeterbir)as;nuvm:asuinkmubüút½r. kmubüút½r )ancyysmryldl; kargarmnuss )any:agercin ehiygacerbir)as;esþietrkb;tmruvkar.
Correlation & Linear Regression in SPSS
Correlation & Linear Regression in SPSS Types of dependence association between two nominal data mixed between a nominal and a ratio data correlation among ratio data Exercise 1 - Correlation File / Open
FÖLDRAJZ ANGOL NYELVEN
Földrajz angol nyelven középszint 1311 ÉRETTSÉGI VIZSGA 2013. május 15. FÖLDRAJZ ANGOL NYELVEN KÖZÉPSZINTŰ ÍRÁSBELI ÉRETTSÉGI VIZSGA JAVÍTÁSI-ÉRTÉKELÉSI ÚTMUTATÓ EMBERI ERŐFORRÁSOK MINISZTÉRIUMA Paper
Előszó.2. Starter exercises. 3. Exercises for kids.. 9. Our comic...17
2011. december Tartalom Előszó.2 Starter exercises. 3 Exercises for kids.. 9 Our comic....17 1 Előszó Kedves angolul tanulók! A 2010/2011- es tanévben elkezdett újságunkat szeretnénk továbbra is szerkeszteni
KN-CP50. MANUAL (p. 2) Digital compass. ANLEITUNG (s. 4) Digitaler Kompass. GEBRUIKSAANWIJZING (p. 10) Digitaal kompas
KN-CP50 MANUAL (p. ) Digital compass ANLEITUNG (s. 4) Digitaler Kompass MODE D EMPLOI (p. 7) Boussole numérique GEBRUIKSAANWIJZING (p. 0) Digitaal kompas MANUALE (p. ) Bussola digitale MANUAL DE USO (p.
Contact us Toll free (800) fax (800)
Table of Contents Thank you for purchasing our product, your business is greatly appreciated. If you have any questions, comments, or concerns with the product you received please contact the factory.
MATEMATIKA ANGOL NYELVEN
ÉRETTSÉGI VIZSGA 2010. október 19. MATEMATIKA ANGOL NYELVEN KÖZÉPSZINTŰ ÍRÁSBELI VIZSGA 2010. október 19. 8:00 I. Időtartam: 45 perc Pótlapok száma Tisztázati Piszkozati NEMZETI ERŐFORRÁS MINISZTÉRIUM
BIOLÓGIA ANGOL NYELVEN
Biológia angol nyelven középszint 1612 ÉRETTSÉGI VIZSGA 2016. május 11. BIOLÓGIA ANGOL NYELVEN KÖZÉPSZINTŰ ÍRÁSBELI ÉRETTSÉGI VIZSGA JAVÍTÁSI-ÉRTÉKELÉSI ÚTMUTATÓ EMBERI ERŐFORRÁSOK MINISZTÉRIUMA Instructions
Adatbázis-kezelés ODBC driverrel
ADATBÁZIS-KEZELÉS ODBC DRIVERREL... 1 ODBC: OPEN DATABASE CONNECTIVITY (NYÍLT ADATBÁZIS KAPCSOLÁS)... 1 AZ ODBC FELÉPÍTÉSE... 2 ADATBÁZIS REGISZTRÁCIÓ... 2 PROJEKT LÉTREHOZÁSA... 3 A GENERÁLT PROJEKT FELÉPÍTÉSE...
Elemi alkalmazások fejlesztése IV.
Structured Query Language (Struktúrált lekérdez ı nyelv) Relációs adatbázisok kezelésére kifejlesztett szabvány né Nacsa Rozália nacsa@inf.elte.hu Fejlesztı : MySQLAB weboldal: www.mysql.com MySQL installálása.
Supplementary materials to: Whole-mount single molecule FISH method for zebrafish embryo
Supplementary materials to: Whole-mount single molecule FISH method for zebrafish embryo Yuma Oka and Thomas N. Sato Supplementary Figure S1. Whole-mount smfish with and without the methanol pretreatment.
SQL/PSM kurzorok rész
SQL/PSM kurzorok --- 2.rész Tankönyv: Ullman-Widom: Adatbázisrendszerek Alapvetés Második, átdolgozott kiadás, Panem, 2009 9.3. Az SQL és a befogadó nyelv közötti felület (sormutatók) 9.4. SQL/PSM Sémában
ELEKTRONIKAI ALAPISMERETEK ANGOL NYELVEN
ÉRETTSÉGI VIZSGA 2015. május 19. ELEKTRONIKAI ALAPISMERETEK ANGOL NYELVEN KÖZÉPSZINTŰ ÍRÁSBELI VIZSGA 2015. május 19. 8:00 Az írásbeli vizsga időtartama: 180 perc Pótlapok száma Tisztázati Piszkozati EMBERI
Szeretettel hívjuk, várjuk sporttársainkat az Eger Ünnepe és az Egri Senior Úszó-Klub fennállásának 25-ikévében rendezett versenyünkre
XIII. BITSKEY ALADÁR NEMZETKÖZI SENIOR ÚSZÓ EMLÉKVERSENY az Egri Csillag jegyében 25-ik éves az Egri Szenior Úszó Klub EGER, 2016. szeptember 18-19. Szeretettel hívjuk, várjuk sporttársainkat az Eger Ünnepe
MATEMATIKA ANGOL NYELVEN
ÉRETTSÉGI VIZSGA 2009. május 5. MATEMATIKA ANGOL NYELVEN KÖZÉPSZINTŰ ÍRÁSBELI VIZSGA 2009. május 5. 8:00 I. Időtartam: 45 perc Pótlapok száma Tisztázati Piszkozati OKTATÁSI ÉS KULTURÁLIS MINISZTÉRIUM Matematika
Word and Polygon List for Obtuse Triangular Billiards II
Word and Polygon List for Obtuse Triangular Billiards II Richard Evan Schwartz August 19, 2008 Abstract This is the list of words and polygons we use for our paper. 1 Notation To compress our notation
Performance Modeling of Intelligent Car Parking Systems
Performance Modeling of Intelligent Car Parking Systems Károly Farkas Gábor Horváth András Mészáros Miklós Telek Technical University of Budapest, Hungary EPEW 2014, Florence, Italy Outline Intelligent
Statistical Inference
Petra Petrovics Statistical Inference 1 st lecture Descriptive Statistics Inferential - it is concerned only with collecting and describing data Population - it is used when tentative conclusions about
discosnp demo - Peterlongo Pierre 1 DISCOSNP++: Live demo
discosnp demo - Peterlongo Pierre 1 DISCOSNP++: Live demo Download and install discosnp demo - Peterlongo Pierre 3 Download web page: github.com/gatb/discosnp Chose latest release (2.2.10 today) discosnp
Website review acci.hu
Website review acci.hu Generated on September 30 2016 21:54 PM The score is 37/100 SEO Content Title Acci.hu - Ingyenes apróhirdető Length : 30 Perfect, your title contains between 10 and 70 characters.
MATEMATIKA ANGOL NYELVEN
ÉRETTSÉGI VIZSGA 2012. október 16. MATEMATIKA ANGOL NYELVEN KÖZÉPSZINTŰ ÍRÁSBELI VIZSGA 2012. október 16. 8:00 I. Időtartam: 45 perc Pótlapok száma Tisztázati Piszkozati EMBERI ERŐFORRÁSOK MINISZTÉRIUMA
MATEMATIKA ANGOL NYELVEN
ÉRETTSÉGI VIZSGA 2015. május 5. MATEMATIKA ANGOL NYELVEN KÖZÉPSZINTŰ ÍRÁSBELI VIZSGA 2015. május 5. 8:00 I. Időtartam: 45 perc Pótlapok száma Tisztázati Piszkozati EMBERI ERŐFORRÁSOK MINISZTÉRIUMA Matematika
A rosszindulatú daganatos halálozás változása 1975 és 2001 között Magyarországon
A rosszindulatú daganatos halálozás változása és között Eredeti közlemény Gaudi István 1,2, Kásler Miklós 2 1 MTA Számítástechnikai és Automatizálási Kutató Intézete, Budapest 2 Országos Onkológiai Intézet,
MATEMATIKA ANGOL NYELVEN
ÉRETTSÉGI VIZSGA 2014. október 14. MATEMATIKA ANGOL NYELVEN KÖZÉPSZINTŰ ÍRÁSBELI VIZSGA 2014. október 14. 8:00 I. Időtartam: 45 perc Pótlapok száma Tisztázati Piszkozati EMBERI ERŐFORRÁSOK MINISZTÉRIUMA
Utasítások. Üzembe helyezés
HASZNÁLATI ÚTMUTATÓ Üzembe helyezés Utasítások Windows XP / Vista / Windows 7 / Windows 8 rendszerben történő telepítéshez 1 Töltse le az AORUS makróalkalmazás telepítőjét az AORUS hivatalos webhelyéről.
MATEMATIKA ANGOL NYELVEN
ÉRETTSÉGI VIZSGA 2016. május 3. MATEMATIKA ANGOL NYELVEN EMELT SZINTŰ ÍRÁSBELI VIZSGA 2016. május 3. 8:00 Az írásbeli vizsga időtartama: 240 perc Pótlapok száma Tisztázati Piszkozati EMBERI ERŐFORRÁSOK