-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathletmepractice_development.sql
422 lines (367 loc) · 102 KB
/
letmepractice_development.sql
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
-- MySQL dump 10.13 Distrib 5.5.37, for debian-linux-gnu (i686)
--
-- Host: localhost Database: letmepractice_development
-- ------------------------------------------------------
-- Server version 5.5.37-0ubuntu0.14.04.1
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
--
-- Table structure for table `centres`
--
DROP TABLE IF EXISTS `centres`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `centres` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`institute_id` int(11) DEFAULT NULL,
`created_at` datetime DEFAULT NULL,
`updated_at` datetime DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `centres`
--
LOCK TABLES `centres` WRITE;
/*!40000 ALTER TABLE `centres` DISABLE KEYS */;
INSERT INTO `centres` VALUES (1,'Bhandup',1,'2014-06-22 15:51:26','2014-06-22 15:51:26');
/*!40000 ALTER TABLE `centres` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `chapters`
--
DROP TABLE IF EXISTS `chapters`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `chapters` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`number` int(11) NOT NULL,
`name` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`standard` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`created_at` datetime DEFAULT NULL,
`updated_at` datetime DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `chapters`
--
LOCK TABLES `chapters` WRITE;
/*!40000 ALTER TABLE `chapters` DISABLE KEYS */;
INSERT INTO `chapters` VALUES (1,1,'Web Publishing','SYJC','2014-06-22 15:51:32','2014-06-22 15:51:32'),(2,2,'Cyber Laws and Ethics','SYJC','2014-06-22 15:51:32','2014-06-22 15:51:32'),(3,3,'E-Commerce','SYJC','2014-06-22 15:51:32','2014-06-22 15:51:32'),(4,4,'Introduction To Networking','SYJC','2014-06-22 15:51:32','2014-06-22 15:51:32'),(5,5,'Data Management using Access','SYJC','2014-06-22 15:51:32','2014-06-22 15:51:32'),(6,6,'Tally','SYJC','2014-06-22 15:51:32','2014-06-22 15:51:32');
/*!40000 ALTER TABLE `chapters` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `institutes`
--
DROP TABLE IF EXISTS `institutes`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `institutes` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`logo_file_name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`logo_content_type` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`logo_file_size` int(11) DEFAULT NULL,
`logo_updated_at` datetime DEFAULT NULL,
`email` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`contact_no` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`website` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`is_coaching_class` tinyint(1) DEFAULT '0',
`created_at` datetime DEFAULT NULL,
`updated_at` datetime DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `institutes`
--
LOCK TABLES `institutes` WRITE;
/*!40000 ALTER TABLE `institutes` DISABLE KEYS */;
INSERT INTO `institutes` VALUES (1,'Let.Me.Practice',NULL,NULL,NULL,NULL,'[email protected]','9833664934','http://letmepractice.com',0,'2014-06-22 15:51:26','2014-06-22 15:51:26');
/*!40000 ALTER TABLE `institutes` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `option_banks`
--
DROP TABLE IF EXISTS `option_banks`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `option_banks` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`key` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`value` int(11) DEFAULT NULL,
`question_bank_id` int(11) DEFAULT NULL,
`created_at` datetime DEFAULT NULL,
`updated_at` datetime DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `option_banks`
--
LOCK TABLES `option_banks` WRITE;
/*!40000 ALTER TABLE `option_banks` DISABLE KEYS */;
/*!40000 ALTER TABLE `option_banks` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `options`
--
DROP TABLE IF EXISTS `options`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `options` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`key` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`value` int(11) DEFAULT NULL,
`question_id` int(11) DEFAULT NULL,
`created_at` datetime DEFAULT NULL,
`updated_at` datetime DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=418 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `options`
--
LOCK TABLES `options` WRITE;
/*!40000 ALTER TABLE `options` DISABLE KEYS */;
INSERT INTO `options` VALUES (1,'<FRAMESET>',1,1,'2014-06-22 16:53:06','2014-06-22 16:53:06'),(2,'<NOFRAME>',1,2,'2014-06-22 16:53:06','2014-06-22 16:53:06'),(3,'SRC',1,3,'2014-06-22 16:53:06','2014-06-22 16:53:06'),(4,'Accountig Software',1,4,'2014-06-22 16:53:06','2014-06-22 16:53:06'),(5,'ethics',1,5,'2014-06-22 16:53:06','2014-06-22 16:53:06'),(6,'moral',1,6,'2014-06-22 16:53:06','2014-06-22 16:53:06'),(7,'E-Commerce',1,7,'2014-06-22 16:53:07','2014-06-22 16:53:07'),(8,'Paperless',1,8,'2014-06-22 16:53:07','2014-06-22 16:53:07'),(9,'Star',1,9,'2014-06-22 16:53:07','2014-06-22 16:53:07'),(10,'Tree',1,10,'2014-06-22 16:53:07','2014-06-22 16:53:07'),(11,'true',1,11,'2014-06-22 16:53:07','2014-06-22 16:53:07'),(12,'true',1,12,'2014-06-22 16:53:07','2014-06-22 16:53:07'),(13,'true',1,13,'2014-06-22 16:53:07','2014-06-22 16:53:07'),(14,'false',1,14,'2014-06-22 16:53:07','2014-06-22 16:53:07'),(15,'false',1,15,'2014-06-22 16:53:07','2014-06-22 16:53:07'),(16,'false',1,16,'2014-06-22 16:53:07','2014-06-22 16:53:07'),(17,'1.0',1,17,'2014-06-22 16:53:08','2014-06-22 16:53:08'),(18,'false',1,18,'2014-06-22 16:53:08','2014-06-22 16:53:08'),(19,'1.0',1,19,'2014-06-22 16:53:08','2014-06-22 16:53:08'),(20,'0.0',1,20,'2014-06-22 16:53:08','2014-06-22 16:53:08'),(21,'a',1,21,'2014-06-22 16:53:08','2014-06-22 16:53:08'),(22,'b',0,21,'2014-06-22 16:53:08','2014-06-22 16:53:08'),(23,'c',0,21,'2014-06-22 16:53:08','2014-06-22 16:53:08'),(24,'d',0,21,'2014-06-22 16:53:08','2014-06-22 16:53:08'),(25,'a',0,22,'2014-06-22 16:53:08','2014-06-22 16:53:08'),(26,'b',0,22,'2014-06-22 16:53:08','2014-06-22 16:53:08'),(27,'c',1,22,'2014-06-22 16:53:08','2014-06-22 16:53:08'),(28,'d',0,22,'2014-06-22 16:53:08','2014-06-22 16:53:08'),(29,'a',0,23,'2014-06-22 16:53:09','2014-06-22 16:53:09'),(30,'b',0,23,'2014-06-22 16:53:09','2014-06-22 16:53:09'),(31,'c',0,23,'2014-06-22 16:53:09','2014-06-22 16:53:09'),(32,'d',1,23,'2014-06-22 16:53:09','2014-06-22 16:53:09'),(33,'a',0,24,'2014-06-22 16:53:09','2014-06-22 16:53:09'),(34,'b',1,24,'2014-06-22 16:53:09','2014-06-22 16:53:09'),(35,'c',0,24,'2014-06-22 16:53:09','2014-06-22 16:53:09'),(36,'d',0,24,'2014-06-22 16:53:09','2014-06-22 16:53:09'),(37,'a',0,25,'2014-06-22 16:53:09','2014-06-22 16:53:09'),(38,'b',0,25,'2014-06-22 16:53:09','2014-06-22 16:53:09'),(39,'c',1,25,'2014-06-22 16:53:09','2014-06-22 16:53:09'),(40,'d',0,25,'2014-06-22 16:53:09','2014-06-22 16:53:09'),(41,'a',1,26,'2014-06-22 16:53:09','2014-06-22 16:53:09'),(42,'b',0,26,'2014-06-22 16:53:09','2014-06-22 16:53:09'),(43,'c',0,26,'2014-06-22 16:53:09','2014-06-22 16:53:09'),(44,'d',0,26,'2014-06-22 16:53:09','2014-06-22 16:53:09'),(45,'a',0,27,'2014-06-22 16:53:10','2014-06-22 16:53:10'),(46,'b',1,27,'2014-06-22 16:53:10','2014-06-22 16:53:10'),(47,'c',0,27,'2014-06-22 16:53:10','2014-06-22 16:53:10'),(48,'d',0,27,'2014-06-22 16:53:10','2014-06-22 16:53:10'),(49,'a',0,28,'2014-06-22 16:53:10','2014-06-22 16:53:10'),(50,'b',0,28,'2014-06-22 16:53:10','2014-06-22 16:53:10'),(51,'c',1,28,'2014-06-22 16:53:10','2014-06-22 16:53:10'),(52,'d',0,28,'2014-06-22 16:53:10','2014-06-22 16:53:10'),(53,'a',0,29,'2014-06-22 16:53:10','2014-06-22 16:53:10'),(54,'b',0,29,'2014-06-22 16:53:10','2014-06-22 16:53:10'),(55,'c',0,29,'2014-06-22 16:53:10','2014-06-22 16:53:10'),(56,'d',1,29,'2014-06-22 16:53:10','2014-06-22 16:53:10'),(57,'a',0,30,'2014-06-22 16:53:10','2014-06-22 16:53:10'),(58,'b',1,30,'2014-06-22 16:53:10','2014-06-22 16:53:10'),(59,'c',0,30,'2014-06-22 16:53:10','2014-06-22 16:53:10'),(60,'d',0,30,'2014-06-22 16:53:10','2014-06-22 16:53:10'),(61,'a',0,31,'2014-06-22 16:53:10','2014-06-22 16:53:10'),(62,'b',0,31,'2014-06-22 16:53:10','2014-06-22 16:53:10'),(63,'c',1,31,'2014-06-22 16:53:11','2014-06-22 16:53:11'),(64,'d',0,31,'2014-06-22 16:53:11','2014-06-22 16:53:11'),(65,'a',0,32,'2014-06-22 16:53:11','2014-06-22 16:53:11'),(66,'b',0,32,'2014-06-22 16:53:11','2014-06-22 16:53:11'),(67,'c',0,32,'2014-06-22 16:53:11','2014-06-22 16:53:11'),(68,'d',1,32,'2014-06-22 16:53:11','2014-06-22 16:53:11'),(69,'a',1,33,'2014-06-22 16:53:11','2014-06-22 16:53:11'),(70,'b',0,33,'2014-06-22 16:53:11','2014-06-22 16:53:11'),(71,'c',0,33,'2014-06-22 16:53:11','2014-06-22 16:53:11'),(72,'d',0,33,'2014-06-22 16:53:11','2014-06-22 16:53:11'),(73,'a',0,34,'2014-06-22 16:53:11','2014-06-22 16:53:11'),(74,'b',1,34,'2014-06-22 16:53:11','2014-06-22 16:53:11'),(75,'c',0,34,'2014-06-22 16:53:11','2014-06-22 16:53:11'),(76,'d',0,34,'2014-06-22 16:53:11','2014-06-22 16:53:11'),(77,'a',0,35,'2014-06-22 16:53:11','2014-06-22 16:53:11'),(78,'b',0,35,'2014-06-22 16:53:12','2014-06-22 16:53:12'),(79,'c',1,35,'2014-06-22 16:53:12','2014-06-22 16:53:12'),(80,'d',0,35,'2014-06-22 16:53:12','2014-06-22 16:53:12'),(81,'a',0,36,'2014-06-22 16:53:12','2014-06-22 16:53:12'),(82,'b',0,36,'2014-06-22 16:53:12','2014-06-22 16:53:12'),(83,'c',0,36,'2014-06-22 16:53:12','2014-06-22 16:53:12'),(84,'d',1,36,'2014-06-22 16:53:12','2014-06-22 16:53:12'),(85,'a',1,37,'2014-06-22 16:53:12','2014-06-22 16:53:12'),(86,'b',0,37,'2014-06-22 16:53:12','2014-06-22 16:53:12'),(87,'c',0,37,'2014-06-22 16:53:12','2014-06-22 16:53:12'),(88,'d',0,37,'2014-06-22 16:53:12','2014-06-22 16:53:12'),(89,'a',0,38,'2014-06-22 16:53:12','2014-06-22 16:53:12'),(90,'b',1,38,'2014-06-22 16:53:12','2014-06-22 16:53:12'),(91,'c',0,38,'2014-06-22 16:53:12','2014-06-22 16:53:12'),(92,'d',0,38,'2014-06-22 16:53:12','2014-06-22 16:53:12'),(93,'a',0,39,'2014-06-22 16:53:12','2014-06-22 16:53:12'),(94,'b',0,39,'2014-06-22 16:53:12','2014-06-22 16:53:12'),(95,'c',1,39,'2014-06-22 16:53:12','2014-06-22 16:53:12'),(96,'d',0,39,'2014-06-22 16:53:12','2014-06-22 16:53:12'),(97,'a',0,40,'2014-06-22 16:53:13','2014-06-22 16:53:13'),(98,'b',0,40,'2014-06-22 16:53:13','2014-06-22 16:53:13'),(99,'c',0,40,'2014-06-22 16:53:13','2014-06-22 16:53:13'),(100,'d',1,40,'2014-06-22 16:53:13','2014-06-22 16:53:13'),(101,'a',1,41,'2014-06-22 16:53:13','2014-06-22 16:53:13'),(102,'b',0,41,'2014-06-22 16:53:13','2014-06-22 16:53:13'),(103,'c',1,41,'2014-06-22 16:53:13','2014-06-22 16:53:13'),(104,'d',0,41,'2014-06-22 16:53:13','2014-06-22 16:53:13'),(105,'e',0,41,'2014-06-22 16:53:13','2014-06-22 16:53:13'),(106,'a',0,42,'2014-06-22 16:53:13','2014-06-22 16:53:13'),(107,'b',0,42,'2014-06-22 16:53:13','2014-06-22 16:53:13'),(108,'c',1,42,'2014-06-22 16:53:13','2014-06-22 16:53:13'),(109,'d',0,42,'2014-06-22 16:53:13','2014-06-22 16:53:13'),(110,'e',1,42,'2014-06-22 16:53:13','2014-06-22 16:53:13'),(111,'a',0,43,'2014-06-22 16:53:13','2014-06-22 16:53:13'),(112,'b',1,43,'2014-06-22 16:53:13','2014-06-22 16:53:13'),(113,'c',0,43,'2014-06-22 16:53:14','2014-06-22 16:53:14'),(114,'d',1,43,'2014-06-22 16:53:14','2014-06-22 16:53:14'),(115,'e',0,43,'2014-06-22 16:53:14','2014-06-22 16:53:14'),(116,'a',0,44,'2014-06-22 16:53:14','2014-06-22 16:53:14'),(117,'b',0,44,'2014-06-22 16:53:14','2014-06-22 16:53:14'),(118,'c',1,44,'2014-06-22 16:53:14','2014-06-22 16:53:14'),(119,'d',0,44,'2014-06-22 16:53:14','2014-06-22 16:53:14'),(120,'e',1,44,'2014-06-22 16:53:14','2014-06-22 16:53:14'),(121,'a',0,45,'2014-06-22 16:53:14','2014-06-22 16:53:14'),(122,'b',1,45,'2014-06-22 16:53:14','2014-06-22 16:53:14'),(123,'c',0,45,'2014-06-22 16:53:14','2014-06-22 16:53:14'),(124,'d',1,45,'2014-06-22 16:53:14','2014-06-22 16:53:14'),(125,'e',0,45,'2014-06-22 16:53:14','2014-06-22 16:53:14'),(126,'a',1,46,'2014-06-22 16:53:14','2014-06-22 16:53:14'),(127,'b',0,46,'2014-06-22 16:53:14','2014-06-22 16:53:14'),(128,'c',1,46,'2014-06-22 16:53:14','2014-06-22 16:53:14'),(129,'d',0,46,'2014-06-22 16:53:14','2014-06-22 16:53:14'),(130,'e',1,46,'2014-06-22 16:53:14','2014-06-22 16:53:14'),(131,'f',0,46,'2014-06-22 16:53:15','2014-06-22 16:53:15'),(132,'a',0,47,'2014-06-22 16:53:15','2014-06-22 16:53:15'),(133,'b',1,47,'2014-06-22 16:53:15','2014-06-22 16:53:15'),(134,'c',0,47,'2014-06-22 16:53:15','2014-06-22 16:53:15'),(135,'d',1,47,'2014-06-22 16:53:15','2014-06-22 16:53:15'),(136,'e',0,47,'2014-06-22 16:53:15','2014-06-22 16:53:15'),(137,'f',0,47,'2014-06-22 16:53:15','2014-06-22 16:53:15'),(138,'abdc',2,48,'2014-06-22 16:53:15','2014-06-22 16:53:15'),(139,'geadfbc',2,49,'2014-06-22 16:53:15','2014-06-22 16:53:15'),(140,'<FRAMESET>',1,55,'2014-06-22 16:54:15','2014-06-22 16:54:15'),(141,'<NOFRAME>',1,56,'2014-06-22 16:54:16','2014-06-22 16:54:16'),(142,'SRC',1,57,'2014-06-22 16:54:16','2014-06-22 16:54:16'),(143,'Accountig Software',1,58,'2014-06-22 16:54:16','2014-06-22 16:54:16'),(144,'ethics',1,59,'2014-06-22 16:54:16','2014-06-22 16:54:16'),(145,'moral',1,60,'2014-06-22 16:54:16','2014-06-22 16:54:16'),(146,'E-Commerce',1,61,'2014-06-22 16:54:16','2014-06-22 16:54:16'),(147,'Paperless',1,62,'2014-06-22 16:54:16','2014-06-22 16:54:16'),(148,'Star',1,63,'2014-06-22 16:54:16','2014-06-22 16:54:16'),(149,'Tree',1,64,'2014-06-22 16:54:16','2014-06-22 16:54:16'),(150,'true',1,65,'2014-06-22 16:54:17','2014-06-22 16:54:17'),(151,'true',1,66,'2014-06-22 16:54:17','2014-06-22 16:54:17'),(152,'true',1,67,'2014-06-22 16:54:17','2014-06-22 16:54:17'),(153,'false',1,68,'2014-06-22 16:54:17','2014-06-22 16:54:17'),(154,'false',1,69,'2014-06-22 16:54:17','2014-06-22 16:54:17'),(155,'false',1,70,'2014-06-22 16:54:17','2014-06-22 16:54:17'),(156,'1.0',1,71,'2014-06-22 16:54:17','2014-06-22 16:54:17'),(157,'false',1,72,'2014-06-22 16:54:17','2014-06-22 16:54:17'),(158,'1.0',1,73,'2014-06-22 16:54:17','2014-06-22 16:54:17'),(159,'0.0',1,74,'2014-06-22 16:54:17','2014-06-22 16:54:17'),(160,'a',1,75,'2014-06-22 16:54:18','2014-06-22 16:54:18'),(161,'b',0,75,'2014-06-22 16:54:18','2014-06-22 16:54:18'),(162,'c',0,75,'2014-06-22 16:54:18','2014-06-22 16:54:18'),(163,'d',0,75,'2014-06-22 16:54:18','2014-06-22 16:54:18'),(164,'a',0,76,'2014-06-22 16:54:18','2014-06-22 16:54:18'),(165,'b',0,76,'2014-06-22 16:54:18','2014-06-22 16:54:18'),(166,'c',1,76,'2014-06-22 16:54:18','2014-06-22 16:54:18'),(167,'d',0,76,'2014-06-22 16:54:18','2014-06-22 16:54:18'),(168,'a',0,77,'2014-06-22 16:54:18','2014-06-22 16:54:18'),(169,'b',0,77,'2014-06-22 16:54:18','2014-06-22 16:54:18'),(170,'c',0,77,'2014-06-22 16:54:18','2014-06-22 16:54:18'),(171,'d',1,77,'2014-06-22 16:54:18','2014-06-22 16:54:18'),(172,'a',0,78,'2014-06-22 16:54:18','2014-06-22 16:54:18'),(173,'b',1,78,'2014-06-22 16:54:18','2014-06-22 16:54:18'),(174,'c',0,78,'2014-06-22 16:54:18','2014-06-22 16:54:18'),(175,'d',0,78,'2014-06-22 16:54:18','2014-06-22 16:54:18'),(176,'a',0,79,'2014-06-22 16:54:18','2014-06-22 16:54:18'),(177,'b',0,79,'2014-06-22 16:54:18','2014-06-22 16:54:18'),(178,'c',1,79,'2014-06-22 16:54:19','2014-06-22 16:54:19'),(179,'d',0,79,'2014-06-22 16:54:19','2014-06-22 16:54:19'),(180,'a',1,80,'2014-06-22 16:54:19','2014-06-22 16:54:19'),(181,'b',0,80,'2014-06-22 16:54:19','2014-06-22 16:54:19'),(182,'c',0,80,'2014-06-22 16:54:19','2014-06-22 16:54:19'),(183,'d',0,80,'2014-06-22 16:54:19','2014-06-22 16:54:19'),(184,'a',0,81,'2014-06-22 16:54:19','2014-06-22 16:54:19'),(185,'b',1,81,'2014-06-22 16:54:19','2014-06-22 16:54:19'),(186,'c',0,81,'2014-06-22 16:54:19','2014-06-22 16:54:19'),(187,'d',0,81,'2014-06-22 16:54:19','2014-06-22 16:54:19'),(188,'a',0,82,'2014-06-22 16:54:19','2014-06-22 16:54:19'),(189,'b',0,82,'2014-06-22 16:54:19','2014-06-22 16:54:19'),(190,'c',1,82,'2014-06-22 16:54:19','2014-06-22 16:54:19'),(191,'d',0,82,'2014-06-22 16:54:19','2014-06-22 16:54:19'),(192,'a',0,83,'2014-06-22 16:54:19','2014-06-22 16:54:19'),(193,'b',0,83,'2014-06-22 16:54:19','2014-06-22 16:54:19'),(194,'c',0,83,'2014-06-22 16:54:19','2014-06-22 16:54:19'),(195,'d',1,83,'2014-06-22 16:54:19','2014-06-22 16:54:19'),(196,'a',0,84,'2014-06-22 16:54:20','2014-06-22 16:54:20'),(197,'b',1,84,'2014-06-22 16:54:20','2014-06-22 16:54:20'),(198,'c',0,84,'2014-06-22 16:54:20','2014-06-22 16:54:20'),(199,'d',0,84,'2014-06-22 16:54:20','2014-06-22 16:54:20'),(200,'a',0,85,'2014-06-22 16:54:20','2014-06-22 16:54:20'),(201,'b',0,85,'2014-06-22 16:54:20','2014-06-22 16:54:20'),(202,'c',1,85,'2014-06-22 16:54:20','2014-06-22 16:54:20'),(203,'d',0,85,'2014-06-22 16:54:20','2014-06-22 16:54:20'),(204,'a',0,86,'2014-06-22 16:54:20','2014-06-22 16:54:20'),(205,'b',0,86,'2014-06-22 16:54:20','2014-06-22 16:54:20'),(206,'c',0,86,'2014-06-22 16:54:20','2014-06-22 16:54:20'),(207,'d',1,86,'2014-06-22 16:54:20','2014-06-22 16:54:20'),(208,'a',1,87,'2014-06-22 16:54:20','2014-06-22 16:54:20'),(209,'b',0,87,'2014-06-22 16:54:20','2014-06-22 16:54:20'),(210,'c',0,87,'2014-06-22 16:54:20','2014-06-22 16:54:20'),(211,'d',0,87,'2014-06-22 16:54:20','2014-06-22 16:54:20'),(212,'a',0,88,'2014-06-22 16:54:20','2014-06-22 16:54:20'),(213,'b',1,88,'2014-06-22 16:54:21','2014-06-22 16:54:21'),(214,'c',0,88,'2014-06-22 16:54:21','2014-06-22 16:54:21'),(215,'d',0,88,'2014-06-22 16:54:21','2014-06-22 16:54:21'),(216,'a',0,89,'2014-06-22 16:54:21','2014-06-22 16:54:21'),(217,'b',0,89,'2014-06-22 16:54:21','2014-06-22 16:54:21'),(218,'c',1,89,'2014-06-22 16:54:21','2014-06-22 16:54:21'),(219,'d',0,89,'2014-06-22 16:54:21','2014-06-22 16:54:21'),(220,'a',0,90,'2014-06-22 16:54:21','2014-06-22 16:54:21'),(221,'b',0,90,'2014-06-22 16:54:21','2014-06-22 16:54:21'),(222,'c',0,90,'2014-06-22 16:54:21','2014-06-22 16:54:21'),(223,'d',1,90,'2014-06-22 16:54:21','2014-06-22 16:54:21'),(224,'a',1,91,'2014-06-22 16:54:21','2014-06-22 16:54:21'),(225,'b',0,91,'2014-06-22 16:54:21','2014-06-22 16:54:21'),(226,'c',0,91,'2014-06-22 16:54:21','2014-06-22 16:54:21'),(227,'d',0,91,'2014-06-22 16:54:21','2014-06-22 16:54:21'),(228,'a',0,92,'2014-06-22 16:54:22','2014-06-22 16:54:22'),(229,'b',1,92,'2014-06-22 16:54:22','2014-06-22 16:54:22'),(230,'c',0,92,'2014-06-22 16:54:22','2014-06-22 16:54:22'),(231,'d',0,92,'2014-06-22 16:54:22','2014-06-22 16:54:22'),(232,'a',0,93,'2014-06-22 16:54:22','2014-06-22 16:54:22'),(233,'b',0,93,'2014-06-22 16:54:22','2014-06-22 16:54:22'),(234,'c',1,93,'2014-06-22 16:54:22','2014-06-22 16:54:22'),(235,'d',0,93,'2014-06-22 16:54:22','2014-06-22 16:54:22'),(236,'a',0,94,'2014-06-22 16:54:22','2014-06-22 16:54:22'),(237,'b',0,94,'2014-06-22 16:54:22','2014-06-22 16:54:22'),(238,'c',0,94,'2014-06-22 16:54:22','2014-06-22 16:54:22'),(239,'d',1,94,'2014-06-22 16:54:22','2014-06-22 16:54:22'),(240,'a',1,95,'2014-06-22 16:54:22','2014-06-22 16:54:22'),(241,'b',0,95,'2014-06-22 16:54:22','2014-06-22 16:54:22'),(242,'c',1,95,'2014-06-22 16:54:22','2014-06-22 16:54:22'),(243,'d',0,95,'2014-06-22 16:54:22','2014-06-22 16:54:22'),(244,'e',0,95,'2014-06-22 16:54:22','2014-06-22 16:54:22'),(245,'a',0,96,'2014-06-22 16:54:23','2014-06-22 16:54:23'),(246,'b',0,96,'2014-06-22 16:54:23','2014-06-22 16:54:23'),(247,'c',1,96,'2014-06-22 16:54:23','2014-06-22 16:54:23'),(248,'d',0,96,'2014-06-22 16:54:23','2014-06-22 16:54:23'),(249,'e',1,96,'2014-06-22 16:54:23','2014-06-22 16:54:23'),(250,'a',0,97,'2014-06-22 16:54:23','2014-06-22 16:54:23'),(251,'b',1,97,'2014-06-22 16:54:23','2014-06-22 16:54:23'),(252,'c',0,97,'2014-06-22 16:54:23','2014-06-22 16:54:23'),(253,'d',1,97,'2014-06-22 16:54:23','2014-06-22 16:54:23'),(254,'e',0,97,'2014-06-22 16:54:23','2014-06-22 16:54:23'),(255,'a',0,98,'2014-06-22 16:54:23','2014-06-22 16:54:23'),(256,'b',0,98,'2014-06-22 16:54:23','2014-06-22 16:54:23'),(257,'c',1,98,'2014-06-22 16:54:23','2014-06-22 16:54:23'),(258,'d',0,98,'2014-06-22 16:54:23','2014-06-22 16:54:23'),(259,'e',1,98,'2014-06-22 16:54:23','2014-06-22 16:54:23'),(260,'a',0,99,'2014-06-22 16:54:24','2014-06-22 16:54:24'),(261,'b',1,99,'2014-06-22 16:54:24','2014-06-22 16:54:24'),(262,'c',0,99,'2014-06-22 16:54:24','2014-06-22 16:54:24'),(263,'d',1,99,'2014-06-22 16:54:24','2014-06-22 16:54:24'),(264,'e',0,99,'2014-06-22 16:54:24','2014-06-22 16:54:24'),(265,'a',1,100,'2014-06-22 16:54:24','2014-06-22 16:54:24'),(266,'b',0,100,'2014-06-22 16:54:24','2014-06-22 16:54:24'),(267,'c',1,100,'2014-06-22 16:54:24','2014-06-22 16:54:24'),(268,'d',0,100,'2014-06-22 16:54:24','2014-06-22 16:54:24'),(269,'e',1,100,'2014-06-22 16:54:24','2014-06-22 16:54:24'),(270,'f',0,100,'2014-06-22 16:54:24','2014-06-22 16:54:24'),(271,'a',0,101,'2014-06-22 16:54:24','2014-06-22 16:54:24'),(272,'b',1,101,'2014-06-22 16:54:24','2014-06-22 16:54:24'),(273,'c',0,101,'2014-06-22 16:54:24','2014-06-22 16:54:24'),(274,'d',1,101,'2014-06-22 16:54:24','2014-06-22 16:54:24'),(275,'e',0,101,'2014-06-22 16:54:24','2014-06-22 16:54:24'),(276,'f',0,101,'2014-06-22 16:54:24','2014-06-22 16:54:24'),(277,'abdc',2,102,'2014-06-22 16:54:25','2014-06-22 16:54:25'),(278,'geadfbc',2,103,'2014-06-22 16:54:25','2014-06-22 16:54:25'),(279,'<FRAMESET>',1,109,'2014-06-22 16:55:20','2014-06-22 16:55:20'),(280,'<NOFRAME>',1,110,'2014-06-22 16:55:20','2014-06-22 16:55:20'),(281,'SRC',1,111,'2014-06-22 16:55:20','2014-06-22 16:55:20'),(282,'Accountig Software',1,112,'2014-06-22 16:55:20','2014-06-22 16:55:20'),(283,'ethics',1,113,'2014-06-22 16:55:20','2014-06-22 16:55:20'),(284,'moral',1,114,'2014-06-22 16:55:21','2014-06-22 16:55:21'),(285,'E-Commerce',1,115,'2014-06-22 16:55:21','2014-06-22 16:55:21'),(286,'Paperless',1,116,'2014-06-22 16:55:21','2014-06-22 16:55:21'),(287,'Star',1,117,'2014-06-22 16:55:21','2014-06-22 16:55:21'),(288,'Tree',1,118,'2014-06-22 16:55:21','2014-06-22 16:55:21'),(289,'true',1,119,'2014-06-22 16:55:21','2014-06-22 16:55:21'),(290,'true',1,120,'2014-06-22 16:55:21','2014-06-22 16:55:21'),(291,'true',1,121,'2014-06-22 16:55:21','2014-06-22 16:55:21'),(292,'false',1,122,'2014-06-22 16:55:21','2014-06-22 16:55:21'),(293,'false',1,123,'2014-06-22 16:55:21','2014-06-22 16:55:21'),(294,'false',1,124,'2014-06-22 16:55:21','2014-06-22 16:55:21'),(295,'1.0',1,125,'2014-06-22 16:55:22','2014-06-22 16:55:22'),(296,'false',1,126,'2014-06-22 16:55:22','2014-06-22 16:55:22'),(297,'1.0',1,127,'2014-06-22 16:55:22','2014-06-22 16:55:22'),(298,'0.0',1,128,'2014-06-22 16:55:22','2014-06-22 16:55:22'),(299,'a',1,129,'2014-06-22 16:55:22','2014-06-22 16:55:22'),(300,'b',0,129,'2014-06-22 16:55:22','2014-06-22 16:55:22'),(301,'c',0,129,'2014-06-22 16:55:22','2014-06-22 16:55:22'),(302,'d',0,129,'2014-06-22 16:55:22','2014-06-22 16:55:22'),(303,'a',0,130,'2014-06-22 16:55:22','2014-06-22 16:55:22'),(304,'b',0,130,'2014-06-22 16:55:22','2014-06-22 16:55:22'),(305,'c',1,130,'2014-06-22 16:55:22','2014-06-22 16:55:22'),(306,'d',0,130,'2014-06-22 16:55:22','2014-06-22 16:55:22'),(307,'a',0,131,'2014-06-22 16:55:23','2014-06-22 16:55:23'),(308,'b',0,131,'2014-06-22 16:55:23','2014-06-22 16:55:23'),(309,'c',0,131,'2014-06-22 16:55:23','2014-06-22 16:55:23'),(310,'d',1,131,'2014-06-22 16:55:23','2014-06-22 16:55:23'),(311,'a',0,132,'2014-06-22 16:55:23','2014-06-22 16:55:23'),(312,'b',1,132,'2014-06-22 16:55:23','2014-06-22 16:55:23'),(313,'c',0,132,'2014-06-22 16:55:23','2014-06-22 16:55:23'),(314,'d',0,132,'2014-06-22 16:55:23','2014-06-22 16:55:23'),(315,'a',0,133,'2014-06-22 16:55:23','2014-06-22 16:55:23'),(316,'b',0,133,'2014-06-22 16:55:23','2014-06-22 16:55:23'),(317,'c',1,133,'2014-06-22 16:55:23','2014-06-22 16:55:23'),(318,'d',0,133,'2014-06-22 16:55:23','2014-06-22 16:55:23'),(319,'a',1,134,'2014-06-22 16:55:23','2014-06-22 16:55:23'),(320,'b',0,134,'2014-06-22 16:55:23','2014-06-22 16:55:23'),(321,'c',0,134,'2014-06-22 16:55:23','2014-06-22 16:55:23'),(322,'d',0,134,'2014-06-22 16:55:23','2014-06-22 16:55:23'),(323,'a',0,135,'2014-06-22 16:55:24','2014-06-22 16:55:24'),(324,'b',1,135,'2014-06-22 16:55:24','2014-06-22 16:55:24'),(325,'c',0,135,'2014-06-22 16:55:24','2014-06-22 16:55:24'),(326,'d',0,135,'2014-06-22 16:55:24','2014-06-22 16:55:24'),(327,'a',0,136,'2014-06-22 16:55:24','2014-06-22 16:55:24'),(328,'b',0,136,'2014-06-22 16:55:24','2014-06-22 16:55:24'),(329,'c',1,136,'2014-06-22 16:55:24','2014-06-22 16:55:24'),(330,'d',0,136,'2014-06-22 16:55:24','2014-06-22 16:55:24'),(331,'a',0,137,'2014-06-22 16:55:24','2014-06-22 16:55:24'),(332,'b',0,137,'2014-06-22 16:55:24','2014-06-22 16:55:24'),(333,'c',0,137,'2014-06-22 16:55:24','2014-06-22 16:55:24'),(334,'d',1,137,'2014-06-22 16:55:24','2014-06-22 16:55:24'),(335,'a',0,138,'2014-06-22 16:55:24','2014-06-22 16:55:24'),(336,'b',1,138,'2014-06-22 16:55:24','2014-06-22 16:55:24'),(337,'c',0,138,'2014-06-22 16:55:24','2014-06-22 16:55:24'),(338,'d',0,138,'2014-06-22 16:55:24','2014-06-22 16:55:24'),(339,'a',0,139,'2014-06-22 16:55:24','2014-06-22 16:55:24'),(340,'b',0,139,'2014-06-22 16:55:25','2014-06-22 16:55:25'),(341,'c',1,139,'2014-06-22 16:55:25','2014-06-22 16:55:25'),(342,'d',0,139,'2014-06-22 16:55:25','2014-06-22 16:55:25'),(343,'a',0,140,'2014-06-22 16:55:25','2014-06-22 16:55:25'),(344,'b',0,140,'2014-06-22 16:55:25','2014-06-22 16:55:25'),(345,'c',0,140,'2014-06-22 16:55:25','2014-06-22 16:55:25'),(346,'d',1,140,'2014-06-22 16:55:25','2014-06-22 16:55:25'),(347,'a',1,141,'2014-06-22 16:55:25','2014-06-22 16:55:25'),(348,'b',0,141,'2014-06-22 16:55:25','2014-06-22 16:55:25'),(349,'c',0,141,'2014-06-22 16:55:25','2014-06-22 16:55:25'),(350,'d',0,141,'2014-06-22 16:55:25','2014-06-22 16:55:25'),(351,'a',0,142,'2014-06-22 16:55:25','2014-06-22 16:55:25'),(352,'b',1,142,'2014-06-22 16:55:25','2014-06-22 16:55:25'),(353,'c',0,142,'2014-06-22 16:55:25','2014-06-22 16:55:25'),(354,'d',0,142,'2014-06-22 16:55:25','2014-06-22 16:55:25'),(355,'a',0,143,'2014-06-22 16:55:25','2014-06-22 16:55:25'),(356,'b',0,143,'2014-06-22 16:55:25','2014-06-22 16:55:25'),(357,'c',1,143,'2014-06-22 16:55:26','2014-06-22 16:55:26'),(358,'d',0,143,'2014-06-22 16:55:26','2014-06-22 16:55:26'),(359,'a',0,144,'2014-06-22 16:55:26','2014-06-22 16:55:26'),(360,'b',0,144,'2014-06-22 16:55:26','2014-06-22 16:55:26'),(361,'c',0,144,'2014-06-22 16:55:26','2014-06-22 16:55:26'),(362,'d',1,144,'2014-06-22 16:55:26','2014-06-22 16:55:26'),(363,'a',1,145,'2014-06-22 16:55:26','2014-06-22 16:55:26'),(364,'b',0,145,'2014-06-22 16:55:26','2014-06-22 16:55:26'),(365,'c',0,145,'2014-06-22 16:55:26','2014-06-22 16:55:26'),(366,'d',0,145,'2014-06-22 16:55:26','2014-06-22 16:55:26'),(367,'a',0,146,'2014-06-22 16:55:26','2014-06-22 16:55:26'),(368,'b',1,146,'2014-06-22 16:55:26','2014-06-22 16:55:26'),(369,'c',0,146,'2014-06-22 16:55:26','2014-06-22 16:55:26'),(370,'d',0,146,'2014-06-22 16:55:26','2014-06-22 16:55:26'),(371,'a',0,147,'2014-06-22 16:55:26','2014-06-22 16:55:26'),(372,'b',0,147,'2014-06-22 16:55:26','2014-06-22 16:55:26'),(373,'c',1,147,'2014-06-22 16:55:26','2014-06-22 16:55:26'),(374,'d',0,147,'2014-06-22 16:55:27','2014-06-22 16:55:27'),(375,'a',0,148,'2014-06-22 16:55:27','2014-06-22 16:55:27'),(376,'b',0,148,'2014-06-22 16:55:27','2014-06-22 16:55:27'),(377,'c',0,148,'2014-06-22 16:55:27','2014-06-22 16:55:27'),(378,'d',1,148,'2014-06-22 16:55:27','2014-06-22 16:55:27'),(379,'a',1,149,'2014-06-22 16:55:27','2014-06-22 16:55:27'),(380,'b',0,149,'2014-06-22 16:55:27','2014-06-22 16:55:27'),(381,'c',1,149,'2014-06-22 16:55:27','2014-06-22 16:55:27'),(382,'d',0,149,'2014-06-22 16:55:27','2014-06-22 16:55:27'),(383,'e',0,149,'2014-06-22 16:55:27','2014-06-22 16:55:27'),(384,'a',0,150,'2014-06-22 16:55:27','2014-06-22 16:55:27'),(385,'b',0,150,'2014-06-22 16:55:27','2014-06-22 16:55:27'),(386,'c',1,150,'2014-06-22 16:55:27','2014-06-22 16:55:27'),(387,'d',0,150,'2014-06-22 16:55:27','2014-06-22 16:55:27'),(388,'e',1,150,'2014-06-22 16:55:27','2014-06-22 16:55:27'),(389,'a',0,151,'2014-06-22 16:55:27','2014-06-22 16:55:27'),(390,'b',1,151,'2014-06-22 16:55:27','2014-06-22 16:55:27'),(391,'c',0,151,'2014-06-22 16:55:27','2014-06-22 16:55:27'),(392,'d',1,151,'2014-06-22 16:55:27','2014-06-22 16:55:27'),(393,'e',0,151,'2014-06-22 16:55:27','2014-06-22 16:55:27'),(394,'a',0,152,'2014-06-22 16:55:28','2014-06-22 16:55:28'),(395,'b',0,152,'2014-06-22 16:55:28','2014-06-22 16:55:28'),(396,'c',1,152,'2014-06-22 16:55:28','2014-06-22 16:55:28'),(397,'d',0,152,'2014-06-22 16:55:28','2014-06-22 16:55:28'),(398,'e',1,152,'2014-06-22 16:55:28','2014-06-22 16:55:28'),(399,'a',0,153,'2014-06-22 16:55:28','2014-06-22 16:55:28'),(400,'b',1,153,'2014-06-22 16:55:28','2014-06-22 16:55:28'),(401,'c',0,153,'2014-06-22 16:55:28','2014-06-22 16:55:28'),(402,'d',1,153,'2014-06-22 16:55:28','2014-06-22 16:55:28'),(403,'e',0,153,'2014-06-22 16:55:28','2014-06-22 16:55:28'),(404,'a',1,154,'2014-06-22 16:55:28','2014-06-22 16:55:28'),(405,'b',0,154,'2014-06-22 16:55:28','2014-06-22 16:55:28'),(406,'c',1,154,'2014-06-22 16:55:28','2014-06-22 16:55:28'),(407,'d',0,154,'2014-06-22 16:55:28','2014-06-22 16:55:28'),(408,'e',1,154,'2014-06-22 16:55:28','2014-06-22 16:55:28'),(409,'f',0,154,'2014-06-22 16:55:28','2014-06-22 16:55:28'),(410,'a',0,155,'2014-06-22 16:55:28','2014-06-22 16:55:28'),(411,'b',1,155,'2014-06-22 16:55:29','2014-06-22 16:55:29'),(412,'c',0,155,'2014-06-22 16:55:29','2014-06-22 16:55:29'),(413,'d',1,155,'2014-06-22 16:55:29','2014-06-22 16:55:29'),(414,'e',0,155,'2014-06-22 16:55:29','2014-06-22 16:55:29'),(415,'f',0,155,'2014-06-22 16:55:29','2014-06-22 16:55:29'),(416,'abdc',2,156,'2014-06-22 16:55:29','2014-06-22 16:55:29'),(417,'geadfbc',2,157,'2014-06-22 16:55:30','2014-06-22 16:55:30');
/*!40000 ALTER TABLE `options` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `question_banks`
--
DROP TABLE IF EXISTS `question_banks`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `question_banks` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`statement` text COLLATE utf8_unicode_ci,
`weightage` int(11) DEFAULT NULL,
`type` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`created_at` datetime DEFAULT NULL,
`updated_at` datetime DEFAULT NULL,
`chapter_id` int(11) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `question_banks`
--
LOCK TABLES `question_banks` WRITE;
/*!40000 ALTER TABLE `question_banks` DISABLE KEYS */;
/*!40000 ALTER TABLE `question_banks` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `questions`
--
DROP TABLE IF EXISTS `questions`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `questions` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`statement` text COLLATE utf8_unicode_ci,
`weightage` int(11) DEFAULT NULL,
`test_id` int(11) DEFAULT NULL,
`type` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`created_at` datetime DEFAULT NULL,
`updated_at` datetime DEFAULT NULL,
`chapter_id` int(11) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=163 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `questions`
--
LOCK TABLES `questions` WRITE;
/*!40000 ALTER TABLE `questions` DISABLE KEYS */;
INSERT INTO `questions` VALUES (1,'__________ tag is used instead of <body> tag to create frames.',1,1,'FillInTheBlank','2014-06-22 16:53:06','2014-06-22 16:53:06',0),(2,'Some browsers doesn\'t support frames, so to add regular text _____________ tag is used.',1,1,'FillInTheBlank','2014-06-22 16:53:06','2014-06-22 16:53:06',0),(3,'__________ attribute sets the value to the URL of the document to be loaded into frame.',1,1,'FillInTheBlank','2014-06-22 16:53:06','2014-06-22 16:53:06',0),(4,'Tally is _____________',1,1,'FillInTheBlank','2014-06-22 16:53:06','2014-06-22 16:53:06',0),(5,'_______________ is the art of determining what is right and wrong and then doing the right thing.',1,1,'FillInTheBlank','2014-06-22 16:53:06','2014-06-22 16:53:06',0),(6,'_______________ referes to generally accepted standards of right and wrong in a society.',1,1,'FillInTheBlank','2014-06-22 16:53:06','2014-06-22 16:53:06',0),(7,'____________means selling & buying products and services through web.',1,1,'FillInTheBlank','2014-06-22 16:53:07','2014-06-22 16:53:07',0),(8,'E-commerce is the __________ exchange of business information.',1,1,'FillInTheBlank','2014-06-22 16:53:07','2014-06-22 16:53:07',0),(9,'_____________topology is used in banking sector',1,1,'FillInTheBlank','2014-06-22 16:53:07','2014-06-22 16:53:07',0),(10,'A combination of star and bus topology is ___________topology',1,1,'FillInTheBlank','2014-06-22 16:53:07','2014-06-22 16:53:07',0),(11,'Cols is an attribute of the <frameset> tag.',1,1,'TrueFalse','2014-06-22 16:53:07','2014-06-22 16:53:07',0),(12,'More time is required to load the webpage which contains many frames.',1,1,'TrueFalse','2014-06-22 16:53:07','2014-06-22 16:53:07',0),(13,'Name given to each frame should be unique.',1,1,'TrueFalse','2014-06-22 16:53:07','2014-06-22 16:53:07',0),(14,'Users can purchase pirated software.',1,1,'TrueFalse','2014-06-22 16:53:07','2014-06-22 16:53:07',0),(15,'Trying to log on to others computer system is authorized access.',1,1,'TrueFalse','2014-06-22 16:53:07','2014-06-22 16:53:07',0),(16,'In E-commerce time required is more than traditional commerce.',1,1,'TrueFalse','2014-06-22 16:53:07','2014-06-22 16:53:07',0),(17,'E-commerce is fully service oriented.',1,1,'TrueFalse','2014-06-22 16:53:07','2014-06-22 16:53:07',0),(18,'Client/server network is suitable for long network',1,1,'TrueFalse','2014-06-22 16:53:08','2014-06-22 16:53:08',0),(19,'ISO stands for Internal Organization for Standardization',1,1,'TrueFalse','2014-06-22 16:53:08','2014-06-22 16:53:08',0),(20,'Tally is not manual accounting tool',1,1,'TrueFalse','2014-06-22 16:53:08','2014-06-22 16:53:08',0),(21,'______________ tag are followed by the <frameset> tag.',1,1,'Mcq1','2014-06-22 16:53:08','2014-06-22 16:53:08',0),(22,'______________ tag is used to divide web page vertically.',1,1,'Mcq1','2014-06-22 16:53:08','2014-06-22 16:53:08',0),(23,'__________ attribute specifies unique name to floating frame.',1,1,'Mcq1','2014-06-22 16:53:08','2014-06-22 16:53:08',0),(24,'Generally accepted standerds of right and wrong in a society is called as ___________.',1,1,'Mcq1','2014-06-22 16:53:09','2014-06-22 16:53:09',0),(25,'To determine what is right and wrong and then doing the right thing is called as _____________.',1,1,'Mcq1','2014-06-22 16:53:09','2014-06-22 16:53:09',0),(26,'Morals are ______________.',1,1,'Mcq1','2014-06-22 16:53:09','2014-06-22 16:53:09',0),(27,'Efficiency and accuracy of business __________ due to E-commerce',1,1,'Mcq1','2014-06-22 16:53:10','2014-06-22 16:53:10',0),(28,'Currency can be replaced with _______________ in E-commerce transaction for payment.',1,1,'Mcq1','2014-06-22 16:53:10','2014-06-22 16:53:10',0),(29,'_________modem is connected to the computer by the serial cable',1,1,'Mcq1','2014-06-22 16:53:10','2014-06-22 16:53:10',0),(30,'__________ fulfill the requests and sends the requested data back to the clients',1,1,'Mcq1','2014-06-22 16:53:10','2014-06-22 16:53:10',0),(31,'______________ type of Coaxial Cables are used in digital transmission.',1,1,'Mcq1','2014-06-22 16:53:10','2014-06-22 16:53:10',0),(32,'Coaxial cable is provides up to ___________ Mbps capacity.',1,1,'Mcq1','2014-06-22 16:53:11','2014-06-22 16:53:11',0),(33,'In Star topology, failure of ___________ affects entire network.',1,1,'Mcq1','2014-06-22 16:53:11','2014-06-22 16:53:11',0),(34,'UTP covers ________ meters area.',1,1,'Mcq1','2014-06-22 16:53:11','2014-06-22 16:53:11',0),(35,'Any collection of related information grouped together as a single item is called____________',1,1,'Mcq1','2014-06-22 16:53:11','2014-06-22 16:53:11',0),(36,'______________is a collection of fields',1,1,'Mcq1','2014-06-22 16:53:12','2014-06-22 16:53:12',0),(37,'the processed data is called ____________',1,1,'Mcq1','2014-06-22 16:53:12','2014-06-22 16:53:12',0),(38,'Total amount invested by the proprietor into the business is called ________________',1,1,'Mcq1','2014-06-22 16:53:12','2014-06-22 16:53:12',0),(39,'A person who owes the money to the business is called_________',1,1,'Mcq1','2014-06-22 16:53:12','2014-06-22 16:53:12',0),(40,'__________is shortcut key to select any activated company',1,1,'Mcq1','2014-06-22 16:53:13','2014-06-22 16:53:13',0),(41,'______________ tag are followed by the <frameset> tag.',2,1,'Mcq2','2014-06-22 16:53:13','2014-06-22 16:53:13',0),(42,'__________ attribute specifies unique name to floating frame.',2,1,'Mcq2','2014-06-22 16:53:13','2014-06-22 16:53:13',0),(43,'Steps to stop software piracy _____.',2,1,'Mcq2','2014-06-22 16:53:13','2014-06-22 16:53:13',0),(44,'Presale phase of trade cycle consists of __________ and ___________',2,1,'Mcq2','2014-06-22 16:53:14','2014-06-22 16:53:14',0),(45,'routers can consist of______________',2,1,'Mcq2','2014-06-22 16:53:14','2014-06-22 16:53:14',0),(46,'Trade cycle consists of the following',2,1,'Mcq3','2014-06-22 16:53:14','2014-06-22 16:53:14',0),(47,'Following are types of network',2,1,'Mcq3','2014-06-22 16:53:15','2014-06-22 16:53:15',0),(48,'Working of CGI\n(a)Server receives the request and invokes appropriate CGI program\n(b)The request is displayed on the web page.\n(c)Web browser sends a request.\n(d)Script performs its action.',2,1,'Rearrange','2014-06-22 16:53:15','2014-06-22 16:53:15',0),(49,'Arrange the following to create report in design view\n(a)Select design view\n(b)Click OK button\n(c)Select layout and page orientation for report\n(d)Select Report tab and click new command line button\n(e)Select the table or query\n(f)Select print preview command to see the report on screen\n(g)Save the report',2,1,'Rearrange','2014-06-22 16:53:15','2014-06-22 16:53:15',0),(50,'Write short note on OSI Model',2,1,'ShortNote','2014-06-22 16:53:15','2014-06-22 16:53:15',0),(51,'Write short note on Tally',4,1,'ShortNote','2014-06-22 16:53:16','2014-06-22 16:53:16',0),(52,'Write short note on Trade Cycles',4,1,'ShortNote','2014-06-22 16:53:16','2014-06-22 16:53:16',0),(53,'Create 2 verticle frames ',5,1,'HtmlCode','2014-06-22 16:53:16','2014-06-22 16:53:16',0),(54,'Create 2 verticle frames ',5,1,'HtmlCode','2014-06-22 16:53:16','2014-06-22 16:53:16',0),(55,'__________ tag is used instead of <body> tag to create frames.',1,2,'FillInTheBlank','2014-06-22 16:54:15','2014-06-22 16:54:15',0),(56,'Some browsers doesn\'t support frames, so to add regular text _____________ tag is used.',1,2,'FillInTheBlank','2014-06-22 16:54:16','2014-06-22 16:54:16',0),(57,'__________ attribute sets the value to the URL of the document to be loaded into frame.',1,2,'FillInTheBlank','2014-06-22 16:54:16','2014-06-22 16:54:16',0),(58,'Tally is _____________',1,2,'FillInTheBlank','2014-06-22 16:54:16','2014-06-22 16:54:16',0),(59,'_______________ is the art of determining what is right and wrong and then doing the right thing.',1,2,'FillInTheBlank','2014-06-22 16:54:16','2014-06-22 16:54:16',0),(60,'_______________ referes to generally accepted standards of right and wrong in a society.',1,2,'FillInTheBlank','2014-06-22 16:54:16','2014-06-22 16:54:16',0),(61,'____________means selling & buying products and services through web.',1,2,'FillInTheBlank','2014-06-22 16:54:16','2014-06-22 16:54:16',0),(62,'E-commerce is the __________ exchange of business information.',1,2,'FillInTheBlank','2014-06-22 16:54:16','2014-06-22 16:54:16',0),(63,'_____________topology is used in banking sector',1,2,'FillInTheBlank','2014-06-22 16:54:16','2014-06-22 16:54:16',0),(64,'A combination of star and bus topology is ___________topology',1,2,'FillInTheBlank','2014-06-22 16:54:16','2014-06-22 16:54:16',0),(65,'Cols is an attribute of the <frameset> tag.',1,2,'TrueFalse','2014-06-22 16:54:16','2014-06-22 16:54:16',0),(66,'More time is required to load the webpage which contains many frames.',1,2,'TrueFalse','2014-06-22 16:54:17','2014-06-22 16:54:17',0),(67,'Name given to each frame should be unique.',1,2,'TrueFalse','2014-06-22 16:54:17','2014-06-22 16:54:17',0),(68,'Users can purchase pirated software.',1,2,'TrueFalse','2014-06-22 16:54:17','2014-06-22 16:54:17',0),(69,'Trying to log on to others computer system is authorized access.',1,2,'TrueFalse','2014-06-22 16:54:17','2014-06-22 16:54:17',0),(70,'In E-commerce time required is more than traditional commerce.',1,2,'TrueFalse','2014-06-22 16:54:17','2014-06-22 16:54:17',0),(71,'E-commerce is fully service oriented.',1,2,'TrueFalse','2014-06-22 16:54:17','2014-06-22 16:54:17',0),(72,'Client/server network is suitable for long network',1,2,'TrueFalse','2014-06-22 16:54:17','2014-06-22 16:54:17',0),(73,'ISO stands for Internal Organization for Standardization',1,2,'TrueFalse','2014-06-22 16:54:17','2014-06-22 16:54:17',0),(74,'Tally is not manual accounting tool',1,2,'TrueFalse','2014-06-22 16:54:17','2014-06-22 16:54:17',0),(75,'______________ tag are followed by the <frameset> tag.',1,2,'Mcq1','2014-06-22 16:54:17','2014-06-22 16:54:17',0),(76,'______________ tag is used to divide web page vertically.',1,2,'Mcq1','2014-06-22 16:54:18','2014-06-22 16:54:18',0),(77,'__________ attribute specifies unique name to floating frame.',1,2,'Mcq1','2014-06-22 16:54:18','2014-06-22 16:54:18',0),(78,'Generally accepted standerds of right and wrong in a society is called as ___________.',1,2,'Mcq1','2014-06-22 16:54:18','2014-06-22 16:54:18',0),(79,'To determine what is right and wrong and then doing the right thing is called as _____________.',1,2,'Mcq1','2014-06-22 16:54:18','2014-06-22 16:54:18',0),(80,'Morals are ______________.',1,2,'Mcq1','2014-06-22 16:54:19','2014-06-22 16:54:19',0),(81,'Efficiency and accuracy of business __________ due to E-commerce',1,2,'Mcq1','2014-06-22 16:54:19','2014-06-22 16:54:19',0),(82,'Currency can be replaced with _______________ in E-commerce transaction for payment.',1,2,'Mcq1','2014-06-22 16:54:19','2014-06-22 16:54:19',0),(83,'_________modem is connected to the computer by the serial cable',1,2,'Mcq1','2014-06-22 16:54:19','2014-06-22 16:54:19',0),(84,'__________ fulfill the requests and sends the requested data back to the clients',1,2,'Mcq1','2014-06-22 16:54:20','2014-06-22 16:54:20',0),(85,'______________ type of Coaxial Cables are used in digital transmission.',1,2,'Mcq1','2014-06-22 16:54:20','2014-06-22 16:54:20',0),(86,'Coaxial cable is provides up to ___________ Mbps capacity.',1,2,'Mcq1','2014-06-22 16:54:20','2014-06-22 16:54:20',0),(87,'In Star topology, failure of ___________ affects entire network.',1,2,'Mcq1','2014-06-22 16:54:20','2014-06-22 16:54:20',0),(88,'UTP covers ________ meters area.',1,2,'Mcq1','2014-06-22 16:54:20','2014-06-22 16:54:20',0),(89,'Any collection of related information grouped together as a single item is called____________',1,2,'Mcq1','2014-06-22 16:54:21','2014-06-22 16:54:21',0),(90,'______________is a collection of fields',1,2,'Mcq1','2014-06-22 16:54:21','2014-06-22 16:54:21',0),(91,'the processed data is called ____________',1,2,'Mcq1','2014-06-22 16:54:21','2014-06-22 16:54:21',0),(92,'Total amount invested by the proprietor into the business is called ________________',1,2,'Mcq1','2014-06-22 16:54:21','2014-06-22 16:54:21',0),(93,'A person who owes the money to the business is called_________',1,2,'Mcq1','2014-06-22 16:54:22','2014-06-22 16:54:22',0),(94,'__________is shortcut key to select any activated company',1,2,'Mcq1','2014-06-22 16:54:22','2014-06-22 16:54:22',0),(95,'______________ tag are followed by the <frameset> tag.',2,2,'Mcq2','2014-06-22 16:54:22','2014-06-22 16:54:22',0),(96,'__________ attribute specifies unique name to floating frame.',2,2,'Mcq2','2014-06-22 16:54:22','2014-06-22 16:54:22',0),(97,'Steps to stop software piracy _____.',2,2,'Mcq2','2014-06-22 16:54:23','2014-06-22 16:54:23',0),(98,'Presale phase of trade cycle consists of __________ and ___________',2,2,'Mcq2','2014-06-22 16:54:23','2014-06-22 16:54:23',0),(99,'routers can consist of______________',2,2,'Mcq2','2014-06-22 16:54:24','2014-06-22 16:54:24',0),(100,'Trade cycle consists of the following',2,2,'Mcq3','2014-06-22 16:54:24','2014-06-22 16:54:24',0),(101,'Following are types of network',2,2,'Mcq3','2014-06-22 16:54:24','2014-06-22 16:54:24',0),(102,'Working of CGI\n(a)Server receives the request and invokes appropriate CGI program\n(b)The request is displayed on the web page.\n(c)Web browser sends a request.\n(d)Script performs its action.',2,2,'Rearrange','2014-06-22 16:54:24','2014-06-22 16:54:24',0),(103,'Arrange the following to create report in design view\n(a)Select design view\n(b)Click OK button\n(c)Select layout and page orientation for report\n(d)Select Report tab and click new command line button\n(e)Select the table or query\n(f)Select print preview command to see the report on screen\n(g)Save the report',2,2,'Rearrange','2014-06-22 16:54:25','2014-06-22 16:54:25',0),(104,'Write short note on OSI Model',2,2,'ShortNote','2014-06-22 16:54:25','2014-06-22 16:54:25',0),(105,'Write short note on Tally',4,2,'ShortNote','2014-06-22 16:54:25','2014-06-22 16:54:25',0),(106,'Write short note on Trade Cycles',4,2,'ShortNote','2014-06-22 16:54:25','2014-06-22 16:54:25',0),(107,'Create 2 verticle frames ',5,2,'HtmlCode','2014-06-22 16:54:25','2014-06-22 16:54:25',0),(108,'Create 2 verticle frames ',5,2,'HtmlCode','2014-06-22 16:54:25','2014-06-22 16:54:25',0),(109,'__________ tag is used instead of <body> tag to create frames.',1,3,'FillInTheBlank','2014-06-22 16:55:20','2014-06-22 16:55:20',0),(110,'Some browsers doesn\'t support frames, so to add regular text _____________ tag is used.',1,3,'FillInTheBlank','2014-06-22 16:55:20','2014-06-22 16:55:20',0),(111,'__________ attribute sets the value to the URL of the document to be loaded into frame.',1,3,'FillInTheBlank','2014-06-22 16:55:20','2014-06-22 16:55:20',0),(112,'Tally is _____________',1,3,'FillInTheBlank','2014-06-22 16:55:20','2014-06-22 16:55:20',0),(113,'_______________ is the art of determining what is right and wrong and then doing the right thing.',1,3,'FillInTheBlank','2014-06-22 16:55:20','2014-06-22 16:55:20',0),(114,'_______________ referes to generally accepted standards of right and wrong in a society.',1,3,'FillInTheBlank','2014-06-22 16:55:20','2014-06-22 16:55:20',0),(115,'____________means selling & buying products and services through web.',1,3,'FillInTheBlank','2014-06-22 16:55:21','2014-06-22 16:55:21',0),(116,'E-commerce is the __________ exchange of business information.',1,3,'FillInTheBlank','2014-06-22 16:55:21','2014-06-22 16:55:21',0),(117,'_____________topology is used in banking sector',1,3,'FillInTheBlank','2014-06-22 16:55:21','2014-06-22 16:55:21',0),(118,'A combination of star and bus topology is ___________topology',1,3,'FillInTheBlank','2014-06-22 16:55:21','2014-06-22 16:55:21',0),(119,'Cols is an attribute of the <frameset> tag.',1,3,'TrueFalse','2014-06-22 16:55:21','2014-06-22 16:55:21',0),(120,'More time is required to load the webpage which contains many frames.',1,3,'TrueFalse','2014-06-22 16:55:21','2014-06-22 16:55:21',0),(121,'Name given to each frame should be unique.',1,3,'TrueFalse','2014-06-22 16:55:21','2014-06-22 16:55:21',0),(122,'Users can purchase pirated software.',1,3,'TrueFalse','2014-06-22 16:55:21','2014-06-22 16:55:21',0),(123,'Trying to log on to others computer system is authorized access.',1,3,'TrueFalse','2014-06-22 16:55:21','2014-06-22 16:55:21',0),(124,'In E-commerce time required is more than traditional commerce.',1,3,'TrueFalse','2014-06-22 16:55:21','2014-06-22 16:55:21',0),(125,'E-commerce is fully service oriented.',1,3,'TrueFalse','2014-06-22 16:55:22','2014-06-22 16:55:22',0),(126,'Client/server network is suitable for long network',1,3,'TrueFalse','2014-06-22 16:55:22','2014-06-22 16:55:22',0),(127,'ISO stands for Internal Organization for Standardization',1,3,'TrueFalse','2014-06-22 16:55:22','2014-06-22 16:55:22',0),(128,'Tally is not manual accounting tool',1,3,'TrueFalse','2014-06-22 16:55:22','2014-06-22 16:55:22',0),(129,'______________ tag are followed by the <frameset> tag.',1,3,'Mcq1','2014-06-22 16:55:22','2014-06-22 16:55:22',0),(130,'______________ tag is used to divide web page vertically.',1,3,'Mcq1','2014-06-22 16:55:22','2014-06-22 16:55:22',0),(131,'__________ attribute specifies unique name to floating frame.',1,3,'Mcq1','2014-06-22 16:55:22','2014-06-22 16:55:22',0),(132,'Generally accepted standerds of right and wrong in a society is called as ___________.',1,3,'Mcq1','2014-06-22 16:55:23','2014-06-22 16:55:23',0),(133,'To determine what is right and wrong and then doing the right thing is called as _____________.',1,3,'Mcq1','2014-06-22 16:55:23','2014-06-22 16:55:23',0),(134,'Morals are ______________.',1,3,'Mcq1','2014-06-22 16:55:23','2014-06-22 16:55:23',0),(135,'Efficiency and accuracy of business __________ due to E-commerce',1,3,'Mcq1','2014-06-22 16:55:24','2014-06-22 16:55:24',0),(136,'Currency can be replaced with _______________ in E-commerce transaction for payment.',1,3,'Mcq1','2014-06-22 16:55:24','2014-06-22 16:55:24',0),(137,'_________modem is connected to the computer by the serial cable',1,3,'Mcq1','2014-06-22 16:55:24','2014-06-22 16:55:24',0),(138,'__________ fulfill the requests and sends the requested data back to the clients',1,3,'Mcq1','2014-06-22 16:55:24','2014-06-22 16:55:24',0),(139,'______________ type of Coaxial Cables are used in digital transmission.',1,3,'Mcq1','2014-06-22 16:55:24','2014-06-22 16:55:24',0),(140,'Coaxial cable is provides up to ___________ Mbps capacity.',1,3,'Mcq1','2014-06-22 16:55:25','2014-06-22 16:55:25',0),(141,'In Star topology, failure of ___________ affects entire network.',1,3,'Mcq1','2014-06-22 16:55:25','2014-06-22 16:55:25',0),(142,'UTP covers ________ meters area.',1,3,'Mcq1','2014-06-22 16:55:25','2014-06-22 16:55:25',0),(143,'Any collection of related information grouped together as a single item is called____________',1,3,'Mcq1','2014-06-22 16:55:25','2014-06-22 16:55:25',0),(144,'______________is a collection of fields',1,3,'Mcq1','2014-06-22 16:55:26','2014-06-22 16:55:26',0),(145,'the processed data is called ____________',1,3,'Mcq1','2014-06-22 16:55:26','2014-06-22 16:55:26',0),(146,'Total amount invested by the proprietor into the business is called ________________',1,3,'Mcq1','2014-06-22 16:55:26','2014-06-22 16:55:26',0),(147,'A person who owes the money to the business is called_________',1,3,'Mcq1','2014-06-22 16:55:26','2014-06-22 16:55:26',0),(148,'__________is shortcut key to select any activated company',1,3,'Mcq1','2014-06-22 16:55:27','2014-06-22 16:55:27',0),(149,'______________ tag are followed by the <frameset> tag.',2,3,'Mcq2','2014-06-22 16:55:27','2014-06-22 16:55:27',0),(150,'__________ attribute specifies unique name to floating frame.',2,3,'Mcq2','2014-06-22 16:55:27','2014-06-22 16:55:27',0),(151,'Steps to stop software piracy _____.',2,3,'Mcq2','2014-06-22 16:55:27','2014-06-22 16:55:27',0),(152,'Presale phase of trade cycle consists of __________ and ___________',2,3,'Mcq2','2014-06-22 16:55:28','2014-06-22 16:55:28',0),(153,'routers can consist of______________',2,3,'Mcq2','2014-06-22 16:55:28','2014-06-22 16:55:28',0),(154,'Trade cycle consists of the following',2,3,'Mcq3','2014-06-22 16:55:28','2014-06-22 16:55:28',0),(155,'Following are types of network',2,3,'Mcq3','2014-06-22 16:55:28','2014-06-22 16:55:28',0),(156,'Working of CGI\n(a)Server receives the request and invokes appropriate CGI program\n(b)The request is displayed on the web page.\n(c)Web browser sends a request.\n(d)Script performs its action.',2,3,'Rearrange','2014-06-22 16:55:29','2014-06-22 16:55:29',0),(157,'Arrange the following to create report in design view\n(a)Select design view\n(b)Click OK button\n(c)Select layout and page orientation for report\n(d)Select Report tab and click new command line button\n(e)Select the table or query\n(f)Select print preview command to see the report on screen\n(g)Save the report',2,3,'Rearrange','2014-06-22 16:55:29','2014-06-22 16:55:29',0),(158,'Write short note on OSI Model',2,3,'ShortNote','2014-06-22 16:55:30','2014-06-22 16:55:30',0),(159,'Write short note on Tally',4,3,'ShortNote','2014-06-22 16:55:30','2014-06-22 16:55:30',0),(160,'Write short note on Trade Cycles',4,3,'ShortNote','2014-06-22 16:55:30','2014-06-22 16:55:30',0),(161,'Create 2 verticle frames ',5,3,'HtmlCode','2014-06-22 16:55:30','2014-06-22 16:55:30',0),(162,'Create 2 verticle frames ',5,3,'HtmlCode','2014-06-22 16:55:30','2014-06-22 16:55:30',0);
/*!40000 ALTER TABLE `questions` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `result_details`
--
DROP TABLE IF EXISTS `result_details`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `result_details` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`question_type` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`answer` varchar(255) COLLATE utf8_unicode_ci DEFAULT '',
`score` int(11) DEFAULT '0',
`question_id` int(11) NOT NULL,
`user_id` int(11) NOT NULL,
`result_id` int(11) NOT NULL,
`created_at` datetime DEFAULT NULL,
`updated_at` datetime DEFAULT NULL,
`is_checked` tinyint(1) DEFAULT '1',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=445 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `result_details`
--
LOCK TABLES `result_details` WRITE;
/*!40000 ALTER TABLE `result_details` DISABLE KEYS */;
INSERT INTO `result_details` VALUES (1,'FillInTheBlank','<frameset>',1,1,9,2,'2014-06-22 17:13:05','2014-06-22 17:13:05',1),(2,'FillInTheBlank','<NOFRAME>',1,2,9,2,'2014-06-22 17:13:05','2014-06-22 17:13:05',1),(3,'FillInTheBlank','alt',0,3,9,2,'2014-06-22 17:13:05','2014-06-22 17:13:05',1),(4,'FillInTheBlank','Accountig Software',1,4,9,2,'2014-06-22 17:13:05','2014-06-22 17:13:05',1),(5,'FillInTheBlank','moral',0,5,9,2,'2014-06-22 17:13:05','2014-06-22 17:13:05',1),(6,'FillInTheBlank','moral',1,6,9,2,'2014-06-22 17:13:05','2014-06-22 17:13:05',1),(7,'FillInTheBlank','E-Comm',0,7,9,2,'2014-06-22 17:13:06','2014-06-22 17:13:06',1),(8,'FillInTheBlank','Paperless',1,8,9,2,'2014-06-22 17:13:06','2014-06-22 17:13:06',1),(9,'FillInTheBlank','Star',1,9,9,2,'2014-06-22 17:13:06','2014-06-22 17:13:06',1),(10,'FillInTheBlank','Tree',1,10,9,2,'2014-06-22 17:13:06','2014-06-22 17:13:06',1),(11,'TrueFalse','true',1,11,9,2,'2014-06-22 17:13:06','2014-06-22 17:13:06',1),(12,'TrueFalse','false',0,12,9,2,'2014-06-22 17:13:06','2014-06-22 17:13:06',1),(13,'TrueFalse','true',1,13,9,2,'2014-06-22 17:13:06','2014-06-22 17:13:06',1),(14,'TrueFalse','false',1,14,9,2,'2014-06-22 17:13:06','2014-06-22 17:13:06',1),(15,'TrueFalse','true',0,15,9,2,'2014-06-22 17:13:06','2014-06-22 17:13:06',1),(16,'TrueFalse','false',1,16,9,2,'2014-06-22 17:13:06','2014-06-22 17:13:06',1),(17,'TrueFalse','true',0,17,9,2,'2014-06-22 17:13:06','2014-06-22 17:13:06',1),(18,'TrueFalse','false',1,18,9,2,'2014-06-22 17:13:07','2014-06-22 17:13:07',1),(19,'TrueFalse','true',0,19,9,2,'2014-06-22 17:13:07','2014-06-22 17:13:07',1),(20,'TrueFalse','true',0,20,9,2,'2014-06-22 17:13:07','2014-06-22 17:13:07',1),(21,'Mcq1','a',1,21,9,2,'2014-06-22 17:13:07','2014-06-22 17:13:07',1),(22,'Mcq1','b',0,22,9,2,'2014-06-22 17:13:07','2014-06-22 17:13:07',1),(23,'Mcq1','c',0,23,9,2,'2014-06-22 17:13:07','2014-06-22 17:13:07',1),(24,'Mcq1','d',0,24,9,2,'2014-06-22 17:13:07','2014-06-22 17:13:07',1),(25,'Mcq1','a',0,25,9,2,'2014-06-22 17:13:07','2014-06-22 17:13:07',1),(26,'Mcq1','c',0,26,9,2,'2014-06-22 17:13:07','2014-06-22 17:13:07',1),(27,'Mcq1','a',0,27,9,2,'2014-06-22 17:13:07','2014-06-22 17:13:07',1),(28,'Mcq1','b',0,28,9,2,'2014-06-22 17:13:08','2014-06-22 17:13:08',1),(29,'Mcq1','c',0,29,9,2,'2014-06-22 17:13:08','2014-06-22 17:13:08',1),(30,'Mcq1','d',0,30,9,2,'2014-06-22 17:13:08','2014-06-22 17:13:08',1),(31,'Mcq1','a',0,31,9,2,'2014-06-22 17:13:08','2014-06-22 17:13:08',1),(32,'Mcq1','c',0,32,9,2,'2014-06-22 17:13:08','2014-06-22 17:13:08',1),(33,'Mcq1','a',1,33,9,2,'2014-06-22 17:13:08','2014-06-22 17:13:08',1),(34,'Mcq1','a',0,34,9,2,'2014-06-22 17:13:09','2014-06-22 17:13:09',1),(35,'Mcq1','a',0,35,9,2,'2014-06-22 17:13:09','2014-06-22 17:13:09',1),(36,'Mcq1','c',0,36,9,2,'2014-06-22 17:13:09','2014-06-22 17:13:09',1),(37,'Mcq1','c',0,37,9,2,'2014-06-22 17:13:09','2014-06-22 17:13:09',1),(38,'Mcq1','b',1,38,9,2,'2014-06-22 17:13:09','2014-06-22 17:13:09',1),(39,'Mcq1','a',0,39,9,2,'2014-06-22 17:13:09','2014-06-22 17:13:09',1),(40,'Mcq1','c',0,40,9,2,'2014-06-22 17:13:09','2014-06-22 17:13:09',1),(41,'Mcq2','b||c||a||b||b||d',2,41,9,2,'2014-06-22 17:13:09','2014-06-22 17:23:16',1),(42,'Mcq2','a||e||b||c||a||d',2,42,9,2,'2014-06-22 17:13:10','2014-06-22 17:23:16',1),(43,'Mcq2','a||c||c||d||a||b',2,43,9,2,'2014-06-22 17:13:10','2014-06-22 17:23:16',1),(44,'Mcq2','b||d||c||e||d||e',3,44,9,2,'2014-06-22 17:13:10','2014-06-22 17:23:17',1),(45,'Mcq2','a||c||a||e',0,45,9,2,'2014-06-22 17:13:10','2014-06-22 17:19:48',1),(46,'Mcq3','a||c||d||a||b||c||a||c||e',7,46,9,2,'2014-06-22 17:13:11','2014-06-22 17:23:17',1),(47,'Mcq3','b||d||f||c||d||f||b||d||f',5,47,9,2,'2014-06-22 17:13:11','2014-06-22 17:23:17',1),(48,'Rearrange','abcd',0,48,9,2,'2014-06-22 17:13:11','2014-06-22 17:13:11',1),(49,'Rearrange','abcdefg',0,49,9,2,'2014-06-22 17:13:11','2014-06-22 17:13:11',1),(50,'ShortNote','Some Ans 1',0,50,9,2,'2014-06-22 17:13:11','2014-06-22 17:13:11',1),(51,'ShortNote','Some Ans 2 ',2,51,9,2,'2014-06-22 17:13:12','2014-06-22 17:13:12',1),(52,'ShortNote','Some Ans 3 ',4,52,9,2,'2014-06-22 17:13:12','2014-06-22 17:13:12',1),(53,'HtmlCode','Some Code 1',5,53,9,2,'2014-06-22 17:13:12','2014-06-22 17:13:12',1),(54,'HtmlCode','Some Code 2',1,54,9,2,'2014-06-22 17:13:12','2014-06-22 17:13:12',1),(55,'FillInTheBlank','<frameset>',1,1,10,3,'2014-06-22 17:19:45','2014-06-22 17:19:45',1),(56,'FillInTheBlank','<NOFRAME>',1,2,10,3,'2014-06-22 17:19:45','2014-06-22 17:19:45',1),(57,'FillInTheBlank','src',1,3,10,3,'2014-06-22 17:19:45','2014-06-22 17:19:45',1),(58,'FillInTheBlank','Accountig Software',1,4,10,3,'2014-06-22 17:19:45','2014-06-22 17:19:45',1),(59,'FillInTheBlank','moral',0,5,10,3,'2014-06-22 17:19:45','2014-06-22 17:19:45',1),(60,'FillInTheBlank','ethics',0,6,10,3,'2014-06-22 17:19:45','2014-06-22 17:19:45',1),(61,'FillInTheBlank','E-Commerce',1,7,10,3,'2014-06-22 17:19:45','2014-06-22 17:19:45',1),(62,'FillInTheBlank','Paperless',1,8,10,3,'2014-06-22 17:19:45','2014-06-22 17:19:45',1),(63,'FillInTheBlank','Star',1,9,10,3,'2014-06-22 17:19:45','2014-06-22 17:19:45',1),(64,'FillInTheBlank','Tree',1,10,10,3,'2014-06-22 17:19:46','2014-06-22 17:19:46',1),(65,'TrueFalse','true',1,11,10,3,'2014-06-22 17:19:46','2014-06-22 17:19:46',1),(66,'TrueFalse','true',1,12,10,3,'2014-06-22 17:19:46','2014-06-22 17:19:46',1),(67,'TrueFalse','false',0,13,10,3,'2014-06-22 17:19:46','2014-06-22 17:19:46',1),(68,'TrueFalse','true',0,14,10,3,'2014-06-22 17:19:46','2014-06-22 17:19:46',1),(69,'TrueFalse','true',0,15,10,3,'2014-06-22 17:19:46','2014-06-22 17:19:46',1),(70,'TrueFalse','false',1,16,10,3,'2014-06-22 17:19:46','2014-06-22 17:19:46',1),(71,'TrueFalse','false',0,17,10,3,'2014-06-22 17:19:46','2014-06-22 17:19:46',1),(72,'TrueFalse','true',0,18,10,3,'2014-06-22 17:19:46','2014-06-22 17:19:46',1),(73,'TrueFalse','false',0,19,10,3,'2014-06-22 17:19:46','2014-06-22 17:19:46',1),(74,'TrueFalse','true',0,20,10,3,'2014-06-22 17:19:46','2014-06-22 17:19:46',1),(75,'Mcq1','a',1,21,10,3,'2014-06-22 17:19:46','2014-06-22 17:19:46',1),(76,'Mcq1','b',0,22,10,3,'2014-06-22 17:19:46','2014-06-22 17:19:46',1),(77,'Mcq1','c',0,23,10,3,'2014-06-22 17:19:46','2014-06-22 17:19:46',1),(78,'Mcq1','d',0,24,10,3,'2014-06-22 17:19:46','2014-06-22 17:19:46',1),(79,'Mcq1','b',0,25,10,3,'2014-06-22 17:19:46','2014-06-22 17:19:46',1),(80,'Mcq1','a',1,26,10,3,'2014-06-22 17:19:46','2014-06-22 17:19:46',1),(81,'Mcq1','c',0,27,10,3,'2014-06-22 17:19:46','2014-06-22 17:19:46',1),(82,'Mcq1','b',0,28,10,3,'2014-06-22 17:19:47','2014-06-22 17:19:47',1),(83,'Mcq1','c',0,29,10,3,'2014-06-22 17:19:47','2014-06-22 17:19:47',1),(84,'Mcq1','d',0,30,10,3,'2014-06-22 17:19:47','2014-06-22 17:19:47',1),(85,'Mcq1','a',0,31,10,3,'2014-06-22 17:19:47','2014-06-22 17:19:47',1),(86,'Mcq1','c',0,32,10,3,'2014-06-22 17:19:47','2014-06-22 17:19:47',1),(87,'Mcq1','b',0,33,10,3,'2014-06-22 17:19:47','2014-06-22 17:19:47',1),(88,'Mcq1','b',1,34,10,3,'2014-06-22 17:19:47','2014-06-22 17:19:47',1),(89,'Mcq1','d',0,35,10,3,'2014-06-22 17:19:47','2014-06-22 17:19:47',1),(90,'Mcq1','c',0,36,10,3,'2014-06-22 17:19:47','2014-06-22 17:19:47',1),(91,'Mcq1','b',0,37,10,3,'2014-06-22 17:19:47','2014-06-22 17:19:47',1),(92,'Mcq1','c',0,38,10,3,'2014-06-22 17:19:47','2014-06-22 17:19:47',1),(93,'Mcq1','d',0,39,10,3,'2014-06-22 17:19:47','2014-06-22 17:19:47',1),(94,'Mcq1','a',0,40,10,3,'2014-06-22 17:19:47','2014-06-22 17:19:47',1),(95,'Rearrange','abcd',0,48,10,3,'2014-06-22 17:19:48','2014-06-22 17:19:48',1),(96,'Rearrange','abcdefg',0,49,10,3,'2014-06-22 17:19:48','2014-06-22 17:19:48',1),(97,'ShortNote','Some ans 1',2,50,10,3,'2014-06-22 17:19:48','2014-06-22 17:19:48',1),(98,'ShortNote','Some ans 2 ',2,51,10,3,'2014-06-22 17:19:49','2014-06-22 17:19:49',1),(99,'ShortNote','Some ans 3 ',4,52,10,3,'2014-06-22 17:19:49','2014-06-22 17:19:49',1),(100,'HtmlCode','Some Code 1',5,53,10,3,'2014-06-22 17:19:49','2014-06-22 17:19:49',1),(101,'HtmlCode','Some Code 2',2,54,10,3,'2014-06-22 17:19:49','2014-06-22 17:19:49',1),(102,'FillInTheBlank','<frameset>',1,1,11,4,'2014-06-22 17:23:14','2014-06-22 17:23:14',1),(103,'FillInTheBlank','<NOFRAME>',1,2,11,4,'2014-06-22 17:23:14','2014-06-22 17:23:14',1),(104,'FillInTheBlank','src',1,3,11,4,'2014-06-22 17:23:14','2014-06-22 17:23:14',1),(105,'FillInTheBlank','Accountig Software',1,4,11,4,'2014-06-22 17:23:14','2014-06-22 17:23:14',1),(106,'FillInTheBlank','moral',0,5,11,4,'2014-06-22 17:23:14','2014-06-22 17:23:14',1),(107,'FillInTheBlank','moral',1,6,11,4,'2014-06-22 17:23:14','2014-06-22 17:23:14',1),(108,'FillInTheBlank','E-Commerce',1,7,11,4,'2014-06-22 17:23:14','2014-06-22 17:23:14',1),(109,'FillInTheBlank','Papered',0,8,11,4,'2014-06-22 17:23:14','2014-06-22 17:23:14',1),(110,'FillInTheBlank','Star',1,9,11,4,'2014-06-22 17:23:14','2014-06-22 17:23:14',1),(111,'FillInTheBlank','Tree',1,10,11,4,'2014-06-22 17:23:14','2014-06-22 17:23:14',1),(112,'TrueFalse','false',0,11,11,4,'2014-06-22 17:23:14','2014-06-22 17:23:14',1),(113,'TrueFalse','false',0,12,11,4,'2014-06-22 17:23:14','2014-06-22 17:23:14',1),(114,'TrueFalse','true',1,13,11,4,'2014-06-22 17:23:14','2014-06-22 17:23:14',1),(115,'TrueFalse','true',0,14,11,4,'2014-06-22 17:23:14','2014-06-22 17:23:14',1),(116,'TrueFalse','true',0,15,11,4,'2014-06-22 17:23:14','2014-06-22 17:23:14',1),(117,'TrueFalse','false',1,16,11,4,'2014-06-22 17:23:15','2014-06-22 17:23:15',1),(118,'TrueFalse','false',0,17,11,4,'2014-06-22 17:23:15','2014-06-22 17:23:15',1),(119,'TrueFalse','true',0,18,11,4,'2014-06-22 17:23:15','2014-06-22 17:23:15',1),(120,'TrueFalse','true',0,19,11,4,'2014-06-22 17:23:15','2014-06-22 17:23:15',1),(121,'TrueFalse','false',0,20,11,4,'2014-06-22 17:23:15','2014-06-22 17:23:15',1),(122,'Mcq1','c',0,21,11,4,'2014-06-22 17:23:15','2014-06-22 17:23:15',1),(123,'Mcq1','a',0,22,11,4,'2014-06-22 17:23:15','2014-06-22 17:23:15',1),(124,'Mcq1','b',0,23,11,4,'2014-06-22 17:23:15','2014-06-22 17:23:15',1),(125,'Mcq1','c',0,24,11,4,'2014-06-22 17:23:15','2014-06-22 17:23:15',1),(126,'Mcq1','b',0,25,11,4,'2014-06-22 17:23:15','2014-06-22 17:23:15',1),(127,'Mcq1','d',0,26,11,4,'2014-06-22 17:23:15','2014-06-22 17:23:15',1),(128,'Mcq1','b',1,27,11,4,'2014-06-22 17:23:15','2014-06-22 17:23:15',1),(129,'Mcq1','b',0,28,11,4,'2014-06-22 17:23:15','2014-06-22 17:23:15',1),(130,'Mcq1','c',0,29,11,4,'2014-06-22 17:23:15','2014-06-22 17:23:15',1),(131,'Mcq1','c',0,30,11,4,'2014-06-22 17:23:15','2014-06-22 17:23:15',1),(132,'Mcq1','d',0,31,11,4,'2014-06-22 17:23:15','2014-06-22 17:23:15',1),(133,'Mcq1','c',0,32,11,4,'2014-06-22 17:23:16','2014-06-22 17:23:16',1),(134,'Mcq1','c',0,33,11,4,'2014-06-22 17:23:16','2014-06-22 17:23:16',1),(135,'Mcq1','c',0,34,11,4,'2014-06-22 17:23:16','2014-06-22 17:23:16',1),(136,'Mcq1','c',1,35,11,4,'2014-06-22 17:23:16','2014-06-22 17:23:16',1),(137,'Mcq1','b',0,36,11,4,'2014-06-22 17:23:16','2014-06-22 17:23:16',1),(138,'Mcq1','b',0,37,11,4,'2014-06-22 17:23:16','2014-06-22 17:23:16',1),(139,'Mcq1','c',0,38,11,4,'2014-06-22 17:23:16','2014-06-22 17:23:16',1),(140,'Mcq1','d',0,39,11,4,'2014-06-22 17:23:16','2014-06-22 17:23:16',1),(141,'Mcq1','d',1,40,11,4,'2014-06-22 17:23:16','2014-06-22 17:23:16',1),(142,'Rearrange','abcd',0,48,11,4,'2014-06-22 17:23:17','2014-06-22 17:23:17',1),(143,'Rearrange','abcdefg',0,49,11,4,'2014-06-22 17:23:17','2014-06-22 17:23:17',1),(144,'ShortNote','uygeyuwev liugwefui wge',2,50,11,4,'2014-06-22 17:23:17','2014-06-22 17:23:17',1),(145,'ShortNote','luigrverg iuiuwg hiouwg ',4,51,11,4,'2014-06-22 17:23:17','2014-06-22 17:23:17',1),(146,'ShortNote','ser;oig ue oiuehyrg je\r\ner g;oiehr n\r\ne rljkherbg e\r\ner bjlehrbgkj e reto\r\nlher neklth \r\n\'lherg nkleghoipenkn;ke joi\r\nlbbg e;klgijoe;heth ',2,52,11,4,'2014-06-22 17:23:17','2014-06-22 17:23:17',1),(147,'HtmlCode',';irth,.;nkll jlhtnhwr\r\nrt;oirkth .,\r\n]er.nh\'k\r\n \r\ner;lkej;rlhert \r\ngn erej ',1,53,11,4,'2014-06-22 17:23:17','2014-06-22 17:23:17',1),(148,'HtmlCode',';irth,.;nkll jlhtnhwr\r\nrt;oirkth .,\r\n]er.nh\'k\r\n \r\ner;lkej;rlhert \r\ngn erej ',3,54,11,4,'2014-06-22 17:23:17','2014-06-22 17:23:17',1),(149,'FillInTheBlank','<noframe>',0,55,9,5,'2014-06-22 17:42:14','2014-06-22 17:42:14',1),(150,'FillInTheBlank','<frameset>',0,56,9,5,'2014-06-22 17:42:14','2014-06-22 17:42:14',1),(151,'FillInTheBlank','src',1,57,9,5,'2014-06-22 17:42:15','2014-06-22 17:42:15',1),(152,'FillInTheBlank','accounting software',0,58,9,5,'2014-06-22 17:42:15','2014-06-22 17:42:15',1),(153,'FillInTheBlank','moral',0,59,9,5,'2014-06-22 17:42:15','2014-06-22 17:42:15',1),(154,'FillInTheBlank','ethics',0,60,9,5,'2014-06-22 17:42:15','2014-06-22 17:42:15',1),(155,'FillInTheBlank','less',0,61,9,5,'2014-06-22 17:42:15','2014-06-22 17:42:15',1),(156,'FillInTheBlank','comm',0,62,9,5,'2014-06-22 17:42:15','2014-06-22 17:42:15',1),(157,'FillInTheBlank','star',1,63,9,5,'2014-06-22 17:42:15','2014-06-22 17:42:15',1),(158,'FillInTheBlank','tree',1,64,9,5,'2014-06-22 17:42:15','2014-06-22 17:42:15',1),(159,'TrueFalse','true',1,65,9,5,'2014-06-22 17:42:15','2014-06-22 17:42:15',1),(160,'TrueFalse','true',1,66,9,5,'2014-06-22 17:42:15','2014-06-22 17:42:15',1),(161,'TrueFalse','false',0,67,9,5,'2014-06-22 17:42:15','2014-06-22 17:42:15',1),(162,'TrueFalse','false',1,68,9,5,'2014-06-22 17:42:15','2014-06-22 17:42:15',1),(163,'TrueFalse','true',0,69,9,5,'2014-06-22 17:42:15','2014-06-22 17:42:15',1),(164,'TrueFalse','false',1,70,9,5,'2014-06-22 17:42:15','2014-06-22 17:42:15',1),(165,'TrueFalse','true',0,71,9,5,'2014-06-22 17:42:16','2014-06-22 17:42:16',1),(166,'TrueFalse','false',1,72,9,5,'2014-06-22 17:42:16','2014-06-22 17:42:16',1),(167,'TrueFalse','true',0,73,9,5,'2014-06-22 17:42:16','2014-06-22 17:42:16',1),(168,'TrueFalse','false',0,74,9,5,'2014-06-22 17:42:16','2014-06-22 17:42:16',1),(169,'Mcq1','b',0,75,9,5,'2014-06-22 17:42:16','2014-06-22 17:42:16',1),(170,'Mcq1','c',1,76,9,5,'2014-06-22 17:42:16','2014-06-22 17:42:16',1),(171,'Mcq1','d',1,77,9,5,'2014-06-22 17:42:16','2014-06-22 17:42:16',1),(172,'Mcq1','a',0,78,9,5,'2014-06-22 17:42:16','2014-06-22 17:42:16',1),(173,'Mcq1','b',0,79,9,5,'2014-06-22 17:42:17','2014-06-22 17:42:17',1),(174,'Mcq1','c',0,80,9,5,'2014-06-22 17:42:17','2014-06-22 17:42:17',1),(175,'Mcq1','d',0,81,9,5,'2014-06-22 17:42:17','2014-06-22 17:42:17',1),(176,'Mcq1','a',0,82,9,5,'2014-06-22 17:42:17','2014-06-22 17:42:17',1),(177,'Mcq1','a',0,83,9,5,'2014-06-22 17:42:17','2014-06-22 17:42:17',1),(178,'Mcq1','b',1,84,9,5,'2014-06-22 17:42:17','2014-06-22 17:42:17',1),(179,'Mcq1','b',0,85,9,5,'2014-06-22 17:42:17','2014-06-22 17:42:17',1),(180,'Mcq1','c',0,86,9,5,'2014-06-22 17:42:18','2014-06-22 17:42:18',1),(181,'Mcq1','c',0,87,9,5,'2014-06-22 17:42:18','2014-06-22 17:42:18',1),(182,'Mcq1','d',0,88,9,5,'2014-06-22 17:42:18','2014-06-22 17:42:18',1),(183,'Mcq1','d',0,89,9,5,'2014-06-22 17:42:18','2014-06-22 17:42:18',1),(184,'Mcq1','b',0,90,9,5,'2014-06-22 17:42:18','2014-06-22 17:42:18',1),(185,'Mcq1','a',1,91,9,5,'2014-06-22 17:42:18','2014-06-22 17:42:18',1),(186,'Mcq1','b',1,92,9,5,'2014-06-22 17:42:18','2014-06-22 17:42:18',1),(187,'Mcq1','c',1,93,9,5,'2014-06-22 17:42:18','2014-06-22 17:42:18',1),(188,'Mcq1','d',1,94,9,5,'2014-06-22 17:42:19','2014-06-22 17:42:19',1),(189,'Mcq2','a||b||a||b||a||b',3,95,9,5,'2014-06-22 17:42:19','2014-06-22 17:49:32',1),(190,'Mcq2','c||d||a||b||a||b',1,96,9,5,'2014-06-22 17:42:19','2014-06-22 17:49:32',1),(191,'Mcq2','a||e||d||e||b||c',2,97,9,5,'2014-06-22 17:42:19','2014-06-22 17:49:32',1),(192,'Mcq2','b||c||c||d||c||d',3,98,9,5,'2014-06-22 17:42:19','2014-06-22 17:49:33',1),(193,'Mcq2','d||e||c||e||c||d',2,99,9,5,'2014-06-22 17:42:19','2014-06-22 17:49:33',1),(194,'Mcq3','a||b||c||a||b||e||a||b||c',6,100,9,5,'2014-06-22 17:42:20','2014-06-22 17:49:33',1),(195,'Mcq3','c||d||e||a||c||f||d||e||f',2,101,9,5,'2014-06-22 17:42:20','2014-06-22 17:49:33',1),(196,'Rearrange','abcd',0,102,9,5,'2014-06-22 17:42:20','2014-06-22 17:42:20',1),(197,'Rearrange','agedbcf',0,103,9,5,'2014-06-22 17:42:20','2014-06-22 17:42:20',1),(198,'ShortNote','Write short note on OSI Model ',1,104,9,5,'2014-06-22 17:42:20','2014-06-22 17:42:20',1),(199,'ShortNote','Write short note on Tall ',3,105,9,5,'2014-06-22 17:42:20','2014-06-22 17:42:20',1),(200,'ShortNote','Trade Cycle ',3,106,9,5,'2014-06-22 17:42:20','2014-06-22 17:42:20',1),(201,'HtmlCode','Coding',5,107,9,5,'2014-06-22 17:42:20','2014-06-22 17:42:20',1),(202,'HtmlCode','Coding is horrible. Go to Hell',4,108,9,5,'2014-06-22 17:42:20','2014-06-22 17:42:20',1),(203,'FillInTheBlank','<noframe>',0,55,10,6,'2014-06-22 17:46:12','2014-06-22 17:46:12',1),(204,'FillInTheBlank','<frameset>',0,56,10,6,'2014-06-22 17:46:13','2014-06-22 17:46:13',1),(205,'FillInTheBlank','src',1,57,10,6,'2014-06-22 17:46:13','2014-06-22 17:46:13',1),(206,'FillInTheBlank','accounting software',0,58,10,6,'2014-06-22 17:46:13','2014-06-22 17:46:13',1),(207,'FillInTheBlank','moral',0,59,10,6,'2014-06-22 17:46:13','2014-06-22 17:46:13',1),(208,'FillInTheBlank','ethics',0,60,10,6,'2014-06-22 17:46:13','2014-06-22 17:46:13',1),(209,'FillInTheBlank','E-Commerce',1,61,10,6,'2014-06-22 17:46:13','2014-06-22 17:46:13',1),(210,'FillInTheBlank','paperless',1,62,10,6,'2014-06-22 17:46:13','2014-06-22 17:46:13',1),(211,'FillInTheBlank','Star',1,63,10,6,'2014-06-22 17:46:13','2014-06-22 17:46:13',1),(212,'FillInTheBlank','Tree',1,64,10,6,'2014-06-22 17:46:13','2014-06-22 17:46:13',1),(213,'TrueFalse','true',1,65,10,6,'2014-06-22 17:46:13','2014-06-22 17:46:13',1),(214,'TrueFalse','true',1,66,10,6,'2014-06-22 17:46:13','2014-06-22 17:46:13',1),(215,'TrueFalse','false',0,67,10,6,'2014-06-22 17:46:13','2014-06-22 17:46:13',1),(216,'TrueFalse','true',0,68,10,6,'2014-06-22 17:46:14','2014-06-22 17:46:14',1),(217,'TrueFalse','true',0,69,10,6,'2014-06-22 17:46:14','2014-06-22 17:46:14',1),(218,'TrueFalse','false',1,70,10,6,'2014-06-22 17:46:14','2014-06-22 17:46:14',1),(219,'TrueFalse','false',0,71,10,6,'2014-06-22 17:46:14','2014-06-22 17:46:14',1),(220,'TrueFalse','true',0,72,10,6,'2014-06-22 17:46:14','2014-06-22 17:46:14',1),(221,'TrueFalse','false',0,73,10,6,'2014-06-22 17:46:14','2014-06-22 17:46:14',1),(222,'TrueFalse','false',0,74,10,6,'2014-06-22 17:46:14','2014-06-22 17:46:14',1),(223,'Mcq1','b',0,75,10,6,'2014-06-22 17:46:14','2014-06-22 17:46:14',1),(224,'Mcq1','c',1,76,10,6,'2014-06-22 17:46:14','2014-06-22 17:46:14',1),(225,'Mcq1','b',0,77,10,6,'2014-06-22 17:46:14','2014-06-22 17:46:14',1),(226,'Mcq1','c',0,78,10,6,'2014-06-22 17:46:14','2014-06-22 17:46:14',1),(227,'Mcq1','c',1,79,10,6,'2014-06-22 17:46:14','2014-06-22 17:46:14',1),(228,'Mcq1','b',0,80,10,6,'2014-06-22 17:46:15','2014-06-22 17:46:15',1),(229,'Mcq1','a',0,81,10,6,'2014-06-22 17:46:15','2014-06-22 17:46:15',1),(230,'Mcq1','a',0,82,10,6,'2014-06-22 17:46:15','2014-06-22 17:46:15',1),(231,'Mcq1','a',0,83,10,6,'2014-06-22 17:46:15','2014-06-22 17:46:15',1),(232,'Mcq1','b',1,84,10,6,'2014-06-22 17:46:15','2014-06-22 17:46:15',1),(233,'Mcq1','a',0,85,10,6,'2014-06-22 17:46:15','2014-06-22 17:46:15',1),(234,'Mcq1','a',0,86,10,6,'2014-06-22 17:46:15','2014-06-22 17:46:15',1),(235,'Mcq1','c',0,87,10,6,'2014-06-22 17:46:15','2014-06-22 17:46:15',1),(236,'Mcq1','b',1,88,10,6,'2014-06-22 17:46:15','2014-06-22 17:46:15',1),(237,'Mcq1','b',0,89,10,6,'2014-06-22 17:46:15','2014-06-22 17:46:15',1),(238,'Mcq1','c',0,90,10,6,'2014-06-22 17:46:15','2014-06-22 17:46:15',1),(239,'Mcq1','d',0,91,10,6,'2014-06-22 17:46:16','2014-06-22 17:46:16',1),(240,'Mcq1','c',0,92,10,6,'2014-06-22 17:46:16','2014-06-22 17:46:16',1),(241,'Mcq1','b',0,93,10,6,'2014-06-22 17:46:16','2014-06-22 17:46:16',1),(242,'Mcq1','c',0,94,10,6,'2014-06-22 17:46:16','2014-06-22 17:46:16',1),(243,'Rearrange','abcd',0,102,10,6,'2014-06-22 17:46:17','2014-06-22 17:46:17',1),(244,'Rearrange','agedbcf',0,103,10,6,'2014-06-22 17:46:17','2014-06-22 17:46:17',1),(245,'ShortNote','OSI Model',1,104,10,6,'2014-06-22 17:46:17','2014-06-22 17:46:17',1),(246,'ShortNote','Tally ',0,105,10,6,'2014-06-22 17:46:18','2014-06-22 17:46:18',1),(247,'ShortNote','Trade Cycle ',2,106,10,6,'2014-06-22 17:46:18','2014-06-22 17:46:18',1),(248,'HtmlCode','Nothing to Write',5,107,10,6,'2014-06-22 17:46:18','2014-06-22 17:46:18',1),(249,'HtmlCode','I donno coding',3,108,10,6,'2014-06-22 17:46:18','2014-06-22 17:46:18',1),(250,'FillInTheBlank','<noframe>',0,55,11,7,'2014-06-22 17:49:29','2014-06-22 17:49:29',1),(251,'FillInTheBlank','<frameset>',0,56,11,7,'2014-06-22 17:49:29','2014-06-22 17:49:29',1),(252,'FillInTheBlank','src',1,57,11,7,'2014-06-22 17:49:29','2014-06-22 17:49:29',1),(253,'FillInTheBlank','accounting software',0,58,11,7,'2014-06-22 17:49:29','2014-06-22 17:49:29',1),(254,'FillInTheBlank','moral',0,59,11,7,'2014-06-22 17:49:29','2014-06-22 17:49:29',1),(255,'FillInTheBlank','ethics',0,60,11,7,'2014-06-22 17:49:29','2014-06-22 17:49:29',1),(256,'FillInTheBlank','E-Commerce',1,61,11,7,'2014-06-22 17:49:29','2014-06-22 17:49:29',1),(257,'FillInTheBlank','paperless',1,62,11,7,'2014-06-22 17:49:29','2014-06-22 17:49:29',1),(258,'FillInTheBlank','Star',1,63,11,7,'2014-06-22 17:49:30','2014-06-22 17:49:30',1),(259,'FillInTheBlank','Tree',1,64,11,7,'2014-06-22 17:49:30','2014-06-22 17:49:30',1),(260,'TrueFalse','true',1,65,11,7,'2014-06-22 17:49:30','2014-06-22 17:49:30',1),(261,'TrueFalse','true',1,66,11,7,'2014-06-22 17:49:30','2014-06-22 17:49:30',1),(262,'TrueFalse','true',1,67,11,7,'2014-06-22 17:49:30','2014-06-22 17:49:30',1),(263,'TrueFalse','true',0,68,11,7,'2014-06-22 17:49:30','2014-06-22 17:49:30',1),(264,'TrueFalse','true',0,69,11,7,'2014-06-22 17:49:30','2014-06-22 17:49:30',1),(265,'TrueFalse','true',0,70,11,7,'2014-06-22 17:49:30','2014-06-22 17:49:30',1),(266,'TrueFalse','true',0,71,11,7,'2014-06-22 17:49:30','2014-06-22 17:49:30',1),(267,'TrueFalse','true',0,72,11,7,'2014-06-22 17:49:30','2014-06-22 17:49:30',1),(268,'TrueFalse','true',0,73,11,7,'2014-06-22 17:49:30','2014-06-22 17:49:30',1),(269,'TrueFalse','true',0,74,11,7,'2014-06-22 17:49:30','2014-06-22 17:49:30',1),(270,'Mcq1','a',1,75,11,7,'2014-06-22 17:49:31','2014-06-22 17:49:31',1),(271,'Mcq1','a',0,76,11,7,'2014-06-22 17:49:31','2014-06-22 17:49:31',1),(272,'Mcq1','a',0,77,11,7,'2014-06-22 17:49:31','2014-06-22 17:49:31',1),(273,'Mcq1','a',0,78,11,7,'2014-06-22 17:49:31','2014-06-22 17:49:31',1),(274,'Mcq1','a',0,79,11,7,'2014-06-22 17:49:31','2014-06-22 17:49:31',1),(275,'Mcq1','a',1,80,11,7,'2014-06-22 17:49:31','2014-06-22 17:49:31',1),(276,'Mcq1','a',0,81,11,7,'2014-06-22 17:49:31','2014-06-22 17:49:31',1),(277,'Mcq1','a',0,82,11,7,'2014-06-22 17:49:31','2014-06-22 17:49:31',1),(278,'Mcq1','a',0,83,11,7,'2014-06-22 17:49:31','2014-06-22 17:49:31',1),(279,'Mcq1','a',0,84,11,7,'2014-06-22 17:49:31','2014-06-22 17:49:31',1),(280,'Mcq1','a',0,85,11,7,'2014-06-22 17:49:31','2014-06-22 17:49:31',1),(281,'Mcq1','a',0,86,11,7,'2014-06-22 17:49:31','2014-06-22 17:49:31',1),(282,'Mcq1','a',1,87,11,7,'2014-06-22 17:49:31','2014-06-22 17:49:31',1),(283,'Mcq1','a',0,88,11,7,'2014-06-22 17:49:31','2014-06-22 17:49:31',1),(284,'Mcq1','a',0,89,11,7,'2014-06-22 17:49:32','2014-06-22 17:49:32',1),(285,'Mcq1','a',0,90,11,7,'2014-06-22 17:49:32','2014-06-22 17:49:32',1),(286,'Mcq1','a',1,91,11,7,'2014-06-22 17:49:32','2014-06-22 17:49:32',1),(287,'Mcq1','a',0,92,11,7,'2014-06-22 17:49:32','2014-06-22 17:49:32',1),(288,'Mcq1','a',0,93,11,7,'2014-06-22 17:49:32','2014-06-22 17:49:32',1),(289,'Mcq1','a',0,94,11,7,'2014-06-22 17:49:32','2014-06-22 17:49:32',1),(290,'Rearrange','abcd',0,102,11,7,'2014-06-22 17:49:33','2014-06-22 17:49:33',1),(291,'Rearrange','agedbcf',0,103,11,7,'2014-06-22 17:49:33','2014-06-22 17:49:33',1),(292,'ShortNote','ervoke\r\n erger\r\nrtherthert\r\nerterthert\r\nrthrth\r\nrth\r\n\r\nrthrthrthrt',2,104,11,7,'2014-06-22 17:49:34','2014-06-22 17:49:34',1),(293,'ShortNote','ervoke\r\n erger\r\nrtherthert\r\nerterthert\r\nrthrth\r\nrth\r\n\r\nrthrthrthrt ',0,105,11,7,'2014-06-22 17:49:34','2014-06-22 17:49:34',1),(294,'ShortNote','ervoke\r\n erger\r\nrtherthert\r\nerterthert\r\nrthrth\r\nrth\r\n\r\nrthrthrthrt ',1,106,11,7,'2014-06-22 17:49:34','2014-06-22 17:49:34',1),(295,'HtmlCode','ervoke\r\n erger\r\nrtherthert\r\nerterthert\r\nrthrth\r\nrth\r\n\r\nrthrthrthrt',1,107,11,7,'2014-06-22 17:49:34','2014-06-22 17:49:34',1),(296,'HtmlCode','ervoke\r\n erger\r\nrtherthert\r\nerterthert\r\nrthrth\r\nrth\r\n\r\nrthrthrthrt',1,108,11,7,'2014-06-22 17:49:34','2014-06-22 17:49:34',1),(297,'FillInTheBlank','<FRAMESET>',1,109,9,8,'2014-06-22 18:02:26','2014-06-22 18:02:26',1),(298,'FillInTheBlank','<NOFRAME>',1,110,9,8,'2014-06-22 18:02:26','2014-06-22 18:02:26',1),(299,'FillInTheBlank','SRC',1,111,9,8,'2014-06-22 18:02:26','2014-06-22 18:02:26',1),(300,'FillInTheBlank','Accountig Software',1,112,9,8,'2014-06-22 18:02:27','2014-06-22 18:02:27',1),(301,'FillInTheBlank','ethics',1,113,9,8,'2014-06-22 18:02:27','2014-06-22 18:02:27',1),(302,'FillInTheBlank','moral',1,114,9,8,'2014-06-22 18:02:27','2014-06-22 18:02:27',1),(303,'FillInTheBlank','E-Commerce',1,115,9,8,'2014-06-22 18:02:27','2014-06-22 18:02:27',1),(304,'FillInTheBlank','Paperless',1,116,9,8,'2014-06-22 18:02:27','2014-06-22 18:02:27',1),(305,'FillInTheBlank','Star',1,117,9,8,'2014-06-22 18:02:27','2014-06-22 18:02:27',1),(306,'FillInTheBlank','Tree',1,118,9,8,'2014-06-22 18:02:27','2014-06-22 18:02:27',1),(307,'TrueFalse','true',1,119,9,8,'2014-06-22 18:02:27','2014-06-22 18:02:27',1),(308,'TrueFalse','true',1,120,9,8,'2014-06-22 18:02:27','2014-06-22 18:02:27',1),(309,'TrueFalse','false',0,121,9,8,'2014-06-22 18:02:27','2014-06-22 18:02:27',1),(310,'TrueFalse','false',1,122,9,8,'2014-06-22 18:02:27','2014-06-22 18:02:27',1),(311,'TrueFalse','true',0,123,9,8,'2014-06-22 18:02:27','2014-06-22 18:02:27',1),(312,'TrueFalse','true',0,124,9,8,'2014-06-22 18:02:28','2014-06-22 18:02:28',1),(313,'TrueFalse','true',0,125,9,8,'2014-06-22 18:02:28','2014-06-22 18:02:28',1),(314,'TrueFalse','false',1,126,9,8,'2014-06-22 18:02:28','2014-06-22 18:02:28',1),(315,'TrueFalse','false',0,127,9,8,'2014-06-22 18:02:28','2014-06-22 18:02:28',1),(316,'TrueFalse','true',0,128,9,8,'2014-06-22 18:02:28','2014-06-22 18:02:28',1),(317,'Mcq1','a',1,129,9,8,'2014-06-22 18:02:28','2014-06-22 18:02:28',1),(318,'Mcq1','b',0,130,9,8,'2014-06-22 18:02:28','2014-06-22 18:02:28',1),(319,'Mcq1','b',0,131,9,8,'2014-06-22 18:02:28','2014-06-22 18:02:28',1),(320,'Mcq1','a',0,132,9,8,'2014-06-22 18:02:28','2014-06-22 18:02:28',1),(321,'Mcq1','a',0,133,9,8,'2014-06-22 18:02:28','2014-06-22 18:02:28',1),(322,'Mcq1','c',0,134,9,8,'2014-06-22 18:02:28','2014-06-22 18:02:28',1),(323,'Mcq1','a',0,135,9,8,'2014-06-22 18:02:28','2014-06-22 18:02:28',1),(324,'Mcq1','a',0,136,9,8,'2014-06-22 18:02:29','2014-06-22 18:02:29',1),(325,'Mcq1','c',0,137,9,8,'2014-06-22 18:02:29','2014-06-22 18:02:29',1),(326,'Mcq1','d',0,138,9,8,'2014-06-22 18:02:29','2014-06-22 18:02:29',1),(327,'Mcq1','d',0,139,9,8,'2014-06-22 18:02:29','2014-06-22 18:02:29',1),(328,'Mcq1','c',0,140,9,8,'2014-06-22 18:02:29','2014-06-22 18:02:29',1),(329,'Mcq1','b',0,141,9,8,'2014-06-22 18:02:29','2014-06-22 18:02:29',1),(330,'Mcq1','c',0,142,9,8,'2014-06-22 18:02:29','2014-06-22 18:02:29',1),(331,'Mcq1','d',0,143,9,8,'2014-06-22 18:02:29','2014-06-22 18:02:29',1),(332,'Mcq1','b',0,144,9,8,'2014-06-22 18:02:29','2014-06-22 18:02:29',1),(333,'Mcq1','c',0,145,9,8,'2014-06-22 18:02:29','2014-06-22 18:02:29',1),(334,'Mcq1','a',0,146,9,8,'2014-06-22 18:02:29','2014-06-22 18:02:29',1),(335,'Mcq1','d',0,147,9,8,'2014-06-22 18:02:30','2014-06-22 18:02:30',1),(336,'Mcq1','a',0,148,9,8,'2014-06-22 18:02:30','2014-06-22 18:02:30',1),(337,'Mcq2','a||b||a||c||d||e',3,149,9,8,'2014-06-22 18:02:30','2014-06-22 18:10:46',1),(338,'Mcq2','b||c||b||d||b||c',2,150,9,8,'2014-06-22 18:02:30','2014-06-22 18:10:46',1),(339,'Mcq2','a||b||c||e||a||e',1,151,9,8,'2014-06-22 18:02:30','2014-06-22 18:10:46',1),(340,'Mcq2','c||d||a||d||c||d',2,152,9,8,'2014-06-22 18:02:30','2014-06-22 18:10:46',1),(341,'Mcq2','c||e||b||e||a||b',2,153,9,8,'2014-06-22 18:02:30','2014-06-22 18:10:47',1),(342,'Mcq3','b||c||d||b||d||f||a||b||d',2,154,9,8,'2014-06-22 18:02:31','2014-06-22 18:10:47',1),(343,'Mcq3','d||e||f||a||c||e||c||e||f',1,155,9,8,'2014-06-22 18:02:31','2014-06-22 18:10:47',1),(344,'Rearrange','abcd',0,156,9,8,'2014-06-22 18:02:31','2014-06-22 18:02:31',1),(345,'Rearrange','abdcefg',0,157,9,8,'2014-06-22 18:02:31','2014-06-22 18:02:31',1),(346,'ShortNote','eiurgbqerg \r\nergewrg\r\nrthrther\r\nerthertherth\r\nertherth\r\nrethertherth\r\nertherthert\r\noihrtiortherth',2,158,9,8,'2014-06-22 18:02:31','2014-06-22 18:02:31',1),(347,'ShortNote','eiurgbqerg \r\nergewrg\r\nrthrther\r\nerthertherth\r\nertherth\r\nrethertherth\r\nertherthert\r\noihrtiortherth ',2,159,9,8,'2014-06-22 18:02:31','2014-06-22 18:02:31',1),(348,'ShortNote','eiurgbqerg \r\nergewrg\r\nrthrther\r\nerthertherth\r\nertherth\r\nrethertherth\r\nertherthert\r\noihrtiortherth ',0,160,9,8,'2014-06-22 18:02:32','2014-06-22 18:02:32',1),(349,'HtmlCode','eiurgbqerg \r\nergewrg\r\nrthrther\r\nerthertherth\r\nertherth\r\nrethertherth\r\nertherthert\r\noihrtiortherth',1,161,9,8,'2014-06-22 18:02:32','2014-06-22 18:02:32',1),(350,'HtmlCode','eiurgbqerg \r\nergewrg\r\nrthrther\r\nerthertherth\r\nertherth\r\nrethertherth\r\nertherthert\r\noihrtiortherth',3,162,9,8,'2014-06-22 18:02:32','2014-06-22 18:02:32',1),(351,'FillInTheBlank','<FRAMESET>',1,109,10,9,'2014-06-22 18:07:00','2014-06-22 18:07:00',1),(352,'FillInTheBlank','<NOFRAME>',1,110,10,9,'2014-06-22 18:07:00','2014-06-22 18:07:00',1),(353,'FillInTheBlank','SRC',1,111,10,9,'2014-06-22 18:07:00','2014-06-22 18:07:00',1),(354,'FillInTheBlank','Accountig Software',1,112,10,9,'2014-06-22 18:07:00','2014-06-22 18:07:00',1),(355,'FillInTheBlank','ethics',1,113,10,9,'2014-06-22 18:07:00','2014-06-22 18:07:00',1),(356,'FillInTheBlank','moral',1,114,10,9,'2014-06-22 18:07:00','2014-06-22 18:07:00',1),(357,'FillInTheBlank','E-Commerce',1,115,10,9,'2014-06-22 18:07:00','2014-06-22 18:07:00',1),(358,'FillInTheBlank','Paperless',1,116,10,9,'2014-06-22 18:07:00','2014-06-22 18:07:00',1),(359,'FillInTheBlank','Star',1,117,10,9,'2014-06-22 18:07:00','2014-06-22 18:07:00',1),(360,'FillInTheBlank','Tree',1,118,10,9,'2014-06-22 18:07:00','2014-06-22 18:07:00',1),(361,'TrueFalse','true',1,119,10,9,'2014-06-22 18:07:00','2014-06-22 18:07:00',1),(362,'TrueFalse','false',0,120,10,9,'2014-06-22 18:07:01','2014-06-22 18:07:01',1),(363,'TrueFalse','false',0,121,10,9,'2014-06-22 18:07:01','2014-06-22 18:07:01',1),(364,'TrueFalse','false',1,122,10,9,'2014-06-22 18:07:01','2014-06-22 18:07:01',1),(365,'TrueFalse','true',0,123,10,9,'2014-06-22 18:07:01','2014-06-22 18:07:01',1),(366,'TrueFalse','true',0,124,10,9,'2014-06-22 18:07:01','2014-06-22 18:07:01',1),(367,'TrueFalse','true',0,125,10,9,'2014-06-22 18:07:01','2014-06-22 18:07:01',1),(368,'TrueFalse','false',1,126,10,9,'2014-06-22 18:07:01','2014-06-22 18:07:01',1),(369,'TrueFalse','false',0,127,10,9,'2014-06-22 18:07:01','2014-06-22 18:07:01',1),(370,'TrueFalse','true',0,128,10,9,'2014-06-22 18:07:01','2014-06-22 18:07:01',1),(371,'Mcq1','b',0,129,10,9,'2014-06-22 18:07:01','2014-06-22 18:07:01',1),(372,'Mcq1','c',1,130,10,9,'2014-06-22 18:07:01','2014-06-22 18:07:01',1),(373,'Mcq1','d',1,131,10,9,'2014-06-22 18:07:01','2014-06-22 18:07:01',1),(374,'Mcq1','a',0,132,10,9,'2014-06-22 18:07:01','2014-06-22 18:07:01',1),(375,'Mcq1','b',0,133,10,9,'2014-06-22 18:07:01','2014-06-22 18:07:01',1),(376,'Mcq1','c',0,134,10,9,'2014-06-22 18:07:01','2014-06-22 18:07:01',1),(377,'Mcq1','d',0,135,10,9,'2014-06-22 18:07:02','2014-06-22 18:07:02',1),(378,'Mcq1','a',0,136,10,9,'2014-06-22 18:07:02','2014-06-22 18:07:02',1),(379,'Mcq1','b',0,137,10,9,'2014-06-22 18:07:02','2014-06-22 18:07:02',1),(380,'Mcq1','c',0,138,10,9,'2014-06-22 18:07:02','2014-06-22 18:07:02',1),(381,'Mcq1','d',0,139,10,9,'2014-06-22 18:07:02','2014-06-22 18:07:02',1),(382,'Mcq1','a',0,140,10,9,'2014-06-22 18:07:02','2014-06-22 18:07:02',1),(383,'Mcq1','b',0,141,10,9,'2014-06-22 18:07:02','2014-06-22 18:07:02',1),(384,'Mcq1','c',0,142,10,9,'2014-06-22 18:07:02','2014-06-22 18:07:02',1),(385,'Mcq1','c',1,143,10,9,'2014-06-22 18:07:02','2014-06-22 18:07:02',1),(386,'Mcq1','d',1,144,10,9,'2014-06-22 18:07:02','2014-06-22 18:07:02',1),(387,'Mcq1','a',1,145,10,9,'2014-06-22 18:07:02','2014-06-22 18:07:02',1),(388,'Mcq1','b',1,146,10,9,'2014-06-22 18:07:02','2014-06-22 18:07:02',1),(389,'Mcq1','c',1,147,10,9,'2014-06-22 18:07:02','2014-06-22 18:07:02',1),(390,'Mcq1','d',1,148,10,9,'2014-06-22 18:07:02','2014-06-22 18:07:02',1),(391,'Rearrange','abcd',0,156,10,9,'2014-06-22 18:07:03','2014-06-22 18:07:03',1),(392,'Rearrange','abdcefg',0,157,10,9,'2014-06-22 18:07:03','2014-06-22 18:07:03',1),(393,'ShortNote',' @test_to_start = Test.where(standard: current_user.standard,is_published: true, is_over: false, institute_id: current_user.institute.id).where(\'id NOT IN (?)\', @tests_given_by_user).first rescue nil\r\n',1,158,10,9,'2014-06-22 18:07:03','2014-06-22 18:07:03',1),(394,'ShortNote',' @test_to_start = Test.where(standard: current_user.standard,is_published: true, is_over: false, institute_id: current_user.institute.id).where(\'id NOT IN (?)\', @tests_given_by_user).first rescue nil\r\n ',3,159,10,9,'2014-06-22 18:07:04','2014-06-22 18:07:04',1),(395,'ShortNote',' @test_to_start = Test.where(standard: current_user.standard,is_published: true, is_over: false, institute_id: current_user.institute.id).where(\'id NOT IN (?)\', @tests_given_by_user).first rescue nil\r\n ',1,160,10,9,'2014-06-22 18:07:04','2014-06-22 18:07:04',1),(396,'HtmlCode',' @test_to_start = Test.where(standard: current_user.standard,is_published: true, is_over: false, institute_id: current_user.institute.id).where(\'id NOT IN (?)\', @tests_given_by_user).first rescue nil\r\n',3,161,10,9,'2014-06-22 18:07:04','2014-06-22 18:07:04',1),(397,'HtmlCode',' @test_to_start = Test.where(standard: current_user.standard,is_published: true, is_over: false, institute_id: current_user.institute.id).where(\'id NOT IN (?)\', @tests_given_by_user).first rescue nil\r\n',4,162,10,9,'2014-06-22 18:07:04','2014-06-22 18:07:04',1),(398,'FillInTheBlank','<FRAMESET>',1,109,11,10,'2014-06-22 18:10:44','2014-06-22 18:10:44',1),(399,'FillInTheBlank','<NOFRAME>',1,110,11,10,'2014-06-22 18:10:44','2014-06-22 18:10:44',1),(400,'FillInTheBlank','SRC',1,111,11,10,'2014-06-22 18:10:44','2014-06-22 18:10:44',1),(401,'FillInTheBlank','Accountig Software',1,112,11,10,'2014-06-22 18:10:44','2014-06-22 18:10:44',1),(402,'FillInTheBlank','ethics',1,113,11,10,'2014-06-22 18:10:44','2014-06-22 18:10:44',1),(403,'FillInTheBlank','moral',1,114,11,10,'2014-06-22 18:10:44','2014-06-22 18:10:44',1),(404,'FillInTheBlank','E-Commerce',1,115,11,10,'2014-06-22 18:10:44','2014-06-22 18:10:44',1),(405,'FillInTheBlank','Paperless',1,116,11,10,'2014-06-22 18:10:44','2014-06-22 18:10:44',1),(406,'FillInTheBlank','Star',1,117,11,10,'2014-06-22 18:10:44','2014-06-22 18:10:44',1),(407,'FillInTheBlank','Tree',1,118,11,10,'2014-06-22 18:10:44','2014-06-22 18:10:44',1),(408,'TrueFalse','false',0,119,11,10,'2014-06-22 18:10:44','2014-06-22 18:10:44',1),(409,'TrueFalse','true',1,120,11,10,'2014-06-22 18:10:44','2014-06-22 18:10:44',1),(410,'TrueFalse','false',0,121,11,10,'2014-06-22 18:10:44','2014-06-22 18:10:44',1),(411,'TrueFalse','false',1,122,11,10,'2014-06-22 18:10:44','2014-06-22 18:10:44',1),(412,'TrueFalse','true',0,123,11,10,'2014-06-22 18:10:44','2014-06-22 18:10:44',1),(413,'TrueFalse','true',0,124,11,10,'2014-06-22 18:10:44','2014-06-22 18:10:44',1),(414,'TrueFalse','true',0,125,11,10,'2014-06-22 18:10:45','2014-06-22 18:10:45',1),(415,'TrueFalse','false',1,126,11,10,'2014-06-22 18:10:45','2014-06-22 18:10:45',1),(416,'TrueFalse','true',0,127,11,10,'2014-06-22 18:10:45','2014-06-22 18:10:45',1),(417,'TrueFalse','false',0,128,11,10,'2014-06-22 18:10:45','2014-06-22 18:10:45',1),(418,'Mcq1','a',1,129,11,10,'2014-06-22 18:10:45','2014-06-22 18:10:45',1),(419,'Mcq1','b',0,130,11,10,'2014-06-22 18:10:45','2014-06-22 18:10:45',1),(420,'Mcq1','a',0,131,11,10,'2014-06-22 18:10:45','2014-06-22 18:10:45',1),(421,'Mcq1','b',1,132,11,10,'2014-06-22 18:10:45','2014-06-22 18:10:45',1),(422,'Mcq1','c',1,133,11,10,'2014-06-22 18:10:45','2014-06-22 18:10:45',1),(423,'Mcq1','d',0,134,11,10,'2014-06-22 18:10:45','2014-06-22 18:10:45',1),(424,'Mcq1','a',0,135,11,10,'2014-06-22 18:10:45','2014-06-22 18:10:45',1),(425,'Mcq1','b',0,136,11,10,'2014-06-22 18:10:45','2014-06-22 18:10:45',1),(426,'Mcq1','c',0,137,11,10,'2014-06-22 18:10:45','2014-06-22 18:10:45',1),(427,'Mcq1','a',0,138,11,10,'2014-06-22 18:10:45','2014-06-22 18:10:45',1),(428,'Mcq1','c',1,139,11,10,'2014-06-22 18:10:45','2014-06-22 18:10:45',1),(429,'Mcq1','d',1,140,11,10,'2014-06-22 18:10:45','2014-06-22 18:10:45',1),(430,'Mcq1','b',0,141,11,10,'2014-06-22 18:10:46','2014-06-22 18:10:46',1),(431,'Mcq1','a',0,142,11,10,'2014-06-22 18:10:46','2014-06-22 18:10:46',1),(432,'Mcq1','c',1,143,11,10,'2014-06-22 18:10:46','2014-06-22 18:10:46',1),(433,'Mcq1','d',1,144,11,10,'2014-06-22 18:10:46','2014-06-22 18:10:46',1),(434,'Mcq1','a',1,145,11,10,'2014-06-22 18:10:46','2014-06-22 18:10:46',1),(435,'Mcq1','b',1,146,11,10,'2014-06-22 18:10:46','2014-06-22 18:10:46',1),(436,'Mcq1','c',1,147,11,10,'2014-06-22 18:10:46','2014-06-22 18:10:46',1),(437,'Mcq1','a',0,148,11,10,'2014-06-22 18:10:46','2014-06-22 18:10:46',1),(438,'Rearrange','abcd',0,156,11,10,'2014-06-22 18:10:47','2014-06-22 18:10:47',1),(439,'Rearrange','abdcefg',0,157,11,10,'2014-06-22 18:10:47','2014-06-22 18:10:47',1),(440,'ShortNote','Working of CGI (a)Server receives the request and invokes appropriate CGI program (b)The request is displayed on the web page. (c)Web browser sends a request. (d)Script performs its action.',1,158,11,10,'2014-06-22 18:10:47','2014-06-22 18:10:47',1),(441,'ShortNote','Working of CGI (a)Server receives the request and invokes appropriate CGI program (b)The request is displayed on the web page. (c)Web browser sends a request. (d)Script performs its action. ',3,159,11,10,'2014-06-22 18:10:47','2014-06-22 18:10:47',1),(442,'ShortNote','Working of CGI (a)Server receives the request and invokes appropriate CGI program (b)The request is displayed on the web page. (c)Web browser sends a request. (d)Script performs its action. ',0,160,11,10,'2014-06-22 18:10:47','2014-06-22 18:10:47',1),(443,'HtmlCode','Working of CGI (a)Server receives the request and invokes appropriate CGI program (b)The request is displayed on the web page. (c)Web browser sends a request. (d)Script performs its action.',1,161,11,10,'2014-06-22 18:10:47','2014-06-22 18:10:47',1),(444,'HtmlCode','Working of CGI (a)Server receives the request and invokes appropriate CGI program (b)The request is displayed on the web page. (c)Web browser sends a request. (d)Script performs its action.',2,162,11,10,'2014-06-22 18:10:47','2014-06-22 18:10:47',1);
/*!40000 ALTER TABLE `result_details` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `results`
--
DROP TABLE IF EXISTS `results`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `results` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`sub_score` int(11) DEFAULT '0',
`obj_score` int(11) NOT NULL,
`time_taken` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`test_id` int(11) NOT NULL,
`user_id` int(11) NOT NULL,
`created_at` datetime DEFAULT NULL,
`updated_at` datetime DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `results`
--
LOCK TABLES `results` WRITE;
/*!40000 ALTER TABLE `results` DISABLE KEYS */;
INSERT INTO `results` VALUES (2,12,36,'0 Hrs :5 Mins :36 Secs',1,9,'2014-06-22 17:13:04','2014-06-22 17:13:12'),(3,14,14,'0 Hrs :3 Mins :22 Secs',1,10,'2014-06-22 17:19:45','2014-06-22 17:19:49'),(4,12,13,'0 Hrs :2 Mins :44 Secs',1,11,'2014-06-22 17:23:13','2014-06-22 17:23:17'),(5,16,34,'0 Hrs :4 Mins :28 Secs',2,9,'2014-06-22 17:42:14','2014-06-22 17:42:20'),(6,11,12,'0 Hrs :2 Mins :54 Secs',2,10,'2014-06-22 17:46:12','2014-06-22 17:46:18'),(7,5,12,'0 Hrs :2 Mins :11 Secs',2,11,'2014-06-22 17:49:29','2014-06-22 17:49:34'),(8,8,28,'0 Hrs :7 Mins :52 Secs',3,9,'2014-06-22 18:02:26','2014-06-22 18:02:32'),(9,12,21,'0 Hrs :2 Mins :55 Secs',3,10,'2014-06-22 18:07:00','2014-06-22 18:07:04'),(10,7,23,'0 Hrs :3 Mins :6 Secs',3,11,'2014-06-22 18:10:44','2014-06-22 18:10:48');
/*!40000 ALTER TABLE `results` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `roles`
--
DROP TABLE IF EXISTS `roles`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `roles` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`description` varchar(255) COLLATE utf8_unicode_ci DEFAULT '',
`created_at` datetime DEFAULT NULL,
`updated_at` datetime DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `roles`
--
LOCK TABLES `roles` WRITE;
/*!40000 ALTER TABLE `roles` DISABLE KEYS */;
INSERT INTO `roles` VALUES (1,'superadmin','Super Admin Role','2014-06-22 15:51:26','2014-06-22 15:51:26'),(2,'institute_manager','Institute Manager Role','2014-06-22 15:51:26','2014-06-22 15:51:26'),(3,'student','Student Role','2014-06-22 15:51:26','2014-06-22 15:51:26');
/*!40000 ALTER TABLE `roles` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `schema_migrations`
--
DROP TABLE IF EXISTS `schema_migrations`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `schema_migrations` (
`version` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
UNIQUE KEY `unique_schema_migrations` (`version`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `schema_migrations`
--
LOCK TABLES `schema_migrations` WRITE;
/*!40000 ALTER TABLE `schema_migrations` DISABLE KEYS */;
INSERT INTO `schema_migrations` VALUES ('20140504141542'),('20140504145450'),('20140504153138'),('20140504173238'),('20140504174403'),('20140505162508'),('20140505180036'),('20140509164316'),('20140509165309'),('20140509165429'),('20140510095654'),('20140518114754'),('20140531131435'),('20140609093113'),('20140609102506'),('20140610140609'),('20140610141126'),('20140621152318'),('20140622122443');
/*!40000 ALTER TABLE `schema_migrations` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `tests`
--
DROP TABLE IF EXISTS `tests`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `tests` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`is_published` tinyint(1) DEFAULT '0',
`is_over` tinyint(1) DEFAULT '0',
`created_by` int(11) DEFAULT NULL,
`marked_over_by` int(11) DEFAULT NULL,
`published_by` int(11) DEFAULT NULL,
`total_marks` int(11) NOT NULL,
`passing_marks` int(11) NOT NULL,
`time_hrs` int(11) NOT NULL,
`time_mins` int(11) NOT NULL,
`institute_id` int(11) NOT NULL,
`created_at` datetime DEFAULT NULL,
`updated_at` datetime DEFAULT NULL,
`standard` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`is_checking_completed` tinyint(1) DEFAULT '0',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `tests`
--
LOCK TABLES `tests` WRITE;
/*!40000 ALTER TABLE `tests` DISABLE KEYS */;
INSERT INTO `tests` VALUES (1,'Test 1',1,1,1,1,1,80,28,1,30,1,'2014-06-22 16:53:06','2014-06-22 17:29:35','SYJC',1),(2,'Test 2',1,1,1,1,1,80,28,2,30,1,'2014-06-22 16:54:15','2014-06-22 17:51:37','SYJC',1),(3,'Test 3',1,1,1,1,1,80,28,2,30,1,'2014-06-22 16:55:20','2014-06-22 18:11:32','SYJC',0);
/*!40000 ALTER TABLE `tests` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `users`
--
DROP TABLE IF EXISTS `users`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `users` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`email` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
`encrypted_password` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
`reset_password_token` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`reset_password_sent_at` datetime DEFAULT NULL,
`remember_created_at` datetime DEFAULT NULL,
`sign_in_count` int(11) NOT NULL DEFAULT '0',
`current_sign_in_at` datetime DEFAULT NULL,
`last_sign_in_at` datetime DEFAULT NULL,
`current_sign_in_ip` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`last_sign_in_ip` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`created_at` datetime DEFAULT NULL,
`updated_at` datetime DEFAULT NULL,
`role_id` int(11) DEFAULT NULL,
`centre_id` int(11) DEFAULT NULL,
`name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`standard` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`has_subscribed` tinyint(1) DEFAULT '0',
`institute_id` int(11) DEFAULT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `index_users_on_email` (`email`) USING BTREE,
UNIQUE KEY `index_users_on_reset_password_token` (`reset_password_token`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=14 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `users`
--
LOCK TABLES `users` WRITE;
/*!40000 ALTER TABLE `users` DISABLE KEYS */;
INSERT INTO `users` VALUES (1,'[email protected]','$2a$10$IvzOy1BjlJujE0dLyI8ChusFY92rewC9801IxudDY/zRlu2a5azaq',NULL,NULL,'2014-06-22 18:11:22',6,'2014-06-22 18:11:22','2014-06-22 17:50:28','127.0.0.1','127.0.0.1','2014-06-22 15:51:27','2014-06-22 18:11:22',1,1,'Nikunj Thakkar','ADMIN',0,1),(2,'[email protected]','$2a$10$zI0dDpTlpIsq9gA6etsig.vKbPwvLTH9o/gSntO4oV49VUP4ua4s6',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,'2014-06-22 15:51:27','2014-06-22 15:51:27',1,1,'Shraddha M','ADMIN',0,1),(3,'[email protected]','$2a$10$7i.H0LWN6YWFDw/ngNcAjeleoIDJA7u/vB0iCWDtaACFfYJwlEt.y',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,'2014-06-22 15:51:28','2014-06-22 15:51:28',1,1,'Hiren Thakkar','ADMIN',0,1),(4,'[email protected]','$2a$10$gJL4RJMB0B.gH9OIUkgP0ey9T6aw8T1YcU/Ol0V18KcN6F5eP.DEi',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,'2014-06-22 15:51:28','2014-06-22 15:51:28',3,1,'Student FYJC','FYJC',0,1),(5,'[email protected]','$2a$10$O2bcvEctz/NEFn0FT.V9sOdRrlN41plU6FWkwZ1RzpgKX1PgMDH0O',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,'2014-06-22 15:51:29','2014-06-22 15:51:29',3,1,'Student FYJC','FYJC',0,1),(6,'[email protected]','$2a$10$JWcABfXq01zf0AExlrw5muLRvzJxCYsm5DXQEg90aPvwAdEo/aGue',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,'2014-06-22 15:51:29','2014-06-22 15:51:29',3,1,'Student FYJC','FYJC',0,1),(7,'[email protected]','$2a$10$MVstTfLdzypyTvE0E4EO8eAeZbxu.BPnRPJmnLiGIWmzrjGv5BSCm',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,'2014-06-22 15:51:29','2014-06-22 15:51:29',3,1,'Student FYJC','FYJC',0,1),(8,'[email protected]','$2a$10$OTI9IHGXdFcCZSeTg0xTtOBAdkn2IXAOOzVo/FvFB5rIkL6pT78wK',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,'2014-06-22 15:51:30','2014-06-22 15:51:30',3,1,'Student FYJC','FYJC',0,1),(9,'[email protected]','$2a$10$n/pr62DKQ2mjL0nqKULpg.D8mFjS8dzVTlo2uhvm5iE2V/OX9KV3m',NULL,NULL,NULL,5,'2014-06-22 17:54:27','2014-06-22 17:36:43','127.0.0.1','127.0.0.1','2014-06-22 15:51:30','2014-06-22 18:03:38',3,1,'Student SYJC','SYJC',0,1),(10,'[email protected]','$2a$10$OqBJa1BnwhtAUNkZxTLwiumcwWibB9WI9ANinO9hJmtmq/gp7lgFy',NULL,NULL,NULL,3,'2014-06-22 18:03:56','2014-06-22 17:43:10','127.0.0.1','127.0.0.1','2014-06-22 15:51:31','2014-06-22 18:07:16',3,1,'Student SYJC','SYJC',0,1),(11,'[email protected]','$2a$10$LDZjo1upl83nrcjwomvZV.qs5B60XI7hQkU.JjT6bOwN9r6u5HqZS',NULL,NULL,NULL,3,'2014-06-22 18:07:33','2014-06-22 17:47:05','127.0.0.1','127.0.0.1','2014-06-22 15:51:31','2014-06-22 18:11:08',3,1,'Student SYJC','SYJC',0,1),(12,'[email protected]','$2a$10$uUW1aOjuKqB5/PeIZuA6uO/wfrBQYikDzo/dVlTsiN2o6mwLOZlbG',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,'2014-06-22 15:51:31','2014-06-22 15:51:31',3,1,'Student SYJC','SYJC',0,1),(13,'[email protected]','$2a$10$2MNYY2zR/syCdLu44VjJO.3g5RMn00X6QG3UtrdnAjz/NTs8DFMau',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,'2014-06-22 15:51:32','2014-06-22 15:51:32',3,1,'Student SYJC','SYJC',0,1);
/*!40000 ALTER TABLE `users` ENABLE KEYS */;
UNLOCK TABLES;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
-- Dump completed on 2014-06-23 0:00:09