Complete task 8. Algorithms for completing exam tasks in the Russian language

The lesson is devoted to the analysis of task 8 of the exam in computer science


The 8th topic - "Programming algorithms with cycles" - is characterized as tasks of the basic level of complexity, the execution time is about 3 minutes, the maximum score is 1

Algorithmic structures with cycles

In task 8 of the exam, algorithmic structures with cycles are used. Let's consider them on the example of the Pascal language.

  • For acquaintance and repetition while loop, .
  • For acquaintance and repetition For loop, .

The sum of an arithmetic progression

Formula to calculate n-th element of an arithmetic progression:

a n = a 1 + d(n-1)

n members of an arithmetic progression:

  • a i
  • d– step (difference) of the sequence.

The sum of a geometric progression

Geometric progression property:

b n 2 = b n+1 * q n-1

Formula to calculate denominator geometric progression:

\[ q = \frac (b_(n+1))(b_n) \]

Formula to calculate n th element of a geometric progression:

b n = b 1 * q n-1

Formula to calculate denominator geometric progression:

Formula for calculating the sum of the first n members of a geometric progression:

\[ S_(n) = \frac (b_1-b_(n)*q)(1-q) \]

\[ S_(n) = b_(1) * \frac (1-q^n)(1-q) \]

  • b i– i-th element of the sequence,
  • q is the denominator of the sequence.

Solving tasks 8 USE in Informatics

USE in Informatics 2017 assignment FIPI option 15 (Krylov S.S., Churkina T.E.):

1 2 3 4 5 var k, s: integer ; begin s:= 512 ; k:=0; while s

vark,s:integer; begin s:=512; k:=0; while s


✍ Solution:
  • In a loop k increases by unit (k - counter). Respectively, k will be equal to the number of iterations (repetitions) of the loop. After the completion of the cycle k is displayed on the screen, i.e. this is the output of the program.
  • In a loop s increases by 64 . For simplicity of calculations, we take the initial s not 512 , a 0 . Then the loop condition will change to s< 1536 (2048 — 512 = 1536):
s:=0; k:=0; while s< 1536 do begin ...
  • The loop will run while s<1536 , а s increases by 64 , it follows that the loop iterations (steps) will be:
1536 / 64 = 24
  • Respectively, k = 24.

Result: 24

For a more detailed analysis, we suggest watching the video of the solution to this 8 task of the exam in computer science:

10 Training options for exam papers to prepare for the Unified State Examination in Informatics 2017, task 8, option 1 (Ushakov D.M.):

Determine what will be printed as a result of executing the following program fragment:

1 2 3 4 5 6 7 8 9 10 11 var k, s: integer ; begin k:= 1024 ; s:=50; while s› 30 do begin s: = s- 4 ; k: = k div 2 ; end ; write (k) end .

var k,s: integer; begink:=1024; s:=50; while s>30 do begin s:=s-4; k:=kdiv 2; end; write(k)end.


✍ Solution:

Result: 32

For a detailed solution, see the video:

USE 8.3:

For what is the smallest integer introduced number d after executing the program, the number will be printed 192 ?

1 2 3 4 5 6 7 8 9 10 11 12 var k, s, d: integer ; begin readln(d) ; s:=0; k:=0; while k ‹ 200 do begin s: = s+ 64 ; k: = k + d; end ; write(s); end.

var k,s,d: integer; begin readln(d); s:=0; k:=0; while k< 200 do begin s:=s+64; k:=k+d; end; write(s); end.


✍ Solution:

Consider the program algorithm:

  • Loop depends on variable k, which every iteration of the loop increases by the value d(input). The loop will finish "work" when k equal to 200 or exceed it k >= 200).
  • The result of the program is the output of the value of the variable s. In a cycle s increases by 64 .
  • Since, according to the assignment, it is necessary that the number be displayed 192 , then the number of repetitions of the cycle is determined as follows:
64 * x = 192 number of repetitions: x = 192 / 64 = 3
  • Since in a cycle k increases by value d, and loop repetitions 3 (the cycle ends when k>=200), we write the equation:
