18/04/2014
Application Now On For 2014 MTN Foundation Science & Technology Scholarship
Applications for the 2014 MTN Scholarship has commenced.
The MTN Foundation Science & Technology Scholarship scheme seeks to attract high performing full time second year students studying in public tertiary institutions (universities, polytechnics and colleges of education) in Nigeria. The scholarship provides financial assistance to students who might otherwise be unable to pay for their tertiary education and aims to recognize and reward academic excellence.
http://studentofnaija.com/forum/index.php/topic,78.0.html
Login
Login
15/02/2014
OFID SCHOLARSHIPS AWARD FOR INTERNATIONAL STUDENTS
OFID’s Scholarship Program sponsors outstanding young students from developing countries through graduate studies in a development-related discipline. The OFID Scholarship Portal is now open to receive applications for 2014/2015
http://studentofnaija.com/forum/index.php/topic,73.html
07/02/2014
RULES GOVERNING THE PLOT OF ROOT LOCUS, WITH A WORKED EXAMPLE
Start and finish of Loci: the root Loci start (k=0) at the pole and finish (k=∞) on the zeros of G(S)H(S)
http://studentofnaija.com/forum/index.php/topic,72.0.html
03/02/2014
ISH-London Met Scholarship Scheme for Master Students in UK, 2014
London Metropolitan University and International Students House (ISH) are pleased to announce a joint scholarship programme for international students.
International Students House provides accommodation and a varied, multicultural social programme for full-time international students in the centre of London.
The scholarship programme offers a full tuition fee scholarship to study one of London Met's Master's programmes.
The scholarship also includes one year's free accommodation at International Students House.
http://studentofnaija.com/forum/index.php/topic,71.msg104/topicseen.html
20/01/2014
2014 CoR-AF Scholarship for Developing Countries at SOAS, UK
The Cultures of Resistance Network Foundation and the American Friends of SOAS, University of London (AFSOAS), invite applications for postgraduate scholarships from applicants from countries that have been affected by wa
http://studentofnaija.com/forum/index.php/topic,69.msg100/topicseen.html
19/01/2014
SIMPLE LIGHT/DARK DETECTOR CIRCUIT
14/01/2014
Massive Recruitment at Nanet Suites Abuja – Over 34 Positions
January 13, 2014
Nanet Suites Abuja
Job Description
Nanet Hotels Limited has been in the hospitality business since 1970. This period has given us the unique opportunity to develop infrastructures and systems. Also we have accummulated a wealth of experience and goodwill in the provision of management services in the industry.
for details ==>> http://studentofnaija.com/forum/index.php/topic,37.msg43/topicseen.html
14/01/2014
JOB VACANCY IN BAYELSA STATE: LOCAL ECONOMIC DEVELOPMENT ANALYST
Agency: UNDP/UNCDF
Applicants are advised in their own interest not to give any form of gratification or inducement to any person or group of persons to assist them in the recruitment exercise.
Women and persons physically challenged are encouraged to apply. All applications will be treated with the strictest confidence.
GENERAL INFORMATION
Unit of assignment: Local Governance and Microfinance
Detailed sector of assignment: Local Economic Development Promotion
for more information on how to apply visit:
http://studentofnaija.com/forum/index.php/topic,30.html
Login
Login
14/01/2014
i'm ready for the java tutorial and in an advance level, from electronic circuit design to java coding!!!!! how about that??????????????
Anny thats pretty qute(cute), am an Electrical/Electronics Enigeering students, but love programing and web technology alot, i should be able to help in circuit design, do you have Protues ISIS installed in your system? thats what i use, and its the best have ever used. talking of java advance, what do you think about this code
import java.awt.Frame;
import java.awt.Canvas;
import java.awt.Graphics;
import java.awt.AWTEvent;
import java.awt.Color;
import java.awt.Image;
import java.awt.event.WindowEvent;
public class SmoothAnimation extends Frame {
public static void main(String arg[]) {
new SmoothAnimation();
}
SmoothAnimation() {
enableEvents(AWTEvent.WINDOW_EVENT_MASK);
NoFlicker noflicker = new NoFlicker();
add(noflicker);
pack();
show();
}
public void processWindowEvent(WindowEvent event) {
if(event.getID() == WindowEvent.WINDOW_CLOSING)
System.exit(0);
}
}
http://studentofnaija.com/forum/index.php/topic,16.html
13/01/2014
test the genius in you (Spell out a 12-letter word from the picture below)
Spell out a 12-letter word by moving from letter to adjacent
letter, horizontally and vertically (but not diagonally). You must
find the starting point and provide the missing letters.
http://studentofnaija.com/forum/index.php/topic,29.html
13/01/2014
Aloha!!! Welcome to our second Java tutorial, we are going to write our first program, before we do that, lets create a directory/folder where we will keep our files,
how to create directory/folder using Command Prompt
Open Command Prompt and type cd \ and press enter
this will take it back to your local disk
Now create a directory by typing
Mkdir nameofthefolder and press enter
Go to your local disk to confirm if the directory has been created or type dir to check from command prompt.
Now open notepad++ or jcreator, notepad++ and jcreator is one of my favorite editor, you can use anyone of your choice, including notepad etc.
The notepad++ can be downloaded from http://notepad-plus-plus.org/
After installing, open notepad++
Go to file, save as, now locate the folder that was created.
And save the file with any name you want, for this example we are using
Studentofnaija
and change the save as type to java source type (*.java)
Now we have a file called Studentofnaija.java
Please note: in this tutorial am only showing you how to run a program, in the next tutorial I will explain what everything means in the program in detail
For beginners please follow me
//CODE
//in java everything begins with a class, without the class you can’t do anything, the keyword class is used to specified that we are defining a class, note the name of the class is spelt the same way as the name of the file, it is case sensitive
//as shown above, a class has been created called studentofnaija
//inside this class we are going to use what we call a method, a method is simply a list of things to do
//before your computer runs a program, it looks for a method called main
//all java program begins with a method called main, without the main method, the java application wont run
Declaring this method as public means that, it is accessible from outside the class, so that the JVM can find it
Declaring the method as static means that the method exist as part of class definition as a form that is ready to be executed
//Now let’s give the computer the instruction we want to output
below is the cold, copy and paste it on your editor
click on the link for the complete tutorial. http://studentofnaija.com/forum/index.php/topic,16.0.html