You are on page 1of 4

" The number system which uses a alphabets as well as a number is ?

" ,
" The 2s complement of 13 in decimal ?" ,
" A B C D equivalent of 41 is ?" ,
" 11 in decimal + 11 in decimal + 11 in decimal is ?",
" The number that will come immidiately after FF in hexadecimal is ?",
" The largest 4-bit binary number is used in code is ?" ,
" The radix of hexademal number system is ? " ,
" Whcich flip flop is used to avoid race around condition ?" ,
" Which gate is called as universal gate ?" ,
" What is boolean expression for OR gate ?" ,
" What is boolean expression for And gate ?",
" An imaginary number is known as ?" ,
" Which bus is unindirectional ?",
" What is the size of the conventional memory is ?",
" Which is a non erasable memory ?"

option a
"binary number system" ,
"0010 in binary",
"0010 1001",
"111 in binary",
"100 in hexadecimal",
"1010",
"0001 0010",
"R-S",
"AND GATE",
"Y=A+B",
"Y=A+B",
"Expanded memory",
"Data",
"RAM",
"640kb"
option b
"octal number systeml",
"0011 in decimal",
"0100 0001",
"1011 in decimal",
"ff0 in hexadecimal",
"1111",
"1001 0010",
"J-K MAster Slave",
"NOT Gate",
"Y=A.B",
"Y=A.B",
"Virtual memory",
"Address",
"PROM",
"1mb"

option c
"Decimal number system",
"1100 in decimal",
"0001 1000",
"1001 in decimal",
"111 in hexadecimal",
"1001",
"1100 0001",
"J-K",
"OR GATE",
"Y=A/B",
"Y=A/B",
"Conventional memory",
"USB",
"Flash Ram",
"32kb"
option d
"Hexadecimal number system",
"1110 in decimal",
"none of these ",
"1111 in decimal",
"EE in hexadecimal",
"none of these ",
"0101 1101",
"none of these ",
"NAND GATE",
"none of these ",
"none of these",
"none of these ",
"MCA",
"EF PROM",
"10kb"
---------------------------
correct answers
"Hexadecimal number system",
"0011 in decimal",
"0100 0001",
"1001 in decimal",
"100 in hexadecimal",
"1001",
"0001 0010",
"J-K MAster Slave",
"NAND GATE",
"Y=A+B",
"Y=A.B",
"Virtual memory",
"Address",
"PROM",
"640kb"
<!DOCTYPE html>
<html>
<head>
<script>
function startTime() {
var today = new Date();
var s = today.getSeconds();
s = checkTime(s);
document.getElementById("txt").value = s;
document.getElementById('txt').innerHTML = s;
var t = setTimeout(startTime, 500);

if(s=="20")
{
alert("ok..");
}
if(s==30)
{
alert("ok..1");
}
}

function checkTime(i)
{
if (i < 10) {i = "0" + i};
return i;
}

function overlay()
{
var cookieValue = document.getElementById("txt").value;
alert(cookieValue);
}

</script>
</head>
<body onload="startTime()">
<div id="txt"></div>
<button onclick="overlay()">Click</button>
</body>
</html>

You might also like