Top answers


Explain how hydrogen bonding occurs between molecules of water.

Hydrogen Bonding occurs between 2 adjacent molecules of H 2 O. The polar covalent bond between oxygen and hydrogen creates negative and positive partial charges respectively. There is a weak intermolecular f...
TH
Answered by Tom H. Biology tutor
18474 Views

Steel has a density of 8030kg/m^3. Show that a steel ball with a diameter of 5cm weighs approximately 5N

Using Weight = mass*gravitational strength Using: Mass = density * volume Using Volume = (4/3) pi r 3 Radius = 2.5cm = 0.025m Volume = (4/3) pi 0.025 3 = 0.00006544 m 3 (to 4 siginificant figures) Mass = 803...
SH
Answered by Sameh H. Physics tutor
13634 Views

Generate an array of integers from 0 to 99 and split it into two smaller arrays. Each smaller array will contain half of the original.

Import numpy originalArray = numpy.range(100) split1 = originalArray[:len(originalArray)/2] #The use of a :X as an index into an array means that you want all values from the start to the Xth value split2 = ...
SH
Answered by Sameh H. Python tutor
5654 Views

Given that Sin(A) = 1/sqrt(3), show that Tan(A) = 1/sqrt(2)

Using: Tan(x) = Sin(x)/Cos(x) Using: Cos(x) = sqrt(1-Sin 2 (x)) Cos(A) = sqrt(1-Sin 2 (A)) = sqrt(1-1/3) = sqrt(2)/sqrt(3) Therefore: Tan(A) = Sin(A)/Cos(A) = (1/sqrt(3))/(sqrt(2)/sqrt(3)) = 1/sqrt(2)
SH
Answered by Sameh H. Maths tutor
4660 Views

How do I go about planning an 'unseen poetry' question?

First off, you are going to want to thoroughly read through and annotate the poem. Read the poem carefully at least twice through to make sure you can understand each line's literal meaning. Once you are hap...
AR
28083 Views