1. Who has been named as the 2015 Time Magazine’s ‘Person of the Year’?
[A]Angela Merkel
[B]Abu Bakr al-Baghdadi
[C]Donald Trump
[D]Hassan Rouhani
Show Answer
Angela Merkel The German Chancellor Ms. Angela Merkel (61) has been named as the 2015 Time magazine’s ‘Person of the Year’. The magazine cited her role in Europe’s crises over migration and Greek debt.
1. Who has been named as the 2015 Time Magazine’s ‘Person of the Year’?
[A]Angela Merkel
[B]Abu Bakr al-Baghdadi
[C]Donald Trump
[D]Hassan Rouhani
Show Answer
Angela Merkel The German Chancellor...
Saturday, 12 December 2015 | comments
var numQues = 10;
var numChoi = 4;
var answers = new Array(10);
answers[0] = "369";
answers[1] = "3%";
answers[2] = "None";
answers[3] = "598";
answers[4] = "12500";
answers[5] = "55";
answers[6] = "150.15";
answers[7] = "5040";
answers[8] = "3600";
answers[9] = "40";
function getCheckedValue( radioName ){
var radios = document.getElementsByName( radioName ); // Get radio group by-name
for(var y=0; yradios.length; y++)
if(radios[y].checked) return radios[y].value; // return the checked value
}
function getScore(form) {
var score = 0;
var currElt;
var currSelection;
for (i=0; inumQues;...
test 3
Saturday, 12 December 2015 | comments
$(document).ready(function() {
$('.ans').hide();
$('.submit').click(function(event) {
$('.ans').show();
});
!--
var numQues = 10;
var numChoi = 4;
var answers = new Array(10);
answers[0] = "369";
answers[1] = "3%";
answers[2] = "None";
answers[3] = "598";
answers[4] = "12500";
answers[5] = "55";
answers[6] = "150.15";
answers[7] = "5040";
answers[8] = "3600";
answers[9] = "40";
function getScore(form) {
var score = 0;
var currElt;
...
test2
Saturday, 12 December 2015 | comments
div.timer {
border:2px #666666 solid;
width:150px;
height:35px;
line-height:35px;
font-size:28px;
font-family:"Courier New", Courier, monospace;
text-align:center;
margin:5px;
}
.ans
{
color:blue;
font-weight:bold;
padding-left: 20px;
}
.submit
{
position: relative;
cursor: pointer;
height: 30px;
width: 100px;
font-weight: bold;
border-radius: 5px;
background: #336699;
font-size: 20px;
}
.start, .stop, .re
{
position: relative;
cursor: pointer;
...
show answer
Saturday, 12 December 2015 | comments
$(document).ready(function(){
$("a.dropdown-link").click(function(e) {
e.preventDefault();
var $div = $(this).next('.dropdown-container');
$(".dropdown-container").not($div).hide();
if ($div.is(":visible")) {
$div.hide()
} else {
$div.show();
}
});
$(document).click(function(e){
var p = $(e.target).closest('.dropdown').length
if (!p) {
$(".dropdown-container").hide();
}
});
});
Options
Item 1
Item 2
Item 3
Options
Item 1
Item 2
Item 3
Options
Item 1
Item 2
Item...
Monday, 7 December 2015 | comments
// set minutes
var mins = 10;
// calculate the seconds (don't change this! unless time progresses at a different speed for you...)
var secs = mins * 60;
function countdown() {
setTimeout('Decrement()',1000);
}
function Decrement() {
if (document.getElementById) {
minutes = document.getElementById("minutes");
seconds = document.getElementById("seconds");
// if less than a minute remaining
if (seconds 59) {
seconds.value = secs;
}
else {
minutes.value = getminutes();
seconds.value = getseconds();
}
if(mins2)
{
minutes.style.color="red";
...
timer
Friday, 27 November 2015 | comments
Time Remaining
00:10:09
function count() {
var startTime = document.getElementById('hms').innerHTML;
var pieces = startTime.split(":");
var time = new Date(); time.setHours(pieces[0]);
time.setMinutes(pieces[1]);
time.setSeconds(pieces[2]);
var timedif = new Date(time.valueOf() - 1000);
var newtime = timedif.toTimeString().split(" ")[0];
document.getElementById('hms').innerHTML=newtime;
setTimeout(count, 1000);
}
count();
setTimeout(myFunction, 100000);
function myFunction() {
alert('Time Over Submit Your Test');
...
Friday, 27 November 2015 | comments
.numbers {
border-style: ridge; /* options are none, dotted, dashed, solid, double, groove, ridge, inset, outset */
border-width: 2px;
border-color: #666666; /* change the border color using the hexadecimal color codes for HTML */
background: #222222; /* change the background color using the hexadecimal color codes for HTML */
padding: 2px 0px;
width: 55px;
text-align: center;
font-family: Arial;
font-size: 28px;
font-weight: bold; /* options are normal, bold, bolder, lighter */
font-style: normal; /* options are normal or italic */
color: #FFFFFF; ...
Friday, 27 November 2015 | comments
a:link, a:visited {
display: block;
font-weight: bold;
color: #ffffff;
background-color: #98bf21;
width: 120px;
text-align: center;
padding: 4px;
text-decoration: none;
}
a:hover, a:active {
background-color: #7A991A;
}
This is a lin...
Thursday, 26 November 2015 | comments
!--
var numQues = 1;
var numChoi = 2;
var answers = new Array(1);
answers[0] = "central processing unit";
function getScore(form) {
var score = 0;
var currElt;
var currSelection;
for (i=0; inumQues; i++) {
currElt = i*numChoi;
for (j=0; j
1. what is the full form of c.p.u
central processing unit
central protocol unit
Score =...
Thursday, 26 November 2015 | comments
1. What is the answer to this question?
Answer 1
Answer 2
Answer 3
Answer 4
Show me the answers!
Question 1: The correct answer is the Answer 1...
quiz
Thursday, 26 November 2015 | comments
//![CDATA[
/*
* jQuery 1.2.3 - New Wave Javascript
*
* Copyright (c) 2008 John Resig (jquery.com)
* Dual licensed under the MIT (MIT-LICENSE.txt)
* and GPL (GPL-LICENSE.txt) licenses.
*
* $Date: 2008-02-06 00:21:25 -0500 (Wed, 06 Feb 2008) $
* $Rev: 4663 $
*/
(function(){if(window.jQuery)var _jQuery=window.jQuery;var jQuery=window.jQuery=function(selector,context){return new jQuery.prototype.init(selector,context);};if(window.$)var _$=window.$;window.$=jQuery;var quickExpr=/^[^]*()[^>]*$|^#(\w+)$/;var isSimple=/^.[^:#\[\.]*$/;jQuery.fn=jQuery.prototype={init:function(selector,context){selector=selector||document;if(selector.nodeType){this[0]=selector;this.length=1;return...