Interrogative-Word-Aware Question Generation

Total Page:16

File Type:pdf, Size:1020Kb

Interrogative-Word-Aware Question Generation Let Me Know What to Ask: Interrogative-Word-Aware Question Generation Junmo Kang∗ Haritz Puerto San Roman∗ Sung-Hyon Myaeng School of Computing, KAIST Daejeon, Republic of Korea fjunmo.kang, haritzpuerto94, [email protected] Abstract Question Generation (QG) is a Natural Lan- guage Processing (NLP) task that aids ad- vances in Question Answering (QA) and con- versational assistants. Existing models focus on generating a question based on a text and possibly the answer to the generated question. They need to determine the type of interrog- ative word to be generated while having to pay attention to the grammar and vocabulary Figure 1: High-level overview of the proposed model. of the question. In this work, we propose Interrogative-Word-Aware Question Genera- ingful QG can play a key role in the advances of tion (IWAQG), a pipelined system composed of two modules: an interrogative word classi- QA (Lewis et al., 2019). fier and a QG model. The first module pre- QG is a difficult task due to the need for un- dicts the interrogative word that is provided derstanding of the text to ask about and generat- to the second module to create the question. ing a question that is grammatically correct and Owing to an increased recall of deciding the semantically adequate according to the given text. interrogative words to be used for the gener- This task is considered to have two parts: what ated questions, the proposed model achieves to ask and how to ask. The first one refers to new state-of-the-art results on the task of QG in SQuAD, improving from 46.58 to 47.69 in the identification of relevant portions of the text BLEU-1, 17.55 to 18.53 in BLEU-4, 21.24 to to ask about. This requires machine reading com- 22.33 in METEOR, and from 44.53 to 46.94 prehension since the system has to understand the in ROUGE-L. text. The latter refers to the creation of a natu- ral language question that is grammatically cor- 1 Introduction rect and semantically precise. Most of the current approaches utilize sequence-to-sequence models, Question Generation (QG) is the task of creating composed of an encoder model that first trans- questions about a text in natural language. This forms a passage into a vector and a decoder model is an important task for Question Answering (QA) that given this vector, generates a question about since it can help create QA datasets. It is also use- the passage (Liu et al., 2019; Sun et al., 2018; ful for conversational systems like Amazon Alexa. Zhao et al., 2018; Pan et al., 2019). Due to the surge of interests in these systems, QG There are different settings for QG. Some au- is also drawing the attention of the research com- thors like (Subramanian et al., 2018) assumes that munity. One of the reasons for the fast advances only a passage is given, attempts to find candidate in QA capabilities is the creation of large datasets key phrases that represent the core of the questions like SQuAD (Rajpurkar et al., 2016) and TriviaQA to be created. Others follow an answer-aware set- (Joshi et al., 2017). Since the creation of such ting, where the input is a passage and the answer datasets is either costly if done manually or prone to the question to create (Zhao et al., 2018). We to error if done automatically, reliable and mean- assume this setting and consider that the answer ∗Equal contribution. is a span of the passage, as in SQuAD. Follow- 163 Proceedings of the Second Workshop on Machine Reading for Question Answering, pages 163–171 Hong Kong, China, November 4, 2019. c 2019 Association for Computational Linguistics ing this approach, the decoder of the sequence-to- is the first one to propose an sequence-to-sequence sequence model has to learn to generate both the model to tackle the QG problem and outperformed interrogative word (i.e., wh-word) and the rest of the previous state-of-the-art model using human the question simultaneously. and automatic evaluations. The main claim of our work is that separating Sun et al.(2018) proposed a similar approach to the two tasks (i.e., interrogative-word classifica- us, an answer-aware sequence-to-sequence model tion and question generation) can lead to a bet- with a special decoding mode in charge of only ter performance. We posit that the interrogative the interrogative word. However, we propose to word must be predicted by a well-trained classi- predict the interrogative word before the encoding fier. We consider that selecting the right inter- stage, so that the decoder can focus more on the rogative word is the key to generate high-quality rest of the question rather than on the interrogative questions. For example, a question with a wrong word. Besides, they cannot train the interrogative- interrogative word for the answer “the owner” word classifier using golden labels because it is is: “what produces a list of requirements for a learned implicitly inside the decoder. Duan et al. project?”. However, with the right interrogative (2017) proposed, in a similar way to us, a pipeline word, who, the question would be: “who produces approach. First, the authors create a long list of a list of requirements for a project?”, which is question templates like “who is author of”, and clear that is more adequate regarding the answer “who is wife of”. Then, when generating the ques- than the first one. According to our claim, the tion, they select first the question template and independent classification model can improve the next, they fill it in. To select the question template, recall of interrogative words of a QG model be- they proposed two approaches. One is a retrieval- cause 1) the interrogative word classification task based question pattern prediction, and the second is easier to solve than generating the interroga- one is a generation-based question pattern predic- tive word along with the full question in the QG tion. The first one has the problem that is com- model and 2) the QG model would be able to gen- putationally expensive when the question pattern erate the interrogative word easily by using the size is large, and the second one, although it yields copy mechanism, which can copy parts of the in- to better results, it is a generative approach and put of the encoder. With these hypotheses, we we argue that just modeling the interrogative word propose Interrogative-Word-Aware Question Gen- prediction as a classification task is easier and can eration (IWAQG), a pipelined system composed of lead to better results. As far as we know, we are two modules: an interrogative-word classifier that the first one to propose an explicit interrogative- predicts the interrogative word and a QG model word classifier that provides the interrogative word that generates a question conditioned on the pre- to the question generator. dicted interrogative word. Figure1 shows a high- level overview of our approach. 3 Interrogative-Word-Aware Question The proposed model achieves new state-of-the- Generation art results on the task of QG in SQuAD, improving 3.1 Problem Statement from 46.58 to 47.69 in BLEU-1, 17.55 to 18.53 in P A BLEU-4, 21.24 to 22.33 in METEOR, and from Given a passage , and an answer , we want to Q A 44.53 to 46.94 in ROUGE-L. find a question , whose answer is . More for- mally: 2 Related Work Q = arg max P rob(QjP; A) Question Generation (QG) problem has been ap- Q proached in two ways. One is based on heuristics, We assume that P is a paragraph composed of M templates and syntactic rules (Heilman and Smith, a list of words: P = fxtgt=1, and the answer is a 2010; Mazidi and Nielsen, 2014; Labutov et al., subspan of P . 2015). This type of approach requires a heavy hu- We model this problem with a pipelined ap- man effort, so they do not scale well. The other proach. First, given P and A, we predict the in- approach is based on neural networks and it is be- terrogative word Iw, and then, we input into QG coming popular due to the recent progress of deep module P , A, and Iw. The overall architecture of learning in NLP (Pan et al., 2019). Du et al.(2017) our model is shown in2. 164 Figure 2: Overall architecture of IWAQG. 3.2 Interrogative-Word Classifier are using [CLS] token embedding as a represen- tation of the context and the answer, we consider As discussed in section 5.2, any model can be used that using an explicit entity type embedding of the to predict interrogative words if its accuracy is answer could help the system. high enough. Our interrogative-word classifier is based on BERT, a state-of-the-art model in many 3.3 Question Generator NLP tasks that can successfully utilize the context For the QG module, we employ one of the current to grasp the semantics of the words inside a sen- state-of-the-art QG models (Zhao et al., 2018). tence (Devlin et al., 2018). We input a passage This model is a sequence-to-sequence neural net- that contains the answer of the question we want work that uses a gated self-attention in the encoder to build and add the special token [ANS] to let and an attention mechanism with maxout pointer BERT knows that the answer span has a special in the decoder.
Recommended publications
  • Interrogative Words: an Exercise in Lexical Typology
    Interrogative words: an exercise in lexical typology Michael Cysouw [email protected] Bantu grammer: description and theory 3; Session on question formation in Bantu ZAS Berlin – Friday 13 Februari 2004 1 Introduction Wer, wie, was? Der, die, das! Wieso, weshalb, warum? Wer nicht fragt, bleibt dumm! (German Sesame Street) This is first report on a study of the cross-linguistic diversity of interrogative words.1 The data are only preliminary and far from complete – for most of the languages included I am not sure whether I have really found all interrogative words (the experience with German shows that it is not do easy to collect them all). Further, the sample of languages investigated (see appendix) is not representative of the world’s languages, though it presents a fair collection of genetically and areally diverse languages. I will not say too much about relative frequencies, but mainly collect cases of particular phenomena to establish guidelines for further research. (1) Research questions a. What can be asked by an interrogative word? Which kind of interrogative categories are distinguished in the world’s languages? Do we need more categories than the seven lexicalised categories in English – who, what, which, where, when, why and how? b. Can all attested question words be expressed in all languages? For example, the German interrogative word wievielte is hardly translatable into English ‘how manieth’. c. How do the the interrogative words look like? – Have all interrogative categories own lexicalised/phrasal forms, or are they homonomous with other interrogative categories? For example, English ‘how did you do it?’ and ‘how long is it?’ use the same interrogative word, but this is not universally so.
    [Show full text]
  • Subject-Verb Word-Order in Spanish Interrogatives: a Quantitative Analysis of Puerto Rican Spanish1
    Near-final version (February 2011): under copyright and that the publisher should be contacted for permission to re-use or reprint the material in any form Brown, Esther L. & Javier Rivas. 2011. Subject ~ Verb word-order in Spanish interrogatives: a quantitative analysis of Puerto Rican Spanish. Spanish in Context 8.1, 23–49. Subject-verb word-order in Spanish interrogatives: A quantitative analysis of Puerto Rican Spanish1 Esther L. Brown and Javier Rivas We conduct a quantitative analysis of conversational speech from native speakers of Puerto Rican Spanish to test whether optional non-inversion of subjects in wh-questions (¿qué tú piensas?) is indicative of a movement in Spanish from flexible to rigid word order (Morales 1989; Toribio 2000). We find high rates of subject expression (51%) and a strong preference for SV word order (47%) over VS (4%) in all sentence types, inline with assertions of fixed SVO word order. The usage-based examination of 882 wh-questions shows non-inversion occurs in 14% of the cases (25% of wh- questions containing an overt subject). Variable rule analysis reveals subject, verb and question type significantly constrain interrogative word order, but we find no evidence that word order is predicted by perseveration. SV word order is highest in rhetorical and quotative questions, revealing a pathway of change through which word order is becoming fixed in this variety. Keywords: word order, language change, Caribbean Spanish, interrogative constructions 1. Introduction In typological terms, Spanish is characterized as a flexible SVO language. As has been shown by López Meirama (1997: 72), SVO is the basic word order in Spanish, with the subject preceding the verb in pragmatically unmarked independent declarative clauses with two full NPs (Mallinson & Blake 1981: 125; Siewierska 1988: 8; Comrie 1989).
    [Show full text]
  • The Interrogative Words of Tlingit an Informal Grammatical Study
    The Interrogative Words of Tlingit An Informal Grammatical Study Seth Cable July 2006 Contents 1. Introductory Comments and Acknowledgments p. 4 2. Background Assumptions p. 5 3.The Interrogative Words of Tlingit p. 6 4. Simple Questions in Tlingit p. 6 4.1 The Pre-Predicate Generalization p. 7 4.2 The Preference for the Interrogative Word to be Initial p. 10 4.3 The Generalization that Interrogative Words are Left Peripheral p. 13 4.4 Comparison with Other Languages p. 14 5. Complex Questions and ‘Pied-Piping’ in Tlingit p. 16 6. Multiple Questions and the ‘Superiority Condition’ in Tlingit p. 23 7. Free Relatives and ‘Matching Effects’ in Tlingit p. 30 7.1 The Free Relative Construction in Tlingit p. 30 7.2 Matching Effects in Tlingit Free Relatives p. 36 8. Negative Polarity Indefinites in Tlingit p. 38 8.1 Negative Polarity Indefinites (‘NPI’s) and Interrogative Words p. 38 8.2 Tlingit Interrogative Words as Negative Polarity Indefinites p. 42 8.3 The Use of Interrogative Words in Negated Expressions p. 48 9. Tlingit Interrogative Words as Plain Existentials and Specific Indefinites p. 58 1 9.1 Tlingit Interrogative Words as Plain Existentials p. 58 9.2 Tlingit Interrogative Words as Specific Indefinites p. 62 10. Other Uses of Tlingit Interrogative Words in Non-Interrogative Sentences p. 65 10.1 Question-Based Exclamatives in Tlingit p. 65 10.2 Apparent Uses as Relative Pronouns p. 68 10.3 Concessive Free Relatives in Tlingit p. 74 10.4 Various Other Constructions Containing Waa ‘How’ or Daat ‘What’ p.
    [Show full text]
  • Multi-Word Verbs with the Verb 'Make', and Their Croatian Counterparts
    Multi-word verbs with the verb 'make', and their Croatian counterparts Najdert, Igor Undergraduate thesis / Završni rad 2018 Degree Grantor / Ustanova koja je dodijelila akademski / stručni stupanj: Josip Juraj Strossmayer University of Osijek, Faculty of Humanities and Social Sciences / Sveučilište Josipa Jurja Strossmayera u Osijeku, Filozofski fakultet Permanent link / Trajna poveznica: https://urn.nsk.hr/urn:nbn:hr:142:440686 Rights / Prava: In copyright Download date / Datum preuzimanja: 2021-09-28 Repository / Repozitorij: FFOS-repository - Repository of the Faculty of Humanities and Social Sciences Osijek Sveučilište Josipa Jurja Strossmayera u Osijeku Filozofski fakultet Osijek Studij: Dvopredmetni sveučilišni preddiplomski studij engleskoga jezika i književnosti i hrvatskog jezika i književnosti Igor Najdert Višeriječni glagoli s glagolom make i njihovi hrvatski ekvivalenti Završni rad Mentor: doc. dr. sc. Goran Milić Osijek, 2018 Sveučilište Josipa Jurja Strossmayera u Osijeku Filozofski fakultet Osijek Odsjek za engleski jezik I književnost Studij: Dvopredmetni sveučilišni preddiplomski studij engleskoga jezika i književnosti i hrvatskoga jezika i književnosti Igor Najdert Multi-word verbs with make, and their Croatian counterparts Završni rad Znanstveno područje: humanističke znanosti Znanstveno polje: filologija Znanstvena grana: anglistika Mentor: doc. dr. sc. Goran Milić Osijek, 2018 J.J. Strossmayer University of Osijek Faculty of Humanities and Social Sciences Study Programme: Double Major BA Study Programme in English
    [Show full text]
  • GF Modern Greek Resource Grammar
    GF Modern Greek Resource Grammar Ioanna Papadopoulou University of Gothenburg [email protected] Abstract whilst each of the syntactic parts of the sentence (subject, object, predicate) is a carrier of a certain The paper describes the Modern Greek (MG) case, a fact that allows various word order Grammar, implemented in Grammatical structures. In addition, the language presents a Framework (GF) as part of the Grammatical dynamic syllable stress, whereas its position Framework Resource Grammar Library depends and alternates according to the (RGL). GF is a special-purpose language for morphological variations. Moreover, MG is one multilingual grammar applications. The RGL 1 is a reusable library for dealing with the of the two Indo-European languages that retain a morphology and syntax of a growing number productive synthetic passive formation. In order of natural languages. It is based on the use of to realize passivization, verbs use a second set of an abstract syntax, which is common for all morphological features for each tense. languages, and different concrete syntaxes implemented in GF. Both GF itself and the 2 Grammatical Framework RGL are open-source. RGL currently covers more than 30 languages. MG is the 35th GF (Ranta, 2011) is a special purpose language that is available in the RGL. For the programming language for developing purpose of the implementation, a morphology- multilingual applications. It can be used for driven approach was used, meaning a bottom- building translation systems, multilingual web up method, starting from the formation of gadgets, natural language interfaces, dialogue words before moving to larger units systems and natural language resources.
    [Show full text]
  • Types of Interrogative Sentences an Interrogative Sentence Has the Function of Trying to Get an Answer from the Listener
    Types of Interrogative Sentences An interrogative sentence has the function of trying to get an answer from the listener, with the premise that the speaker is unable to make judgment on the proposition in question. Interrogative sentences can be classified from various points of view. The most basic approach to the classification of interrogative sentences is to sort out the reasons why the judgment is not attainable. Two main types are true-false questions and suppletive questions (interrogative-word questions). True-false questions are asked because whether the proposition is true or false is not known. Examples: Asu, gakkō ni ikimasu ka? ‘Are you going to school tomorrow?’; Anata wa gakusei? ‘Are you a student?’ One can answer a true-false question with a yes/no answer. The speaker asks a suppletive question because there is an unknown component in the proposition, and that the speaker is unable to make judgment. The speaker places an interrogative word in the place of this unknown component, asking the listener to replace the interrogative word with the information on the unknown component. Examples: Kyō wa nani o taberu? ‘What are we going to eat today?’; Itsu ano hito ni atta no? ‘When did you see him?” “Eating something” and “having met him” are presupposed, and the interrogative word expresses the focus of the question. To answer a suppletive question one provides the information on what the unknown component is. In addition to these two main types, there are alternative questions, which are placed in between the two main types as far as the characteristics are concerned.
    [Show full text]
  • Phrasal Imperatives in English
    PSYCHOLOGY AND EDUCATION (2021) 58(3): 1639-1655 ISSN: 00333077 Phrasal Imperatives in English 1Prof. Taiseer Flaiyih Hesan ; 2Teeba Khalid Shehab 1,2 University of Thi-Qar/ College of Education/ Department of English Abstract The present study has both theoretical and practical sides. Theoretically, it sheds light on phrasal imperatives (and hence PIs) as a phenomenon in English. That is, phrasal verbs are multi-word verbs that are generally composed of a verb and a particle. These verbs can be used imperatively instead of single-word verbs to form PIs. This study seeks to answer certain research questions: which form of phrasal verb can be allowed to be used as PIs? which type of phrasal verbs can be used “mostly” as PIs? in which function is the PI most frequent? It is hypothesized that certain forms of phrasal verbs can be used imperatively. Another hypothesis is that certain functions can be mostly realized by PIs. Practically speaking, this study is a corpus-based one. In this respect, corpus linguistics like Corpus of Contemporary American English (And hence COCA) can be regarded as a methodological approach since it is empirical and tends to use computers for analyzing. To fulfill the aims of this study, the researcher chooses twenty-three phrasal verbs which are used as PIs in COCA. These verbs are gathered manually through the wordlists of COCA. Using the technique of Microsoft Office Excel in the corpus analysis, it is concluded that PIs of the affirmative form are mostly used in the corpus data. As for the functions of these PIs, it seems that direct command has the highest occurrences there.
    [Show full text]
  • To Obtain a Picture of Three Stages of the Children's Language Development
    DOCUMENT RESUME ED 025 333 PS 001 494 By- Bellugi. Ursula The Development of Interrogative Structures in Children's Speech. Michigan Univ., Ann Arbor. Center for Human Growth and Development. Spons Agency-National Inst. of Child Health zinc' Human Development. Bethesda Md Repor t No- UM- CHG0- 8 Pub Date 30 Nov 65 Note- 35p EDRS Price MF-$0.25 HC-S1.85 Descriptors- *LanguageDevelopment.LanguageProficiency.LanguageResearch.PreschoolChildren. Psycholinguistics. Speech. StructuralAnalysis.Structural Grammar. Syntax. Transformation Generative Grammar. Verbal Development Identifiers-*Interrogative Structures The verbal behavior of three children was sampled. The samples wereanalyzed to obtain a picture of three stages of the children'slanguage development. specifically the interrogative structures. Each stage was about 4- or5-months long. starting at the 18th to 28th month. depending upon thechild's level of linguistic ability. The interrogative structures of primary interest were (1) intonation patterns. (2) auxiliary inversion. (3) negation. (4) WH word (what. who. why. etc) placement.and (5) tag questions. At stage one. inflections, auxiliaries. articles, and most pronouns were absent. The child used intonation tomark a question. There were no yes-or-no questions and only a few WH queL :ions. There were no tag questions_The child at this stage did not appear to understand the interrogatory structurewhen he heard It. At stage two. articles. pronouns, and negative preverbforms appeared. Auxiliaries were still not present. nor were tag questions. Stage three includedthe emergence of the use of auxiliaries,auxiliary inversion, and the do transformation.Inversion and transformation were found in yes-or-no questions but were absent in WH questions_ Tag questions were still absent.
    [Show full text]
  • A Quick Guide to Spanish Syntax Syntax Is the Order of Words and Phrases That Create a Sentence
    A Quick Guide to Spanish Syntax Syntax is the order of words and phrases that create a sentence. This quick guide will discuss the word pattern for basic Spanish sentences. This order, however, is flexible, which will be demonstrated later in this handout. Because sentences have many elements, such as pronouns, subjects, and verbs, please refer to the following key as you progress through this guide: S = subject O = object IN = interrogative V = verb I = infinitive form of the verb d = direct object pronoun n = negation p = preposition i = indirect object pronoun A = auxillary PP = present progressive Syntax and One-Verb Sentence Constructions Spanish word order follows a Subject-Verb-Object (SVO) pattern. Spanish word order is very similar to English word order, as English also follows SVO pattern. The sentence’s subject is the “doer” of the action; the verb is the action, and the object is the person or thing affected by the action. In addition, when a negation (n) is necessary, the negative is placed before the verb. While English typically adds an auxiliary verb (A), such as a conjugation of to be or to do, to a negation, Spanish does not. SVO Pattern Examples: Positive: English Spanish Maria reads the books. Maria lee los libros. S V O S V O Negative: English Spanish Eduardo does not eat meat. Eduardo no come el carne. S A n V O S n V O Provided by the Academic Center for Excellence 1 A Quick Guide to Spanish Syntax June 2018 Often, the subject in Spanish is implied by the verb conjugation.
    [Show full text]
  • Teaching and Learning Phrasal Verbs: How They Are Presented in Teaching Books, Dictionaries and Mobile Applications, and a Proposal of Possible Alternatives
    FACULTADE DE FILOLOXÍA GRAO EN INGLÉS: ESTUDOS LINGÜÍSTICOS E LITERARIOS Teaching and Learning Phrasal Verbs: How they are presented in teaching books, dictionaries and mobile applications, and a proposal of possible alternatives. Laura de las Mercedes Buján Sánchez June, 2013 1 Table of Contents Abstract ...................................................................................................................................... 5 1. Introduction ............................................................................................................................ 7 2. Multi-word verbs .................................................................................................................... 9 2.1. Phrasal verbs ................................................................................................................. 10 2.1.1. Intransitive phrasal verbs ....................................................................................... 10 2.1.2. Transitive phrasal verbs ......................................................................................... 11 2.2. Prepositional verbs ........................................................................................................ 13 2.2.1. Differences between phrasal verbs and prepositional verbs .................................. 14 2.3. Phrasal-prepositional verbs ........................................................................................... 15 2.4. Other idiomatic verb constructions ..............................................................................
    [Show full text]
  • Exploring Stative Possessives Have Got and Got in American English
    Aino Tuomola Is it got some words to it? Exploring Stative Possessives Have Got and Got in American English Aino Tuomola, 38775 Pro gradu-avhandling i engelska språket och litteraturen Handledare: Brita Wårvik Fakulteten för humaniora, psykologi och teologi Åbo Akademi 2019 Aino Tuomola ÅBO AKADEMI – FACULTY OF ARTS, PSYCHOLOGY AND THEOLOGY Master’s thesis abstract Subject: English Language and Literature Author: Aino Tuomola Title: “Is it got some words to it?”: Exploring Stative Possessives Have got and Got in American English Supervisor: Brita Wårvik Abstract: Stative possessive constructions have gone through immense grammatical changes over the past four centuries, from have to have got, and finally to a stative possessive main verb got. One of the main purposes of this present study is to explain the evolution of the stative possessives have got and got. Further aims of this thesis include examining and mapping the prescriptive grammars surrounding these verbs, as well as introducing, analysing, and comparing the uses of the two possessives. Data for the study consist of three different parts. Firstly, previous research on the development of the possessives is reviewed, discussed, and used as a starting point for introducing a new development hypothesis. Secondly, prescriptive grammars and previous research on the grammar of have got and got are used to formulate and compile a prescriptive grammar. Finally, data extracted from The Corpus of Contemporary American English are used to introduce descriptive grammars for the two possessives, as well as to compare their individual uses. The results support the view that we can regard the development of both possessive have got and got to be due to the process of grammaticalisation, with starting-point in the conventionalisation of a conversational implicature.
    [Show full text]
  • An Analysis of Interrogative Constructions in Dangme
    View metadata, citation and similar papers at core.ac.uk brought to you by CORE provided by International Institute for Science, Technology and Education (IISTE): E-Journals Journal of Literature, Languages and Linguistics www.iiste.org ISSN 2422-8435 An International Peer-reviewed Journal Vol.21, 2016 An Analysis of Interrogative Constructions in Dangme Regina Oforiwah Caesar University of Education, Winneba, College of Languages Education Department of Ga-Dangme Education, P. O. Box 72, Ajumako, Ghana Abstract The aim of this paper is to analyse the various means of marking interrogatives in Dangme that is polar, alternative, affirmative and negative content question. Dangme belongs to the Kwa group of languages from the Niger-Congo family of languages. It is spoken in parts of the Greater Accra and Eastern Regions of Ghana. Not enough work has been done on interrogative structures which are considered to be a vital feature of African languages in Dangme. This paper examines the various kinds of interrogative structures in Dangme. I identified that phonological and morpho-syntactic strategies are employed in the formation of interrogative sentences in Dangme. I argue that syntactic particles such as ‘anɛ, lo’, ‘kɛ…..kɛɛ’, ‘te……. nɛɛ’, ‘mɛnɔ’, ‘mɛni’, ‘jije’ among others, occur at clause initial and clause final positions. I argue further that when the interrogative word or phrase is placed at clause initially, there may be an introduction of a focus marker, nɛ or lɛ which appears immediately after the question word or phrase. The paper considers content questions also referred to us negative WH-Constructions in the literature. This paper also examines negative interrogative sentences.
    [Show full text]