Quiz demo link http://embed.plnkr.co/B10yZ4/preview The AngularJs code-sample var app = angular.module( 'quizApp' , []); app.controller( 'quizCtrl' , function ($scope) { $scope.checkResult = function (item) { //check answers. }; $scope.calRresult = function () { //calculat result. }; $scope.quizAnsw = [{ ans: 'Igor Minar' , correct: 0 }, { ans: 'Brad Green' , correct: 0 }, { ans: 'Misko Hevery' , correct: 1 }, { ans: 'Steve Souders' , correct: 0 }]; }); The full example code(HTML + AngularJs) < !DOCTYPE html > < html > < head > < meta charset ="utf-8" /> < title > Quiz questions in AngularJs </ title > < link rel ="stylesheet" href ="style.css" /> ...
Angular, React, JavaScript, Java, PHP, SQL, C#, Vue, NodeJs, TypeScript and Interview Questions Answers