Posts

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" ,...