Amal Asiri
CREATE TABLE `answers` (
`id` int(11) NOT NULL,
`question_id` int(11) DEFAULT NULL,
`answer_text` text NOT NULL,
`is_correct` tinyint(1) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
--
-- Dumping data for table `answers`
INSERT INTO `answers` (`id`, `question_id`, `answer_text`, `is_correct`) VALUES
(1, 1, 'To monitor and filter incoming and outgoing network traffic', 1),
(2, 1, 'To increase the network speed', 0),
(3, 1, 'To serve as a web server', 0),
(4, 1, 'To provide email services to users', 0),
(5, 2, 'Virus attaches to a program, worm is standalone', 1),