10/08/2024
*Inspiring the Leaders of Tomorrow at M.F. Kufayi Academy*
At M.F. Kufayi Academy, we are dedicated to nurturing inspirations within every child. Our curriculum is designed to spark curiosity, creativity, and a passion for learning, ensuring that students are motivated to reach their full potential.
We believe in building a strong foundation of morals. At M.F. Kufayi Academy, students are taught to value integrity, respect, and compassion—qualities that will guide them throughout their lives and make them responsible global citizens.
Our focus on competence ensures that students not only excel academically but also develop the critical thinking, problem-solving, and leadership skills necessary to thrive in an ever-changing world.
By choosing M.F. Kufayi Academy, you are investing in a brighter future for your child—a future where they are well-prepared to contribute meaningfully to society.
Admissions Now Open for the 2024/2025 Session!
*We offer:*
Nursery 1
Primary 1
Junior Secondary
Senior Secondary
Location: Plot 390 Limawa Quarters, West of Government House, Dutse, Jigawa State, Nigeria.
Contact Us:
Email: [email protected]
Phone: 07030474761
*M.F. Kufayi Academy – Nurturing Inspirations, Morals, and Competence for a Better Tomorrow.*
10/08/2024
Join Our Team at M.F. Kufayi Academy!
Are you passionate about nurturing inspirations, morals, and competence in the next generation? M.F. Kufayi Academy is seeking dedicated and qualified teaching staff to join our vibrant academic community. We are committed to providing an environment where both educators and students can thrive and excel.
We are currently looking for teaching staff for the following levels:
Nursery
Primary
Junior Secondary
Senior Secondary
If you are interested in making a difference in the lives of young learners and shaping a brighter future, we would love to hear from you!
To Apply:
Send your CV to: [email protected]
or call: 07030474761 for more information.
Location: Plot 390 Limawa Quarters, West of Government House, Dutse, Jigawa State, Nigeria.
**Be a part of M.F. Kufayi Academy – where we are committed to nurturing inspirations, morals, and competence for a better tomorrow!
22/04/2020
When you first run NetBeans, you'll see a screen something like this one:
You may have to drum your fingers and wait a while, as it's not the fastest thing in the world.
To start a new project, click on File > New Project from the NetBeans menu at the top. You'll see the following dialogue box appear:

We're going to be create a Java Application, so select Java under Categories, and then Java Application under Projects. Click the Next button at the bottom to go to step two:

In the Project Name area at the top, type a Name for your Project. Notice how the text at the bottom changes to match your project name (in the text box to the right of Create Main Class):
firstproject.Main
If we leave it like that, the Class will have the name Main. Change it to FirstProject:

Now, the Class created will be called FirstProject, with a capital "F", capital "P". The package is also called firstproject, but with a lowercase "f" and lowercase "j".
The default location to save your projects appears in the Project Location text box. You can change this, if you prefer. NetBeans will also create a folder with your project name, in the same location. Click the Finish button and NetBeans will go to work creating all the necessary files for you.
When NetBeans returns you to the IDE, have a look at the Projects area in the top left of the screen (if you can't see this, click Window > Projects from the menu bar at the top of the software):

Click the plus symbol to expand your project, and you'll see the following:

Now expand Source Packages to see your project name again. Expand this and you'll see the Java file that is your source code.

This same source code should be displayed to the right, in the large text area. It will be called FirstProject.java. If you can't see a code window, simply double click FirstProject.java in your Projects window above. The code will appear, ready for you to start work.
The coding window that appears should look like this (we've ch
21/04/2020
One of the difficult things about getting started with Java is installing everything you need. Even before you write a single line of code, the headaches begin! Hopefully, the following sections will make life easier for you.We're going to write all our code using a free piece of software called NetBeans. This is one of the most popular IDEs (Interface Development Environment) in the world for writing Java programmes. You'll see what it looks like shortly. But before NetBeans will work, it needs you to install the necessary Java components and files. First up is something called the Java Virtual Machine.
The Java Virtual Machine
Java is platform independent. This means that it will run on just about any operating system. So whether your computer runs Windows, Linux, Mac OS, it's all the same to Java! The reason it can run on any operating system is because of the Java Virtual Machine. The Virtual Machine is a programme that processes all your code correctly. So you need to install this programme (Virtual Machine) before you can run any Java code.
Java is owned by a company called Sun Microsystems, so you need to head over to Sun's website to get the Java Virtual Machine, also known as the Java Runtime Environment (JRE). Try this page first:
http://java.com/en/download/index.jsp
You can check to see if you already have the JRE on your computer by clicking the link "Do I have Java?". You'll find this link under the big Download button at the top of the page. (Unless Sun have changed things around, again!) When you click the link, your computer will be scanned for the JRE. You will then be told whether you have it or not. If not, you'll be given the opportunity to download and install it.
Or you could just head over to this page:
http://java.com/en/download/manual.jsp
The "manual" in the above links means "manual download". The page gives you download links and instructions for a wide variety of operating systems.
After downloading and installing, you may n
www.java.com