Learn
HTML
CSS
PHP and MySQL
Python
Flask
Physics
Chemistry
Educational Blog
and
more...
TEA Educational Blog
Happy Independence Nigeria
O Nigeria, land of hope and grace,
With skies so bright, and hearts that race,
From the Niger's flow to the Borno sands,
We rise as one, with willing hands.
Our green land thrives, our rivers sing,
A future bright, with hope we bring.
Though trials come, we stand as strong,
In unity, where we belong.
From Zik to Awolowo’s fight,
Our freedom won, our future bright.
We raise our flags, our voices soar,
For independence, forever more.
The strength of youth, the wisdom old,
Our stories rich, yet to be told.
We march in pride, as one we stand,
A blessed and beloved land.
Happy Independence, oh dear Nigeria,
A beacon of hope, ever so clear.
Together we'll build, hand in hand,
A prosperous, united, and glorious land.
...
[Continue Reading]
Happy Independence Nigeria
Good Question
I was called Iron Lady for being a successful woman – Prof Osofisan (Professor of Computer science)
New Black studies curriculum to launch in NYC schools this fall
Education is not a scam; it is immensely rewarding
More Blog
Lessons
Course: Physics
Number of topics: 17
Category: Science
This is one of the series on Electricity: for high school....
[Continue Reading]
Course: Web development using PHP and MySQL
Number of topics: 27
Category: Programming
We use the DELETE SQL statement to delete record from a table.
syntax
DELETE FROM table_name WHERE id = record_id
Example
DELETE FROM feedback WHERE id = 3
However the record_id e.g 3 will not be hardcoded like this, just as we did with edit, we will introduce a "Delete" link and the link will send the id number to the code for deleting.
Here is the code (I have remove the pagination section to make the code focus on deleting, I will provide a GitHub link below to download the all code)...
[Continue Reading]
Course: Physics
Number of topics: 17
Category: Science
This physics video tutorial explains the types of resistors (linear and non-linear) and how to determine the resistance of a resistor in an electric circuit, by using the colour code or resistor code chart (as in the case of SMDs).
This review tutorial also contains a few examples and practice problems for you to learn the concept.
..wishing you the best.
...Be a Jolly Scientist!...
[Continue Reading]
Course: Python Programming
Number of topics: 11
Category: Programming
Sometimes it is more convenient to store multiple values or items in one variable. For example to store 50 students name, instead of creating student1, student2, student3 .... student50, then using List may be more convenient.
Lists (known as arrays in other languages) are one of the compound data types that Python understands. Lists can be indexed, sliced and manipulated with other built-in functions. Lists help us to easily handles ordered set of items in Python.
In Python lists is created by entering all the expected values between a square bracket.
[Continue Reading]
Course: African Artists and Drawing
Number of topics: 8
Category: Arts
Odun Orimolade is a trans-disciplinary artist, and academic based in Lagos, Nigeria. She incorporates and explores different media spanning drawing, installation, and performance. She approaches her artistic practice attending to a mix of ideologies and worldviews cultivated from different resource areas including archives, literature, cultural philosophies among others (Nubuke Foundation, 2020).
An alumnus of Yaba College of Technology and the University of South Africa, Orimolade (PhD in Fine Art) lectures in the Fine Art Department of the Yaba College of Technology. She has pre... [Continue Reading]
Course: Chemistry with Dr. Anita
Number of topics: 10
Category: Science
The fundamentals of Organic Chemistry is essential in understanding the course. In this class, factors that influences chemical reaction mechanism was discussed in detail. This include understanding of bond cleavage types which are essential in reaction mechanism. Study as you watch to stand out in Organic Chemistry courses.
Dr. Anita
... [Continue Reading]
Course: GST 102
Number of topics: 17
Category: Business
There are various conceptions of Philosophy namely:
1) Philosophy is the love of wisdom
2) Philosophy is the clarifications of Languages
3) Philosohy is the rational explanations of human experience... [Continue Reading]
Course: Python Programming
Number of topics: 11
Category: Programming
As you continue to program you will soon realise that you may have to make some decisions in your program for example you may want to ensure that the age the user inputted is above 18, the score inputted is above 0.
This is done using the IF, ELSE IF and ELSE conditional statements. When the condition is true you may want to execute a block of code, else execute another block of code, this is also called branching in programming.
For example 1
age=int(input("How hold are you "))
#check is age is above 18
if age > 18:
#execute this line of code if the co...
[Continue Reading]
See all courses