3*d=200d=200/3~66.66
  • Since the number turned out to be non-integer, we check and 66 and 67 . If we take 66 , then:
66 + 66 + 66 = 198 (< 200)

those. the cycle after three passes will still continue to work, which does not suit us.

  • For 67 :
67 + 67 + 67 = 201 (>200)
  • Given number 67 suits us, it is the smallest possible, which is required by the assignment.

Result: 67

Watch the video for a breakdown of the task:

USE in informatics task 8.4 (source: option 3, K. Polyakov)

Determine what will be printed as a result of the following program fragment:

1 2 3 4 5 6 7 8 9 10 var k, s: integer ; begin s:= 3 ; k: = 1; while k ‹ 25 do begin s: = s + k; k: = k+ 2 ; end ; write(s); end.

var k, s: integer; begin s:=3; k:=1; while k< 25 do begin s:=s+k; k:=k+2; end; write(s); end.


✍ Solution:

Let's look at the listing of the program:

  • The result of the program is the output of the value s.
  • In a loop s changes by increasing k, at the initial value s = 3.
  • cycle depends on k. The loop will end when k >= 25. Initial value k = 1.
  • In a loop k constantly increasing by 2 -> means you can find the number of loop iterations.
  • The number of loop iterations is:
n=25/2~ 12

(because k originally equaled 1 , then in the last, 12th passage of the cycle, k = 25; loop condition is false)

  • AT s the sum of an arithmetic progression is accumulated, the sequence of elements of which is more convenient to start with 0 (and not with 3 , as in the program). So imagine that at the beginning of the program s = 0. But let's not forget that at the end it will be necessary to add 3 to the result!
s:= 0 ; k:=1; while k< 25 do begin ...
  • Then the arithmetic progression will look like:
1 + 3 + 5 + 7 ... the number of members of the progression is 12, because 12 loop iterations
  • There is a formula for calculating the sum of an arithmetic progression:

s = ((2 * a1 + d * (n - 1)) / 2) * n

where a1 is the first member of the progression,
d- difference,
n- the number of members of the progression (in our case - the number of iterations of the cycle)

  • Substitute the values ​​in the formula:
(2 * 1 + 2 * 11) / 2 * 12 = 144
  • Let's not forget that we must add to the result 3 :
144+3 = 147
  • This is the meaning s, which is displayed as a result of the program.

Result: 147

The solution to this task of the exam in computer science video:

USE in computer science task 8.5 (source: option 36, K. Polyakov)

1 2 3 4 5 6 7 8 9 10 var s, n: integer ; begin s := 0 ; n := 0 while 2 * s* s ‹ 123 do begin s : = s + 1 ; n := n + 2 writeln (n) end .

var s, n: integer; begin s:= 0; n:=0; while 2*s*s< 123 do begin s:= s + 1; n:= n + 2 end; writeln(n) end.


✍ Solution:

Let's look at the listing of the program:

  • variable in the loop s constantly increasing per unit(works like a counter) and the variable n in a cycle increases by 2 .
  • As a result of the program, the value is displayed on the screen n.
  • cycle depends on s, and the loop will end when 2 * s 2 >= 123.
  • It is necessary to determine the number of loop iterations (loop iterations): to do this, we define the smallest possible s, to 2 * s 2 >= 123:
