<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="ru">
	<id>http://wiki.mipt.ru/index.php?action=history&amp;feed=atom&amp;title=Qformat%2Fcsv</id>
	<title>Qformat/csv - История изменений</title>
	<link rel="self" type="application/atom+xml" href="http://wiki.mipt.ru/index.php?action=history&amp;feed=atom&amp;title=Qformat%2Fcsv"/>
	<link rel="alternate" type="text/html" href="http://wiki.mipt.ru/index.php?title=Qformat/csv&amp;action=history"/>
	<updated>2026-05-06T23:58:29Z</updated>
	<subtitle>История изменений этой страницы в вики</subtitle>
	<generator>MediaWiki 1.42.1</generator>
	<entry>
		<id>http://wiki.mipt.ru/index.php?title=Qformat/csv&amp;diff=10017&amp;oldid=prev</id>
		<title>Олег Давидович: 1 версия импортирована</title>
		<link rel="alternate" type="text/html" href="http://wiki.mipt.ru/index.php?title=Qformat/csv&amp;diff=10017&amp;oldid=prev"/>
		<updated>2024-10-18T06:56:50Z</updated>

		<summary type="html">&lt;p&gt;1 версия импортирована&lt;/p&gt;
&lt;table style=&quot;background-color: #fff; color: #202122;&quot; data-mw=&quot;interface&quot;&gt;
				&lt;tr class=&quot;diff-title&quot; lang=&quot;ru&quot;&gt;
				&lt;td colspan=&quot;1&quot; style=&quot;background-color: #fff; color: #202122; text-align: center;&quot;&gt;← Предыдущая версия&lt;/td&gt;
				&lt;td colspan=&quot;1&quot; style=&quot;background-color: #fff; color: #202122; text-align: center;&quot;&gt;Версия от 06:56, 18 октября 2024&lt;/td&gt;
				&lt;/tr&gt;&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-notice&quot; lang=&quot;ru&quot;&gt;&lt;div class=&quot;mw-diff-empty&quot;&gt;(нет различий)&lt;/div&gt;
&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</summary>
		<author><name>Олег Давидович</name></author>
	</entry>
	<entry>
		<id>http://wiki.mipt.ru/index.php?title=Qformat/csv&amp;diff=10016&amp;oldid=prev</id>
		<title>1&gt;Germanvaleroelizondo: Added see also * qformat/simplecsv</title>
		<link rel="alternate" type="text/html" href="http://wiki.mipt.ru/index.php?title=Qformat/csv&amp;diff=10016&amp;oldid=prev"/>
		<updated>2020-09-01T16:16:02Z</updated>

		<summary type="html">&lt;p&gt;Added see also * &lt;a href=&quot;/index.php?title=Qformat/simplecsv&quot; class=&quot;mw-redirect&quot; title=&quot;Qformat/simplecsv&quot;&gt;qformat/simplecsv&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Новая страница&lt;/b&gt;&lt;/p&gt;&lt;div&gt;{{Infobox plugin&lt;br /&gt;
|type = Question format, CSV format &lt;br /&gt;
|entry = https://moodle.org/plugins/qformat_csv&lt;br /&gt;
|tracker = https://github.com/GopalSharma/moodle-qformat_csv-master/issues&lt;br /&gt;
|discussion = https://github.com/GopalSharma/moodle-qformat_csv-master/issues&lt;br /&gt;
|maintainer = [[User:Gopal Sharma|Gopal Sharma]]&lt;br /&gt;
|float = right&lt;br /&gt;
}}&lt;br /&gt;
The CSV format is a very simple way of creating multiple choice questions using a &amp;#039;&amp;#039;&amp;#039;[[CSV]]&amp;#039;&amp;#039;&amp;#039; (Comma separated value) file. The first line of CSV file must contain the headers separated with commas.&lt;br /&gt;
All the other (except Header) following rows/lines contain details about the question: the question text, four options, and answer(s). Each line will contain all the details about only one question.&lt;br /&gt;
&lt;br /&gt;
IMPORTANT NOTES:&lt;br /&gt;
&lt;br /&gt;
* You have to save the file in a [[CSV]] format. Don&amp;#039;t save it as an Excel document or anything like that.&lt;br /&gt;
* Non-[[ASCII]] characters like &amp;#039;quotes&amp;#039; can cause import errors. To avoid this, always save your text file in [[UTF-8]] encoding (most text editors, even [https://www.libreoffice.org/ Libre Office], will ask you).&lt;br /&gt;
* The Header must be as it is shown in the example below. Everything is case sensitive as shown below; otherwise, the import will fail.&lt;br /&gt;
* &amp;#039;&amp;#039;&amp;#039;&amp;quot;Answer 2&amp;quot;&amp;#039;&amp;#039;&amp;#039; is optional, as of now there can be a maximum of two right answers for one question.&lt;br /&gt;
* If you want to have a comma character (,) inside the &amp;#039;&amp;#039;&amp;#039;question text&amp;#039;&amp;#039;&amp;#039; or in &amp;#039;&amp;#039;&amp;#039;options text&amp;#039;&amp;#039;&amp;#039;,  then you must enclose that text between double quotes (&amp;quot;) like the example below in the 3rd question, where the entire question is enclosed between double quotes like this &amp;#039;&amp;#039;&amp;#039;&amp;quot;3, 4, 7, 8, 11, 12, ... What number should come next?&amp;quot;&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
questiontext,A,B,C,D,Answer 1,Answer 2&lt;br /&gt;
Which command is used to print a file,print,ptr,lpr,none of the mentioned,C,&lt;br /&gt;
The command “mknod myfifo b 4 16”,Will create a block device if user is root,Will create a block device for all users,Will create a FIFO if user is not root,&amp;quot;None ,of the mentioned&amp;quot;,A,B&lt;br /&gt;
&amp;quot;3, 4, 7, 8, 11, 12, ... What number should come next?&amp;quot;,7,10,14,15,D,&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You can also see that the &amp;#039;Answer 2&amp;#039; is optional as the first and third questions have only &amp;#039;&amp;#039;&amp;#039;one answer&amp;#039;&amp;#039;&amp;#039;, whereas the second question has &amp;#039;&amp;#039;&amp;#039;two answers&amp;#039;&amp;#039;&amp;#039;.&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
* [[Import questions]]&lt;br /&gt;
* [[qformat/simplecsv]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Questions]]&lt;br /&gt;
&lt;br /&gt;
[[es:qformat/csv]]&lt;/div&gt;</summary>
		<author><name>1&gt;Germanvaleroelizondo</name></author>
	</entry>
</feed>