Posts

Showing posts from 2017

FCSC Recruitment 2017

Image
FCSC Recruitment 2017 The Federal government has commenced recruitment into ministries, departments and agencies. MDAs Vacancies: The Federal Civil Service Commission (FCSC) wishes to announce vacancies in the following MDAs: (i) Federal Ministry of Information; (ii) Federal Ministry of Environment; (iii) Federal Ministry of Justice; (iv) Federal Ministry of Trade and Investments; and (v) Bureau of Public Procurement. Job Type:  Full Time Qualification:  OND, HND, BA/BSc. Location:  Abia, Abuja, Adamawa, Akwa Ibom, Anambra, Bauchi, Bayelsa, Benue, Borno, Cross River, Delta, Ebonyi, Edo, Ekiti, Enugu, Gombe, Imo, Jigawa, Kaduna, Kano, Katsina, Kebbi, Kogi, Kwara, Lagos, Nassarawa, Niger, Ogun, Ondo, Osun, Oyo, Plateau, Rivers, Sokoto, Taraba, Yobe, Zamfara. Job Field:  Administration / Secretarial General. How to Apply:  Qualified Applicants can access Application Forms on-line on FCSC Website:www.fedcivilservice.gov.ng. Collect FCSC Forms ...

N-Power Physical Verification Exercise 2017

Image
N-Power Physical Verification Exercise 2017 It has been days now after N-Power promised to release the schedule for the 2017 physical verification exercise but none has been released. This is only true on their website; http://www.npower.gov.ng/ but not true on their official social media account on www.twitter.com. The N-Power official twitter handle is @npower_ng. On the 1st of December, 2017, N-Power released the schedule for the physical verification. The schedule is displayed below You can verify the above documents from N-Power twitter account by clicking  HERE . Note that you should only get information from N-Power social media officials account (“Facebook: www.Facebook.com/npowerng; “Twitter: @npower_ng; “Instagram:@npower_ng; “Telegram: N-PowerNG; “Nairaland: NPowerNG; “Youtube:NpowerNG; “Whatsapp: 09096245802; “Medium: N-Power ng”) or on this blog, www.hamplustech.blogspot.com. Some local government area might have started the physical exercise hence kindly shar...

N-Power Pre-selection Criteria 2017

N-Power Pre-selection Criteria 2017 The N-Power scheme is a job creation and empowerment programme of the National Social Investment Programme of the Federal Government of Nigeria. This programme or scheme is for young Nigerians between the ages of 18 and 35. In 2016, through N-Power, the Federal Government engaged and deployed 200,000 young Nigerians in public primary schools, primary healthcare centres and in agriculture development project centres across the nooks and crannies of Nigeria. In this year [2017], the N-Power Volunteer Corps is enlisting 300,000 more volunteers to bring the number to the promised 500,000 N-Power Volunteers. The scheme had so many applicants but only few were preselected, why? The first pre-selection was for the N-Power Tax Corp called N-Power VAIDS and this group has already started work. The second pre-selection was for N-Power Teach [STEM]. This N-Power Teach is not like last year’s because it is for young graduates with the skills and interest in...

Abraka Pray for Peace [Photos]

Image
1 2 3 4

Abraka Community Seeks God's Face

It is indeed a time to pray to God at this time of the year. The Oruarivie-Abraka kingdom in conjunction with all Christians in Abraka has decided to call on God. This is not just to appreciate God for the year but also as the theme of the programme says, they need peace in the land. After being dealt with different evils like he Fulani herdsmen. Also, for the forthcoming local government elections. This is a welcome development and it is indeed the first of its kind in Oruarivie-Abraka. The King of Oruarivie-Abraka, HRM Akpomeyoma Majoroh, Ojeta II is the host and some anointed men of God will also be featured. The schedule for the programme is thus below: Date - Friday, 1st December, 2017 Time - 10 am prompt Venue - Ojeta Secondary School, Abraka for more information call - 07061182490, 08035751169 see more details  HERE As Oruarivie-Abraka has set the stone rolling let see which community in Delta will be the next. Remember, it is God that we all need! Be there!!!

Nigeria Maritime University Okerenkoko, Delta State is Recruiting

There is presently job vacancies for both academic and non academic positions in the Nigeria Maritime University in Okerenkoko, Warri South LGA of Delta State. The vacancies for academic staff are Job Title: Graduate Assistant Requirements To be Graduate Assistant Lecturer, applicants must have obtained a good Bachelor’s Degree from any recognized University. In addition, evidence of registration for Master’s Degree from any recognized University is required. Other Requirements: All Candidates must possess NYSC Discharge Certificate or Exemption Certificate or Certificate of Exclusion where applicable. Computer literacy is required. Job Title: Lecturer I (CONUASS 4) Requirements Candidates should possess a Ph.D. Degree from a recognized University with at least three (3) years post-doctoral teaching, research and administrative experience in a university. They must have evidence of scholarly publications in reputable local, national and international academic journals, plus...

A Program That Compares The Characters of Two Strings

Sample Code Public Class StringComparism     Private Sub btnClose_Click(sender As Object , e As EventArgs) Handles btnClose.Click         Me .Close()     End Sub     Private Sub btnReset_Click(sender As Object , e As EventArgs) Handles btnReset.Click         txtFS.Text = "" : txtSS.Text = "" : lbCommonCharacter.Text = ""     End Sub     Private Sub btnCompare_Click(sender As Object , e As EventArgs) Handles btnCompare.Click         Dim string1 As String = txtFS.Text         Dim string2 As String = txtSS.Text         Dim CommonCharacter As String = ""         Dim NewString As String = String .Empty         For...

A Program Which Prints Time In Words

Sample Code Imports System. DateTime Imports System. Math Public Class TimeReader     Private Sub btnReset_Click(sender As Object , e As EventArgs ) Handles btnReset.Click         lbReader.Text = "Time in Word" : txtmm.Text = ""         txthh.Text = "" : lbReader.Visible = False     End Sub     Private Sub btnClose_Click(sender As Object , e As EventArgs ) Handles btnClose.Click         Me .Close()     End Sub     Private Sub btnReader_Click(sender As Object , e As EventArgs ) Handles btnReader.Click         If Not (IsNumeric(txthh.Text) And IsNumeric(txtmm.Text)) Then             Dim a = MessageBox .Show( "Please enter a numeric value" , "Hampo JohnPaul||Audax" ,...