1st step: s = 2*1 2 =2 2nd step: s = 2*2 2 =8 3rd step: s = 2*3 2 =18 ... 7th step: s = 2*7 2 =98 (less than 123 , i.e. the loop is still running) Step 8: s = 2* 8 2 =128 (greater than 123, the loop doesn't work!)

Or it would simply be necessary to find such the smallest possible even number >= 123, which, when divided by 2 would return the calculated root of the number:

S=124/2 = √62 - not suitable! s=126/2 = √63 - not suitable! s=128/2 = √64 = 8 - fits!

  • So the program will do 8 loop iterations.
  • Let's define n, which increases each step of the loop by 2 , means:
n=2*8= 16

Result: 16

The video of this exam task is available here:

USE in informatics task 8.6 (source: option 37, K. Polyakov with reference to O.V. Gasanov)

Write the smallest and largest value of a number separated by a comma d, which must be entered so that after the execution of the program it will be printed 153 ?

1 2 3 4 5 6 7 8 9 10 11 var n, s, d: integer ; begin readln(d) ; n:=33; s:=4; while s ‹ = 1725 do begin s : = s + d; n := n + 8 write (n) end .

var n, s, d: integer; begin readln(d); n:= 33; s:= 4; while s<= 1725 do begin s:= s + d; n:= n + 8 end; write(n) end.


✍ Solution:

Let's look at the listing of the program:

  • The program loop depends on the value of the variable s, which in the cycle is constantly increasing by the value d (d entered by the user at the beginning of the program).
  • Also, in the loop, the variable n increases by 8 . Variable value n is displayed on the screen at the end of the program, i.e. on assignment n by the end of the program should n=153.
  • It is necessary to determine the number of loop iterations (passages). Since the initial value n=33, and at the end it should become 153 , in the cycle increasing by 8 then how many times 8 "fit" in 120 (153 — 33)? :
120 / 8 = 15 times (number of loop iterations)
  • As we have defined, the cycle depends on s, which at the beginning of the program s = 4. For simplicity, let us assume that s = 0, then we will change the loop condition: instead of s<= 1725 сделаем s <= 1721 (1725-1721)
... s:= 0; while s<= 1721 do begin ...
  • Let's find d. Since the loop is running 15 times, then you need to find an integer that, when multiplied by 15 would return a number more 1721:
1721 / 15 = 114.733 - not an integer, not suitable 1722 / 15 = 114.8 - not an integer, not suitable ... take a multiple of 5: 1725 / 15 = 115 - whole, fits!
  • 115 is the least d under which n becomes equal 153 (for 15 cycle steps).
  • Let's find the largest d. To do this, you need to find a number that corresponds to the inequalities:
14*d<= 1721 при этом: 15 * d > 1721
  • Let's find:
14 * 122 = 1708 (<=1721) 15 * 122 = 1830 (>1721)
  • Maximum d= 122

Result: 115, 122

Watch the video of this 8 task of the exam:

8 task. Demo version of the exam 2018 informatics:

Write down the number that will be printed as a result of the following program.

1 2 3 4 5 6 7 8 9 10 11 var s, n: integer ; begin s := 260 ; n := 0 while s › 0 do begin s : = s - 15 ; n := n + 2 writeln (n) end .

var s, n: integer; begin s:= 260; n:=0; while s > 0 do begin s:= s - 15; n:= n + 2 writeln(n) end.


✍ Solution:
    Consider the algorithm:
  • The loop depends on the value of the variable s, which is initially equal to 260 . variable in the loop s constantly changing its value, decreasing at 15.
  • The loop will end when s<= 0 . So you need to count how many numbers 15 "will enter" 260 , in other words:
260 / 15 ~ 17,333...
  • This figure should correspond to the number of steps (iterations) of the loop. Since the cycle condition is strict — s > 0 , then increase the resulting number by one:
17 + 1 = 18 loop iterations Check: 17 * 15 = 255 (< 260) 18 * 15 = 270 (> 260)
  • Let's check with a simpler example. Let's say initially s=32. Two iterations of the loop will give us s = 32/15 = 2.133... Number 2 more 0 , respectively, the loop will run a third time.
  • As a result of the work, the program prints the value of the variable n(desired result). variable in the loop n, initially equal to 0 , increases by 2 . Since the loop includes 18 iterations, we have:
n=18*2= 36

Result: 36

For a detailed solution of this task 8 from the USE demo version of 2018, see the video:

Solution 8 of the task of the Unified State Examination in Informatics (control version No. 2 of the examination paper of 2018, S.S. Krylov, D.M. Ushakov):

Determine what will be printed as a result of executing the program:

1 2 3 4 5 6 7 8 9 10 11 var s, i: integer ; begin i := 1 ; s := 105 ; while s › 5 do begin s : = s - 2 ; i := i + 1 end ; writeln (i) end .

vars, i: integer; i:= 1; s:= 105; while s > 5 do begin s:= s - 2; i:= i + 1 end; writeln(i)end.


✍ Solution:
  • Let's consider the algorithm. Loop depends on variable s, which decreases every iteration of the loop on 2.
  • There is also a counter in the loop - a variable i, which will increase per unit exactly as many times as there are iterations (passes) of the loop. Those. as a result of the program execution, a value equal to the number of iterations of the loop will be printed.
  • Because the loop condition depends on s, we need to calculate how many times can s decrease by 2 in a cycle. For the convenience of counting, let's change the loop condition to while s > 0 ; as we s reduced by 5 , respectively, change the 4th line to s:=100 (105-5):
... s:= 100; while s > 0 do begin ...
  • In order to calculate how many times the loop will be executed, it is necessary 100 divide by 2 , because s each loop step decreases by 2: 100 / 2 = 50 -> number of loop iterations
  • In the 3rd line we see that the initial value i is 1 , i.e. in the first iteration of the loop i = 2. Hence, we need to add to the result (50) 1 .
  • 50 + 1 = 51
  • This value will be displayed on the screen.

Result: 51

Solution 8 of the USE task in informatics 2018 (diagnostic version of the examination paper of 2018, S.S. Krylov, D.M. Ushakov, USE simulator):

Determine the value of a variable c after the execution of the following program fragment. Write your answer as an integer.

1 2 3 4 5 6 7 a:=-5; c:=1024; while a‹ › 0 do begin c: = c div 2 ; a:= a+ 1 end ;

a:=-5; c:=1024; while a<>0 do begin c:=c div 2; a:=a+1 end;1000 do begin s := s + n; n := n * 2 write (s) end .

varn, s: integer; beginn:= 1; s:= 0; while n<= 1000 do begin s:= s + n; n:= n * 2 end; write(s) end.


✍ Solution:

    Consider the algorithm:

  • The loop condition depends on the variable n, which changes in a cycle according to obtaining powers of two:
1 2 4 8 16 32 64 128 256 512 1024
  • When the variable n becomes 1024 (the 11th step of the loop), the loop condition becomes false and the loop stops running. The value of s is displayed on the screen.
  • Variable s is the sum of the elements of a geometric progression, because it accumulates values n

    Write down the number that will be printed as a result of the following program:

    Pascal:

    1 2 3 4 5 6 7 8 9 10 11 var s, n: integer ; begin s := 522 ; n:=400; while s - n > 0 do begin s : = s - 20 ; n := n - 15 end ; write (s) end .

    var s, n: integer; begin s:= 522; n:= 400; while s - n > 0 do begin s:= s - 20; n:= n - 15 write(s)end.


    ✍ Solution:
    • The algorithm contains a cycle. In order to understand the algorithm, let's trace the initial iterations of the loop:
    • We see that in the condition the difference between the values ​​is 5 :
    122 - 117 = 5 117 - 112 = 5 ...
  • Thus, to determine the number of iterations (steps) of the cycle, it is necessary to divide the value of the cycle condition obtained in the first iteration by 5 :
  • 122 / 5 = 24,4 24 * 5 = 120 (120 + 2 = 122)

    This means that on the 24th iteration of the loop, the variables s and n got such values ​​after which the condition still remains true: 2 > 0. At the 25th step, this condition is fulfilled:

  • At the end of the 25th iteration, we get the condition for the 26th iteration:
  • 25 * 5 = 125 (125 - 3 = 122)
  • So, in total there is in the cycle 25 iterations, in each of which s decreases at 20. Let's calculate how much the value will decrease s all in all:
  • 25 * 20 = 500 (for 25 iterations) 522 - 500 = 22 (subtract from original data)

    Result: 22

    We offer you to watch the video of the solution of the task:

    The spelling of word roots is, at first glance, a simple topic. Moreover, it is studied at the lessons of the Russian language already in elementary school. However, it is in the roots that students often make mistakes.

    Reasons for the incorrect spelling of the roots of words:

    • Ignorance of the rules for writing vowels and consonants at the root.
    • The inability to choose the right word to be checked, by which it is easy to check both the vowel and the consonant.
    • Mistakes in identifying roots with alternating vowels. Checking such vowels with stress, which is a gross mistake. Alternating vowels should be written only according to the rule.
    • There are frequent cases when among the words with missing spellings, those are suggested in which the letter is missing in a prefix!!! Be careful not to confuse the prefix with the root (for example: d ... stoverny, O is omitted here in the prefix)

    As you can see, the main reason is ignorance of the rules. You need to learn the rules of the Russian language, guys. Only then will you be able to write the words correctly.

    At the exam in the Russian language in task number 8, you need to find the word from the list of words with the verifiable unstressed vowel in the root and write this word on the answer sheet. Thus, the task, in comparison with previous years, has become much more complicated. Now you need not only to find this word, but also to know very well how it is spelled. An incorrectly spelled but correctly found word will be an erroneous answer.

    Learn to pick the right one test words. In them, the stress should fall on the vowel being checked:

    How to complete task number 8

    1. Eliminate interleaved words from the list. They are not checked by stress, but are written according to the rule.


    Alternating letters A-O

    Alternating letters I-E

    gar-gor

    ber-beer

    clone clan

    der dir

    creature-creature

    mer-world

    zar-zor

    per-feast

    rast-rasch-ros

    ter-tir

    lag-lodge

    glitter blist

    plov

    steel-steel

    jump-skoch

    burn-burn

    mak-mok

    even-cheat

    equal-even

    kas-kos

    A (i) - them, in (occupy - occupy)

    (understand - understand)

    2. Exclude from the list words with an unchecked vowel in the root. These words are easy to find - these are mostly words of foreign origin:



    3. The remaining word will be the answer. Do not forget to check this word with an accent to be sure of the correct answer.

    Train more, do tests, exercises. Task options No. 8 given on our website.

    GOOD LUCK!

    Melnikova Vera Alexandrovna

    Task number 8 1 option

    to ... ryst

    position...

    attraction

    pick on...

    r...the hypothesis

    2.8.. Identify the word in which the unstressed checked vowel of the root is missing.

    wine...gret

    other ... whip

    negative ... sli (hair)

    R ... stov

    an...malia

    3.

    unification

    s...rnitsa

    ant ... gonism

    k.. fell asleep

    rest… lie


    4. 8. Determine the word in which the unstressed checked vowel of the root is missing. Write out this word by inserting the missing letter.

    osm...trel

    hot...relay

    b...blue

    stop ... horny

    rejects


    5.

    f...drunks

    sk...birdism

    bl...become

    stop .barking

    r..glament


    6. 8. Determine the word in which the unstressed checked vowel of the root is missing. Write out this word by inserting the missing letter.

    to ... pooping

    statement

    p...stukh

    ep...demia

    av…ntyura


    7. 8. Determine the word in which the unstressed checked vowel of the root is missing. Write out this word by inserting the missing letter.

    vision

    wash...whip

    teacher

    tv ... rhenium

    b ... yokot


    8. 8. Determine the word in which the unstressed checked vowel of the root is missing.

    Write out this word by inserting the missing letter.

    break up

    length

    prompt... read

    alg...rhythm

    vet… rinar

    9. 8. Determine the word in which the unstressed checked vowel of the root is missing. Write out this word by inserting the missing letter.

    scatter ... sat

    out...live

    att...stat

    prik... dream

    g ... barites

    10. 8. Determine the word in which the unstressed checked vowel of the root is missing. Write out this word by inserting the missing letter.

    k... rosin

    vyr...sti

    sorry ... sorry

    op ... thief

    g ... rnison

    Task number 8 option 2

    1.8.. Determine the word in which the unstressed checked vowel of the root is missing. Write out this word by inserting the missing letter.

    guard ... take

    burn ... burn

    main diator

    to ... nguru

    mind ... army

    irrelevant ... rims

    composition

    deputy ... freezing

    p...chal

    d ... fitit

    3. 8. Determine the word in which the unstressed checked vowel of the root is missing. Write out this word by inserting the missing letter.

    decorate

    offer

    zap... natsya

    to ... boiled

    m…ridian
    4. 8. Determine the word in which the unstressed checked vowel of the root is missing. Write out this word by inserting the missing letter.

    collection

    p...chal

    luminous

    vyr... listen

    set fire to ... gate


    5. 8. Determine the word in which the unstressed checked vowel of the root is missing. Write out this word by inserting the missing letter.

    po... curled

    tr...important

    ex…live

    d ... conduct

    aqua…real


    6. 8. Determine the word in which the unstressed checked vowel of the root is missing. Write out this word by inserting the missing letter.

    service

    pl ... sonorous

    to draw

    vzr...sti

    r ... habilitation


    7. 8. Determine the word in which the unstressed checked vowel of the root is missing. Write out this word by inserting the missing letter.

    scornfully ... scornfully

    zag...relay

    sk...skat

    to ... tastrofa

    to ... overalls

    8. 8. Determine the word in which the unstressed checked vowel of the root is missing. Write out this word by inserting the missing letter.

    b...don

    k...chan

    p... front garden

    p... shoot

    sg ... tret

    choose

    9. 8. Determine the word in which the unstressed checked vowel of the root is missing. Write out this word by inserting the missing letter.

    n...kturn

    l...wanda

    m...sol

    open... to sleep

    people..becoming

    10. 8. Determine the word in which the unstressed checked vowel of the root is missing. Write out this word by inserting the missing letter.

    ugh...sat

    elector

    waterproof

    t... up
    l ... noleum

    Task number 8 option 3

    1.8.. Determine the word in which the unstressed checked vowel of the root is missing. Write out this word by inserting the missing letter.

    prik... dream

    ... incompressible

    m...todika

    bl...stely

    b...lotto

    2.8.. Determine the word in which the unstressed checked vowel of the root is missing. Write out this word by inserting the missing letter.

    pl ... sonorous

    harmonize

    rise ... rise

    exp..riment

    strenuously

    3. 8. Determine the word in which the unstressed checked vowel of the root is missing. Write out this word by inserting the missing letter.

    forbidden

    shutdown

    mountains...umbrella

    scholarship

    experiment ... riment


    4. 8. Determine the word in which the unstressed checked vowel of the root is missing. Write out this word by inserting the missing letter.

    r...sinca

    r ... points

    well...ket

    n ... norm

    p…radox


    5. 8. Determine the word in which the unstressed checked vowel of the root is missing. Write out this word by inserting the missing letter.

    f... nomen

    undivid... roll

    s..rya

    k..sat

    pr…mitive


    6. 8. Determine the word in which the unstressed checked vowel of the root is missing. Write out this word by inserting the missing letter.

    age...

    float wok

    zag...relay

    po... pour

    from..pog
    7. 8. Determine the word in which the unstressed checked vowel of the root is missing. Write out this word by inserting the missing letter.

    k... compliment

    d ... lance-shaped

    percent ... fool

    in...trina

    in...rtical
    8. 8. Determine the word in which the unstressed checked vowel of the root is missing.

    Write out this word by inserting the missing letter.

    incendiary

    upstart...chka

    eliminate...

    g ... horizon

    to ... rnival
    9. 8. Determine the word in which the unstressed checked vowel of the root is missing. Write out this word by inserting the missing letter.

    cuddle up

    ur...vein

    there is no one to rely on ...

    ad...ptation

    with ... rhubarb
    10. Determine the word in which the unstressed checked vowel of the root is missing. Write out this word by inserting the missing letter.

    l...byrinth

    to ... liziya

    on sk...ku

    search...juice

    b ... cut

    answers

    1 option

    Option 2

    3 option

    attraction

    Guard

    technique

    grow old

    irreconcilable

    harmonize

    an association

    Tame

    forbidden

    examined

    luminous

    dewdrop

    skeptic

    appeared

    locker room

    shepherd

    alternate

    whitewash

    teacher

    dismissively

    visionary

    valley

    dazzle

    intimidate

    scatter

    dig out

    take offense

    apologized

    fade away

    obliquely

    Option 1

    1. Task 8

    2. Task 8

    3. Task 8 Define-de-li-those word, in some-rum pro-pus-shche-on without-shock pro-ve-rya-e-may vowel of the root. You-pi-shi-te this word, inserting a missed letter.

    4. Task 8 Define-de-li-those word, in some-rum pro-for-shche-on without-stress-che-re-du-yu-shcha-ya-sya vowel of the root. You-pi-shi-te this word, inserting a missed letter.

    5. Task 8 Define-de-li-those word, in some-rum pro-pus-shche-on without-shock pro-ve-rya-e-may vowel of the root. You-pi-shi-te this word, inserting a missed letter.

    6. Task 8 Define-de-li-those word, in some-rum pro-pus-shche-on without-shock pro-ve-rya-e-may vowel of the root. You-pi-shi-te this word, inserting a missed letter.

    7. Task 8

    8. Task 8 Define-de-li-those word, in some-rum pro-pus-shche-on without-shock pro-ve-rya-e-may vowel of the root. You-pi-shi-te this word, inserting a missed letter.

    10. Task 8 Define-de-li-those word, in some-rum pro-pus-shche-on without-shock pro-ve-rya-e-may vowel of the root. You-pi-shi-te this word, inserting a missed letter.

    Option 2

    1. Task 8 Define-de-li-those word, in some-rum pro-pus-shche-on without-shock pro-ve-rya-e-may vowel of the root. You-pi-shi-te this word, inserting a missed letter.

    stab .. li-for-tion wire .. cation non-g ... ra-e-my floor .. gait

    deputy ..ret

    2. Task 8 Define-de-li-those word, in some-rum pro-for-shche-on without-stress-che-re-du-yu-shcha-ya-sya vowel of the root. You-pi-shi-te this word, inserting a missed letter.

    open .. remove pr ..ten-zia offer

    3. Task 8 Define-de-li-those word, in some-rum pro-pus-shche-on without-shock pro-ve-rya-e-may vowel of the root. You-pi-shi-te this word, inserting a missed letter.

    b..cut z..rnitsa burn..gave to..mmer-sant burn..fly

    4. Task 8 Define-de-li-those word, in some-rum pro-for-shche-on without-stress-che-re-du-yu-shcha-ya-sya vowel of the root. You-pi-shi-te this word, inserting a missed letter.

    eq..logia g..mna-zist beginning..on-th-s.mpa-tiya et..ketka

    5. Task 8 Define-de-li-those word, in some-rum pro-pus-shche-on without-shock pro-ve-rya-e-may vowel of the root. You-pi-shi-te this word, inserting a missed letter.

    n..the most important floor..ketka morning..mbo-vat int..llek-tu-al-ny z..rnitsa

    6. Task 8 Define-de-li-those word, in some-rum pro-pus-shche-on without-shock pro-ve-rya-e-may vowel of the root. You-pi-shi-te this word, inserting a missed letter.

    nak..mite b..rloga sob..army traditional..onny app..lla-tion

    7. Task 8 Define-de-li-those word, in some-rum pro-pus-shche-on without-stress-pro-ver-not-may vowel of the root.

    zat .. imaginary vyt .. army bl .. stet comp.

    8. Task 8 Define-de-li-those word, in some-rum pro-pus-shche-on without-shock pro-ve-rya-e-may vowel of the root. You-pi-shi-te this word, inserting a missed letter.

    manufacture..influence f..lo-logia distance

    10. Task 8 Define-de-li-those word, in some-rum pro-pus-shche-on without-shock pro-ve-rya-e-may vowel of the root. You-pi-shi-te this word, inserting a missed letter.

    in.. rho-vie ornam.. nt ot.

    USE. Russian language. How easy is task number 8?

    Task number 8 has 3 options.

    1 version of task number 8

    Answer algorithm:

      Eliminate all words with alternating root vowel. How to determine them, read below (in this example, these are the words for MEP et and on CLONE ish)

      Eliminate all words with unverifiable root vowel. How to find them, read below. (In this example, this is the word F E DERAL)

      Do not confuse the letter missing in the root with the letter missing in suffix(in this example it is WRONG And flax)

      Be sure to check the vowel in the root, which, in your opinion, has unstressed verifiable (approx. and ryat -m And R).

      Difficult. Do not confuse an alternating vowel with a checked one. The main difference between an alternating root is that such a root always has pair with a different letter, and these are words with the same root, so the meaning of the root is approximately the same.

    Compare:

    at WORLD at-y MEP et is a pair of words with different letters in the root, in which the meaning of the root is approximately the same.

    BUT!!! etc WORLD five friends - this root with the meaning "peace" will never be written with a vowel E.

      Difficult. Find the right root. For example, in the word ON SLAZD ATS root is not messy(you could then easily write FALSE), and SLAZD, so there is no alternating root here. This is the checked vowel in the root of the words- SWEET uy.

      ANSWER in this example : to reconcile enemies.

      Write down the answer only when you were able to pick up a word in which this letter is under stress. Correctly found word, but spelled with an error, is wrong answer!

    Option 2 task number 8

    Answer algorithm:

      Eliminate all words with alternating root vowel (voz RAST, races STEL it)

      Eliminate words with verifiable root vowel (dr O beat - dr O b. unfold E waving flag-in E em)

      Remember that most often words with unverifiable vowel - these are foreign words, that is, their meaning needs to be explained, it may not be clear (to O institutional). However, there are words that are not of foreign origin (def. E divide)

      Answer : constitutional

    3 option for task number 8

    Answer algorithm:

      Eliminate words with verifiable root vowel (embedded E tea-built-in E cha)

      Eliminate all words with unverifiable root vowel (apl O wiping, art And leria, d And rector)

      alternating roots remember visually, just learn them and remember that they always have pair, root value in them about the same(with BIR at-so BER yet)

      In the task, it is necessary not only to find the given words, but also to write it CORRECTLY. So teach regulations, remember exceptions.

      Answer: gather

    Remember alternating roots:

    No accent - Oh

    gar-gor

    clone clan

    creature-creature

    No accent - A

    zar-zor

    plov

    Depends on the subsequent letter in the root

    rast-rasch-ros

    lag-lodge

    jump-skoch

    Depends on the suffix A after the root

    cas + A - kos

    Depends on value

    equal-even

    mak-mok

    Depends on the suffix A.

    If the suffix A is after the root, then AND is written in the root

    ber-beer

    der dir

    mer-world

    lane at

    ter-tir

    best bliss

    steel-steel

    burn-burn

    even-cheat

    Letters at the root them

    (occupy - occupy)

    in

    (begin - start)

    Remember exceptions and write them correctly

    Let's look at examples

    Example 1

    Reasoning pattern

      I find checked roots: op And sleigh-op And shet, fun E value - rzvl E whose, vych And fuck-h And sla

      I find alternating roots: you creative yat

      Answer: l E pour

    Example 2

    Reasoning pattern

      I find checked roots(not available in this version)

      I find unverifiable roots (ek O lgia, g And mnazist, with And mpatiya, at And ketka)

      I find alternating roots (beginning And nay)

    Example 3

    Identify the word that is missing an unstressed checked vowel root. Write out this word by inserting the missing letter.

    manufacturing

    f..lology

    dist.. lay

    Offer E-mail