Top answers


How can I make my personal statement stand out from everyone else's?

Personal statements are just that, personal . The admissions staff want to know about you, so don't be shy! Everyone has a different story to tell, and has experienced the world in a different way. Think abo...
BE
2928 Views

What is the difference between xylem and phloem?

Plants have both xylem and phloem. The xylem is a tube which runs from the very ends of the roots to all other parts of the plant. Xylem transport water and minerals around the plant . Xylem are tough- they ...
BE
Answered by Britannie E. Biology tutor
6282 Views

Show how you would give all elements that have a class of 'class1', a green background.

.class1{ background-color: 'green'; } The full-stop before the text indicates that this css rule applies to a class with the name 'class1'.Inside the rule, the background-color attribute is given a value of ...
JC
2135 Views

Suppose that you have a <p> element with an id of 'id1'. Use javascript to set the inner html of this element to 'hello!'

We will do this in 2 steps to make it easier to understand. Firstly, we need to obtain the actual &lt;p&gt; element with javascript. To do this, we use the following command:var p = document.getElementById('...
JC
Answered by Jamie C. Javascript tutor
1602 Views

Find the integers n such that 4^(n)-1 is prime.

4^(n)-1 factors to (2^(n)-1)(2^(n)+1) by difference of two squares by definition of a prime (only has factors 1 and itself (given that itself isn't 1))So Exactly one of the brackets should = 1 for 4^(n)-1 to...
GH
Answered by George H. Maths tutor
3373 Views