Top answers


Make button that says how many times it has been clicked.

<button id="count" onclick="showCount()">0</button> var x = 0; function showCount() { x++; document.getElementById("count").innerHTML=x; }
PW
Answered by Piotr W. • Javascript tutor
1506 Views

Make a dropdown list with red type and yellow background.

<select style="color: red; background-color: yellow"> <option value="1">1</option> <option value="2">2</option> <option value="3">3...
PW
2432 Views

How come nuclei become more unstable the bigger they are?

The nucleus is made up of protons and nuetrons, which means there is an electric repulsion. The nucleus is held together by somethign called the strong nuclear force. This overrides the electromagnetic repul...
TR
Answered by Thomas R. • Physics tutor
3308 Views

Convert 10101100 to decimal.

4+8+32+128=172
PW
Answered by Piotr W. • Computing tutor
2746 Views

Explain the three constructions of indirect speech (oratio obiqua) in Attic Greek.

With verbs of saying such as "λεγω": ὁτι with the indicative mood and retaining the tense of the original direct speech. e.g. λεγω ὁτι Ἀχιλλευς καλος ἐστι With verbs of hoping and swearing such as ...
FW
2241 Views