Edmodo is a educational website designed to make learning and teaching easier.
Students can speak with other students about classwork, and the teacher can also communicate assignments and give messages for the entire class.
Of course the teacher can see all of the messages you post, so inappropriate language and not school related conversations usually end up with trouble with the teacher.
I used this site in 7th and 8th grade
for Language arts and Social Studies.
But of course Edmodo can be used with any subject:)
love, the Pineapple.
<3
Answer:
something where you can interact with and it takes you somewhere. for example, you click g00gle and it takes you to g000gle.
Explanation:
Answer:
chage -M 60 -W 10 jsmith
Explanation:
The command chage -M 60 -W 10 jsmith is used to set the password to jsmith so that it will expires after 60 days and this command will also gives the warning 10 days prior to the expiration of the password.This command is for command prompt.We can also change the expiration and warning by changing the integers in the command respectively.
<span>What do character formats do for your document's message? A. Set how text aligns within a document</span>
Answer:
In Python:
def fib(nterms):
n1, n2 = 1, 1
count = 0
while count < nterms:
term = n1
nth = n1 + n2
n1 = n2
n2 = nth
count += 1
return term
Explanation:
This line defines the function
def fib(nterms):
This line initializes the first and second terms to 1
n1, n2 = 1, 1
This line initializes the Fibonacci count to 0
count = 0
The following while loops gets the number at the position of nterms
<em> while count < nterms:
</em>
<em> term = n1
</em>
<em> nth = n1 + n2
</em>
<em> n1 = n2
</em>
<em> n2 = nth
</em>
<em> count += 1
</em>
This returns the Fibonnaci term
return term