-
Notifications
You must be signed in to change notification settings - Fork 4
/
example_qs.txt
1025 lines (820 loc) · 26.2 KB
/
example_qs.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
QUESTION:
What are 'provide the situational context for the event or state described in a main clause?
ANSWER:
'adverbial clauses
QUESTION:
What are 'relative clauses?
ANSWER:
'Types of subordinate clauses
QUESTION:
What are 'complement clauses?
ANSWER:
'Types of subordinate clauses
QUESTION:
What are 'adverbial clauses?
ANSWER:
'Types of subordinate clauses
QUESTION:
What are 'a lot like nouns, since they often fulfil similar grammatical relations?
ANSWER:
'complement clauses
QUESTION:
What are 'possible to replace with pronouns?
ANSWER:
'complement clauses
QUESTION:
What are 'arguments of (and therefore syntactically essential to) the clause in which they are embedded?
ANSWER:
'complement clauses
QUESTION:
'arguments of ( and therefore syntactically essential to ) the clause in which they are embedded' what?
ANSWER:
'possible to replace with pronouns
QUESTION:
What are 'sometimes can be rendered as phrases given certain manipulations?
ANSWER:
'relative clauses
QUESTION:
What are 'behave like adjectives, usually modifiers of a noun phrase?
ANSWER:
'relative clauses
QUESTION:
What are 'often the discourse function of a subordinate construction is one of backgrounding, explanation, or description.?
ANSWER:
'Characteristics of Subordinate Clauses
QUESTION:
What are 'often subordinate clauses use fewer constituents or different word order (german)?
ANSWER:
'Characteristics of Subordinate Clauses
QUESTION:
What are 'languages also produce subordinate structures through nominalisation?
ANSWER:
'Characteristics of Subordinate Clauses
QUESTION:
What are 'subordinate structures regularly use a nonfinite form of the verb?
ANSWER:
'Characteristics of Subordinate Clauses
QUESTION:
What are 'sometimes the subordinator can be omitted if it does not carry meaning (“I hope I can go”)?
ANSWER:
'Characteristics of Subordinate Clauses
QUESTION:
What are 'typically morphologically marked by some kind of subordinating particle or affix?
ANSWER:
'Characteristics of Subordinate Clauses
QUESTION:
What are 'the tighter the dependence between main and subordinate clause, the less likely you will find intonation breaks?
ANSWER:
'Characteristics of Subordinate Clauses
QUESTION:
What are 'can differ a lot from language to language?
ANSWER:
'Characteristics of Subordinate Clauses
QUESTION:
What are 'the subordinator may carry lexical content (contribute to meaning of the clause) or not, e.g. “I eat beats because they are in season” vs “I hope that I can go?
ANSWER:
'typically morphologically marked by some kind of subordinating particle or affix
QUESTION:
What are 'in this case, the verb is transformed into a nominal through derivational morphology?
ANSWER:
'languages also produce subordinate structures through nominalisation
QUESTION:
What are 'relativisation strategies?
ANSWER:
'Adverbial Clauses
QUESTION:
What are 'restrictive vs nonrestrictive relative clauses?
ANSWER:
'Adverbial Clauses
QUESTION:
What are 'if relative clauses are introduced by a special word, they are called relativises or relative pronouns (if the pronoun specifies some nominal properties)?
ANSWER:
'Adverbial Clauses
QUESTION:
What are 'entity being modified by noun = head noun or relativised noun?
ANSWER:
'Adverbial Clauses
QUESTION:
What are 'typically found as modifiers of a noun?
ANSWER:
'Adverbial Clauses
QUESTION:
What are 'also called adjective clauses?
ANSWER:
'Adverbial Clauses
QUESTION:
What are 'Relative Clauses?
ANSWER:
'Adverbial Clauses
QUESTION:
What are 'two main ways to signal dependency:?
ANSWER:
'Adverbial Clauses
QUESTION:
What are 'we can have multiple embedding of complements too: “I want [to believe [that you are right]]?
ANSWER:
'Adverbial Clauses
QUESTION:
What are 'complement clauses do not always occur as full clauses but instead may arise as phrases headed by nonfinite verb forms such as infinites and participles?
ANSWER:
'Adverbial Clauses
QUESTION:
What are 'The clause within which the complement is embedding is called the matrix clause?
ANSWER:
'Adverbial Clauses
QUESTION:
What are '“When you leave makes no difference to me” vs “I cannot believe that you ate the whole thing?
ANSWER:
'Adverbial Clauses
QUESTION:
What are 'a clause that is an argument of a predicate, typically as a subject or direct object?
ANSWER:
'Adverbial Clauses
QUESTION:
What are 'Complement Clause?
ANSWER:
'Adverbial Clauses
QUESTION:
What are 'Some uses:?
ANSWER:
'Adverbial Clauses
QUESTION:
What are 'hard to classify since they have a breadth of meanings?
ANSWER:
'Adverbial Clauses
QUESTION:
What are 'many languages do not use this at all, or very rarely?
ANSWER:
'Adverbial Clauses
QUESTION:
What are 'unspecified relationship?
ANSWER:
'Some uses:
QUESTION:
What are 'concessive?
ANSWER:
'Some uses:
QUESTION:
What are 'Conditional?
ANSWER:
'Some uses:
QUESTION:
What are 'Cause?
ANSWER:
'Some uses:
QUESTION:
What are 'Location?
ANSWER:
'Some uses:
QUESTION:
What are 'time?
ANSWER:
'Some uses:
QUESTION:
What are 'not necessarily typical, although english has lots?
ANSWER:
'time
QUESTION:
What are 'often choice of tense in construction is bound in some way by the tense of the main verb (think primary/secondary sequence in greek)?
ANSWER:
'time
QUESTION:
What are 'provide information about the relative temporal ordering of events?
ANSWER:
'time
QUESTION:
What are 'e.g. “The police were digging where Jeffrey had planted a garden.?
ANSWER:
'Location
QUESTION:
What are 'rare for a language to have a robust set of location subordinators, and instead PPs or relative clauses are used.?
ANSWER:
'Location
QUESTION:
What are 'some languages signal difference between enablement and purpose through the mood chosen?
ANSWER:
'Cause
QUESTION:
What are 'often useful to indicate cause or motive behind event (“Because x, John did y…. to say z”)?
ANSWER:
'Cause
QUESTION:
What are 'the relative types in english (and most languages) are indicated by choices of tense/aspect/mood in protasis and apodosis?
ANSWER:
'Conditional
QUESTION:
What are 'apodosis = “then clause?
ANSWER:
'Conditional
QUESTION:
What are 'protasis = “if clause?
ANSWER:
'Conditional
QUESTION:
What are 'Unreal conditions = those that cannot be fulfilled?
ANSWER:
'Conditional
QUESTION:
What are 'real conditions = those that could potentially be fulfilled?
ANSWER:
'Conditional
QUESTION:
What are '“If you can’t beat them, join them!?
ANSWER:
'Conditional
QUESTION:
What are 'may be general truths, present situations, or past situations?
ANSWER:
'real conditions = those that could potentially be fulfilled
QUESTION:
What are 'may be hypotheticals or counterfactuals?
ANSWER:
'Unreal conditions = those that cannot be fulfilled
QUESTION:
What are 'in those that do use a subordinate structure, use of the subordinating particle appears to be the dominant way to do so?
ANSWER:
'concessive
QUESTION:
What are 'all languages seem to have some way to indicate contrast between propositions, although not all do so through subordinating structures?
ANSWER:
'concessive
QUESTION:
What are '“Even though x, y?
ANSWER:
'concessive
QUESTION:
What are 'sometimes the logical connection between two clauses can be left unspecified and the reader/listener allowed to draw their own conclusions.?
ANSWER:
'unspecified relationship
QUESTION:
What are '“Having done y, he did x?
ANSWER:
'unspecified relationship
QUESTION:
What are 'complement type choice has been argued to reflect the semantic relationship of the complement to the matrix clause verb?
ANSWER:
'two main ways to signal dependency:
QUESTION:
What are 'use of nonfinite verb form?
ANSWER:
'two main ways to signal dependency:
QUESTION:
What are 'complementiser (subordination particle)?
ANSWER:
'two main ways to signal dependency:
QUESTION:
What are 'uncommon, but has been found in middle of complement?
ANSWER:
'complementiser (subordination particle)
QUESTION:
What are 'if language is OV, appears both complement initial and final?
ANSWER:
'complementiser (subordination particle)
QUESTION:
What are 'if language is VO, appears at beginning of clause, usually?
ANSWER:
'complementiser (subordination particle)
QUESTION:
What is the definition of 'nonrestrictive = purely descriptive (e.g. “My bro, who lives next to me, called yesterday!”?
ANSWER:
'you are just describing the bro)
QUESTION:
What are 'there is empirical support, though, and there is various literature examining this further!?
ANSWER:
'complement type choice has been argued to reflect the semantic relationship of the complement to the matrix clause verb
QUESTION:
What are 'however, this tendency is violated by languages, including english. As such it is nothing more than a general tendency?
ANSWER:
'complement type choice has been argued to reflect the semantic relationship of the complement to the matrix clause verb
QUESTION:
What are 'e.g. if a language uses infinitive to encode the complements of belief verbs, you would not expect causation verbs to use finite verbs with complements?
ANSWER:
'complement type choice has been argued to reflect the semantic relationship of the complement to the matrix clause verb
QUESTION:
What are 'if a point along the scale on the lower end is related to a certain syntactic structure, anything on the left (with higher control) will not be associated with a less integrated structure?
ANSWER:
'complement type choice has been argued to reflect the semantic relationship of the complement to the matrix clause verb
QUESTION:
What are 'uses semantic criteria to rate verbs: high control > low control?
ANSWER:
'complement type choice has been argued to reflect the semantic relationship of the complement to the matrix clause verb
QUESTION:
What are 'from high to low: causation, attempt, knowledge, belief, report?
ANSWER:
'uses semantic criteria to rate verbs: high control > low control
QUESTION:
What are 'nonrestrictive = purely descriptive (e.g. “My bro, who lives next to me, called yesterday!” you are just describing the bro)?
ANSWER:
'restrictive vs nonrestrictive relative clauses
QUESTION:
What are 'restrictive = restricts noun to be a certain thing (e.g. “My bro who lives next to me called yesterday” you are specifying one bro out of many)?
ANSWER:
'restrictive vs nonrestrictive relative clauses
QUESTION:
What are 'if there is abundant usage of finite clauses in embedded structures, participle modifiers are best treated independent of relative clauses?
ANSWER:
'relativisation strategies
QUESTION:
What are 'in general, if a language tends toward using nonfinite verbs for other embedded structures (such as adverbials and complements), then there is sufficient grounds to consider such constructions relative clauses?
ANSWER:
'relativisation strategies
QUESTION:
What are 'for example, participle phrase usage?
ANSWER:
'relativisation strategies
QUESTION:
What are 'some languages have constructions similar but not identical to relativisation?
ANSWER:
'relativisation strategies
QUESTION:
What are 'what nominals are allowed to be relativised can change?
ANSWER:
'relativisation strategies
QUESTION:
What are 'relativised noun if often just ‘gapped’ there is a gap where the noun would have been?
ANSWER:
'relativisation strategies
QUESTION:
What are 'don’t even need head noun of a relative clause (as in greek for indefinite constructions)?
ANSWER:
'relativisation strategies
QUESTION:
What are 'OV languages use both orders with a weak preference for noun + relative clause ordering?
ANSWER:
'relativisation strategies
QUESTION:
What are 'VO languages use noun + relative clause order?
ANSWER:
'relativisation strategies
QUESTION:
What are 'presence of relativisor is not necessary! Japanese just used word order.?
ANSWER:
'relativisation strategies
QUESTION:
What are 'both strategies can be used by one languages?
ANSWER:
'relativised noun if often just ‘gapped’ there is a gap where the noun would have been
QUESTION:
What are 'another option is to indicate the noun by including a personal pronoun in the relative clause?
ANSWER:
'relativised noun if often just ‘gapped’ there is a gap where the noun would have been
QUESTION:
What are 'the first option is unusual among languages?
ANSWER:
'what nominals are allowed to be relativised can change
QUESTION:
What are 'in english, if relativisation of a noun occurs, the preposition associated with it may appear in its conventional position within the adjective clause, or before the relative pronoun (if the latter, this is called pipepiping)?
ANSWER:
'what nominals are allowed to be relativised can change
QUESTION:
What are 'We get the Noun Phrase Accessibility Hierarchy from this:?
ANSWER:
'what nominals are allowed to be relativised can change
QUESTION:
What are 'many languages only allow relativisation of a subset of these, e.g. just subject?
ANSWER:
'what nominals are allowed to be relativised can change
QUESTION:
What are 'english allows a lot of constituents to be relativised?
ANSWER:
'what nominals are allowed to be relativised can change
QUESTION:
What are 'Preposition stranding?
ANSWER:
'We get the Noun Phrase Accessibility Hierarchy from this:
QUESTION:
What are 'we have to make two changes to the hierarchy:?
ANSWER:
'We get the Noun Phrase Accessibility Hierarchy from this:
QUESTION:
What are 'some exceptions do apply if more than one strategy is used for relativisation (as in certain strategies lie at different places in the hierarchy)?
ANSWER:
'We get the Noun Phrase Accessibility Hierarchy from this:
QUESTION:
What are 'subject > direct object > oblique > possessor?
ANSWER:
'We get the Noun Phrase Accessibility Hierarchy from this:
QUESTION:
What are 'a given relativisation strategy will cover a contiguous portion of the hierarchy?
ANSWER:
'we have to make two changes to the hierarchy:
QUESTION:
What are 'the subject is always relativizable?
ANSWER:
'we have to make two changes to the hierarchy:
QUESTION:
What are 'e.g. “going into the store” would not be considered a type of relative clause in english!?
ANSWER:
'if there is abundant usage of finite clauses in embedded structures, participle modifiers are best treated independent of relative clauses
QUESTION:
What is the definition of 'real conditions?
ANSWER:
'those that could potentially be fulfilled
QUESTION:
What is the definition of 'Unreal conditions?
ANSWER:
'those that cannot be fulfilled
QUESTION:
What is the definition of 'protasis?
ANSWER:
'“if clause
QUESTION:
What is the definition of 'apodosis?
ANSWER:
'“then clause
QUESTION:
What is the definition of 'we can have multiple embedding of complements too?
ANSWER:
'“I want [to believe [that you are right]]
QUESTION:
What is the definition of 'uses semantic criteria to rate verbs?
ANSWER:
'high control > low control
QUESTION:
What is the definition of 'from high to low?
ANSWER:
'causation, attempt, knowledge, belief, report
QUESTION:
What is the definition of 'entity being modified by noun?
ANSWER:
'head noun or relativised noun
QUESTION:
What is the definition of 'restrictive?
ANSWER:
'restricts noun to be a certain thing (e.g. “My bro who lives next to me called yesterday” you are specifying one bro out of many)
QUESTION:
What is the definition of 'restrictive = restricts noun to be a certain thing (e.g. “My bro who lives next to me called yesterday”?
ANSWER:
'you are specifying one bro out of many)
QUESTION:
What is the definition of 'nonrestrictive?
ANSWER:
'purely descriptive (e.g. “My bro, who lives next to me, called yesterday!” you are just describing the bro)
QUESTION:
'The clause within which the complement is embedding is called' what?
ANSWER:
'the matrix clause
QUESTION:
'The clause within which the complement is embedding' what?
ANSWER:
'is called the matrix clause
QUESTION:
'complement clauses do not always occur' what?
ANSWER:
'as full clauses but instead may arise as phrases headed by non finite verb forms such as infinites and participles
QUESTION:
'we can have' what?
ANSWER:
'multiple embedding of complements too :
QUESTION:
'“ I want' what?
ANSWER:
'[ to believe [ that you are right ] ]
QUESTION:
'“ I want [ to believe [ that you are' what?
ANSWER:
'right ] ]
QUESTION:
'if language is' what?
ANSWER:
'VO , appears at beginning of clause , usually
QUESTION:
What is the definition of 'don’t even need head noun of a relative clause (as in greek?
ANSWER:
'for indefinite constructions)
QUESTION:
What is the definition of 'relativised noun if often just ‘gapped’?
ANSWER:
'there is a gap where the noun would have been
QUESTION:
'provide the situational context for the event or state described' what?
ANSWER:
'in a main clause
QUESTION:
'a lot like nouns , since they often fulfil' what?
ANSWER:
'similar grammatical relations
QUESTION:
'the tighter the dependence between main and subordinate clause , the less likely you will find' what?
ANSWER:
'intonation breaks
QUESTION:
'the subordinator may carry' what?
ANSWER:
'lexical content ( contribute to meaning of the clause ) or not , e.g. “
QUESTION:
'I eat' what?
ANSWER:
'beats because they are in season ” vs
QUESTION:
'I eat beats because they are' what?
ANSWER:
'in season ” vs
QUESTION:
'I hope' what?
ANSWER:
'that I can go
QUESTION:
'sometimes the subordinator can be omitted' what?
ANSWER:
'if it does not carry meaning ( “ I hope I can go ” )
QUESTION:
'sometimes the subordinator can be omitted if it does not carry' what?
ANSWER:
'meaning ( “ I hope I can go ” )
QUESTION:
'sometimes the subordinator can be omitted if it does not carry meaning ( “ I hope' what?
ANSWER:
'I can go ” )
QUESTION:
'sometimes the subordinator can be omitted if it does not carry meaning ( “ I hope I can go' what?
ANSWER:
'” )
QUESTION:
'subordinate structures regularly use' what?
ANSWER:
'a non finite form of the verb
QUESTION:
'languages also produce' what?
ANSWER:
'subordinate structures through nominalisation
QUESTION:
'in this case , the verb is transformed' what?
ANSWER:
'into a nominal through derivational morphology
QUESTION:
'often subordinate clauses use' what?
ANSWER:
'fewer constituents or different word order ( german )
QUESTION:
'often the discourse function of a subordinate construction is' what?
ANSWER:
'one of backgrounding , explanation , or description .
QUESTION:
'many languages do not use' what?
ANSWER:
'this at all , or very rarely hard to classify since they have a breadth of meanings
QUESTION:
'many languages do not use this at all , or very rarely hard to classify since they have' what?
ANSWER:
'a breadth of meanings
QUESTION:
'Some uses' what?
ANSWER:
':
QUESTION:
'provide information about the relative temporal ordering of events often choice of tense in construction is bound' what?
ANSWER:
'in some way by the tense of the main verb ( think primary / secondary sequence in greek )
QUESTION:
'not necessarily typical , although english has' what?
ANSWER:
'lots
QUESTION:
'rare for a language to have a robust set of location subordinators , and instead PPs or relative clauses are used' what?
ANSWER:
'.
QUESTION:
'e.g. “ The police were digging' what?
ANSWER:
'where Jeffrey had planted a garden .
QUESTION:
'e.g. “ The police were digging where Jeffrey had planted' what?
ANSWER:
'a garden .
QUESTION:
'( “ Because x , John did' what?
ANSWER:
'y … .
QUESTION:
'some languages signal' what?
ANSWER:
'difference between enablement and purpose through the mood chosen
QUESTION:
'“ If you ca n’t beat' what?
ANSWER:
'them , join them !
QUESTION:
'Preposition stranding' what?
ANSWER:
'
QUESTION:
'english allows a lot of constituents to be relativised' what?
ANSWER:
'
QUESTION:
'what nominals are allowed to be relativised can change' what?
ANSWER:
'
QUESTION:
'if often just ‘ gapped ’ there is a gap where the noun would have been' what?
ANSWER:
'
QUESTION:
'Unreal conditions = those that can not be fulfilled' what?
ANSWER:
'
QUESTION:
'real conditions = those that could potentially be fulfilled' what?
ANSWER:
'
QUESTION:
'the relative types in english ( and most languages ) are indicated' what?
ANSWER:
'by choices of tense / aspect / mood in protasis and apodosis
QUESTION:
'all languages seem' what?
ANSWER:
'to have some way to indicate contrast between propositions , although not all do so through subordinating structures
QUESTION:
'all languages seem to have some way to indicate contrast between propositions , although not all do' what?
ANSWER:
'so through subordinating structures
QUESTION:
'in those that do use a subordinate structure , use' what?
ANSWER:
'of the subordinating particle appears to be the dominant way to do so
QUESTION:
'in those that do use a subordinate structure , use of the subordinating particle appears' what?
ANSWER:
'to be the dominant way to do so
QUESTION:
'“ Having done y , he did' what?
ANSWER:
'x
QUESTION:
'sometimes the logical connection between two clauses can be left' what?
ANSWER:
'unspecified and the reader / listener allowed to draw their own conclusions .
QUESTION:
'sometimes the logical connection between two clauses can be left unspecified and the reader / listener allowed' what?
ANSWER:
'to draw their own conclusions .
QUESTION:
'a clause that is' what?
ANSWER:
'an argument of a predicate , typically as a subject or direct object
QUESTION:
'When you leave' what?
ANSWER:
'makes no difference to me ” vs
QUESTION:
'I can not believe' what?
ANSWER:
'that you ate the whole thing
QUESTION:
'I can not believe that you ate' what?
ANSWER:
'the whole thing
QUESTION:
'OV languages use' what?
ANSWER:
'both orders with a weak preference for noun + relative clause ordering
QUESTION:
'another option is' what?
ANSWER:
'to indicate the noun by including a personal pronoun in the relative clause
QUESTION:
'both strategies can be used' what?
ANSWER:
'by one languages
QUESTION:
'what nominals are allowed' what?
ANSWER:
'to be relativised can change
QUESTION:
'english allows' what?
ANSWER:
'a lot of constituents to be relativised
QUESTION:
'many languages only allow' what?
ANSWER:
'relativisation of a subset of these , e.g. just subject
QUESTION:
'if language is' what?
ANSWER:
'OV , appears both complement
QUESTION:
'complement type choice has been argued' what?
ANSWER:
'to reflect the semantic relationship of the complement to the matrix clause verb
QUESTION:
'if a point along the scale on the lower end is related' what?
ANSWER:
'to a certain syntactic structure , anything on the left ( with higher control ) will not be associated with a less integrated structure
QUESTION:
'if a point along the scale on the lower end is related to a certain syntactic structure , anything on the left ( with higher control ) will not be associated' what?
ANSWER:
'with a less integrated structure
QUESTION:
'e.g. if a language uses' what?
ANSWER:
'infinitive to encode the complements of belief verbs , you would not expect causation verbs to use finite verbs with complements
QUESTION:
'e.g. if a language uses infinitive to encode the complements of belief verbs , you would not expect' what?
ANSWER:
'causation verbs to use finite verbs with complements
QUESTION:
'however , this tendency is violated' what?
ANSWER:
'by languages , including english .
QUESTION:
'As such it is' what?
ANSWER:
'nothing more than a general tendency
QUESTION:
'Relative Clauses also called' what?
ANSWER:
'adjective clauses
QUESTION:
'if relative clauses are introduced' what?
ANSWER:
'by a special word , they are called relativises or relative pronouns ( if the pronoun specifies some nominal properties )
QUESTION:
'if relative clauses are introduced by a special word , they are called' what?
ANSWER:
'relativises or relative pronouns ( if the pronoun specifies some nominal properties )
QUESTION:
'if relative clauses are introduced by a special word , they are called relativises or relative pronouns ( if the pronoun specifies' what?
ANSWER:
'some nominal properties )
QUESTION:
'restrictive = restricts noun to be a certain thing ( e.g. “ My bro who lives' what?
ANSWER:
'next to me called yesterday ”
QUESTION:
'you are specifying' what?
ANSWER:
'one bro out of many )
QUESTION:
'non restrictive = purely descriptive ( e.g. “ My bro , who lives' what?
ANSWER:
'next to me , called yesterday !
QUESTION:
'” you are just describing' what?
ANSWER:
'the bro )
QUESTION:
'presence of relativisor is' what?
ANSWER:
'not necessary !
QUESTION:
'Japanese just used' what?
ANSWER:
'word order .
QUESTION:
'VO languages use' what?
ANSWER:
'noun + relative clause order
QUESTION:
'in english , if relativisation of a noun occurs , the preposition associated with it may appear in its conventional position within the adjective clause , or before the relative pronoun ( if the latter , this is called' what?
ANSWER:
'pipe piping )
QUESTION:
'We get' what?
ANSWER:
'the Noun Phrase Accessibility Hierarchy from this :
QUESTION:
'subject > direct object > oblique' what?
ANSWER:
'> possessor
QUESTION:
'some exceptions do apply' what?
ANSWER:
'if more than one strategy is used for relativisation ( as in certain strategies lie at different places in the hierarchy )
QUESTION:
'some exceptions do apply if more than one strategy is used' what?
ANSWER:
'for relativisation ( as in certain strategies lie at different places in the hierarchy )
QUESTION:
'we have' what?
ANSWER:
'to make two changes to the hierarchy :
QUESTION:
'the subject is' what?
ANSWER:
'always relativizable
QUESTION:
'a given relativisation strategy will cover' what?
ANSWER:
'a contiguous portion of the hierarchy