₦airaland Forum

Welcome, Guest: RegisterLoginWith GoogleTrendingRecentNew

Stats: 3,325,212 members, 8,420,840 topics. Date: Friday, 05 June 2026 at 12:18 PM

Toggle theme

JAGZZ's Posts

Nairaland ForumJAGZZ's ProfileJAGZZ's Posts

1 2 3 4 5 6 7 (of 7 pages)

Jobs/VacanciesRe: UBA Aptitude Test: What To Expect? by JAGZZ: 7:54am On Jan 17, 2015
yomeb30:
Guys, is anyone writing UBA aptitude test in Lagos next week? Please! Let's have a chat about it here. And anyone who has written the test in Lagos before should give us some insight about it. Thanks guys, you all are just the best. Team NL
Are u gonna be writing urs in lagos or Ibadan and when?
Jobs/VacanciesRe: MTN Recruiting Channel Development Administrator by JAGZZ: 10:59am On Jan 08, 2015
jidluk:
@Jaggz, are you seriuos! I did the phone interview too and that was the last I heard.
Be hopeful.

Some are having the interview tomorrow in Lagos.
Jobs/VacanciesRe: MTN Recruiting Channel Development Administrator by JAGZZ: 2:39pm On Jan 07, 2015
Pyroxene:
JAGGZ long time. Happy new year, did not hear from u again. Those peeps only called for phone interview, asked 3 questions and never got back but I have put them behind me sha.. I tot being their staff was going to be an added advantage. Add me on BB 2913431D we ll get better Jobs this 2015
Compliments bro, will add u up. Sure its gonna be a great one for us this year.

I just wanted to know if anyone has resumed for this position or gotten any feedback from them especially ingenuity2014 because I heard some people are having their interview this friday.
Jobs/VacanciesRe: MTN Recruiting Channel Development Administrator by JAGZZ: 12:21pm On Jan 07, 2015
ingenuity2014:
Thanks Jidluk, twas a panel of 3: the HR Manager, Sales Mgr and another mgr. Nothing yet though, still hopeful.
Hey sup? Have you heard anything from them?

Heard interview is still going on for this position.
Jobs/VacanciesRe: I Cee Technology Workshop by JAGZZ: 12:43pm On Dec 20, 2014
So what's the latest on I Cee Technology?

Anybody got paired with any of the I.T firms as CDNET claimed?
Jobs/VacanciesRe: Akintola Williams Deloitte Test by JAGZZ:
.
Jobs/VacanciesRe: Akintola Williams Deloitte Test by JAGZZ: 11:31am On Dec 13, 2014
Some weeks back. Lag
Jobs/VacanciesRe: Akintola Williams Deloitte Test by JAGZZ: 11:20pm On Dec 12, 2014
Hello,

Please who else is schedule to write this coming Monday, 15th?
Jobs/VacanciesRe: Sales Executive At Guinness by JAGZZ: 4:28pm On Dec 02, 2014
If them don call for next stage which is medicals, make una signify o
Jobs/VacanciesRe: Sales Executive At Guinness by JAGZZ: 8:05pm On Nov 30, 2014
SenMap:
I understand boss, all i want to know is how can one prepare for this stages
U would present and act some scenarios given to you and it depends on how you are able to impress the assessors.

So many people during my set said they did very well but ended up been evicted at the end of the day.

I guess the assessors are looking out for some specific values and traits. So just be yourself okay?

When are u slated for?
Jobs/VacanciesRe: Sales Executive At Guinness by JAGZZ: 7:51pm On Nov 30, 2014
SenMap:
Oga Swagbe and Jagz, please what are the stages like ?
Presentation and role play. If you scale through both, you will do the interview and if not, you would be evicted.

All the best.
Jobs/VacanciesRe: Sales Executive At Guinness by JAGZZ: 4:02pm On Nov 28, 2014
Swagbee:
do u do interview after the assesment dat day
Yeah I scaled through the presentation and role play and did the interview but i'm yet to get a feedback from them.
Jobs/VacanciesRe: Sales Executive At Guinness by JAGZZ: 12:01pm On Nov 28, 2014
JAGZZ:
Is there anyone that had his/her assessment center last two weeks i.e between 10th & 14th Nov and has gotten any feedback?
Anybody??
Jobs/VacanciesRe: Sales Executive At Guinness by JAGZZ: 10:25am On Nov 24, 2014
Is there anyone that had his/her assessment center last two weeks i.e between 10th & 14th Nov and has gotten any feedback?
Jobs/VacanciesRe: Flour Mills Of Nig / Invitation For Competency Based Test by JAGZZ: 3:40pm On Nov 21, 2014
ELEFISSI:
Good day.

I got an invitation from Flour Mills of Nigeria Plc for a competency based test.

Date: Friday, 21st Nov. 2014
Time: 2:00pm prompt

Did anyone else get the same invite?
lilyvic:
HEllo I also got same text inviting me for a competency test tomorrow 21st Nov for system support.pls any idea what the test could be based upon?kindly help out
ELEFISSI:
Hello,
I think the questions will basically be focused on the following aspects:

installing and configuring computer hardware operating systems and applications;

monitoring and maintaining computer systems and networks;

talking staff or clients through a series of actions, either face to face or over the telephone to help set up systems or resolve issues;

troubleshooting system and network problems and diagnosing and solving hardware or software faults; replacing parts as required;

providing support, including procedural documentation and relevant reports;

following diagrams and written instructions to repair a fault or set up a system;

supporting the roll-out of new applications;

setting up new users' accounts and profiles and dealing with password issues;

responding within agreed time limits to call-outs;

working continuously on a task until completion (or referral to third parties, if appropriate);

prioritising and managing many open cases at one time;

rapidly establishing a good working relationship with customers and other professionals, e.g., software developers;

testing and evaluating new technology;

conducting electrical safety checks on computer equipment.
I'm actually being invited for System Administrator competency-based test. But I think System Support competency-based test will be based on the above-listed outlines.
Guys how was the test?

I couldn't make it down for the test.
ProgrammingRe: Java Tutorial For Beginners by JAGZZ: 7:50pm On Nov 20, 2014
mgb4reel:
The Op has done justice to the problem but the question is somehow. If what you mean is: a program to take ten integers from the user and sum them, then the solution goes thus:

import java.util.Scanner; //imports the Scanner class

public class SumIntegers{

public static void main(String args[]){
Scanner input = new Scanner(System.in); //creates an object of the Scanner class to take input from keyboard
int number; //the integer declaration
int sum = 0; //declares the sum integer and initialize it to zero

for(int i = 1; i <= 10; i++){ //repeat the enclosed instructions 10 times

System.out.println("Please enter an integer:"wink;
number = input.nextInt(); //takes the integer from the user
sum = sum + number; //performs the addition operation

}

System.out.print("The sum of the ten integers entered is: " + sum);


}

}
Yeah its to sum up any ten integers from the user. Thanks, I appreciate.
ProgrammingRe: Java Tutorial For Beginners by JAGZZ: 7:44pm On Nov 20, 2014
nnasino:
I don't really understand your question. Do you mean to sum the first ten integers? If so then this will work:

class Sum{
public static void main( String[] args){
int sum = 0;
for(int I = 1; I <= 10; I++){
sum += I;
}
System.out.println("Sum of first ten numbers: " + sum);
}
}

If you just want to sum ten arbitrary integers then simply add them using +. Hope this helps
Its actually to sum any 10 arbitrary integers. Thanks.
ProgrammingRe: Java Tutorial For Beginners by JAGZZ: 5:06pm On Nov 20, 2014
nnasino, Please help with this question: Write a program to sum ten integers using Java
ProgrammingRe: C++ Tutorial For Beginners... Part 1... by JAGZZ: 2:06pm On Nov 20, 2014
Ezechinwa , I commend your efforts.

Please help with this question: Write a program to sum ten integers in C++ and Java
Jobs/VacanciesRe: MTN Recruiting Channel Development Administrator by JAGZZ: 10:57am On Nov 19, 2014
jidluk:
Thanks ingenuity. What's BTW? Tho I got to the stage of phone interview,then never heared from them since then. Not aware of no of positions.they just put southwest.
ingenuity2014:
Nothing yet. BTW, the position is for hw many persons?
What did u guys score in the test? I think that's the factor.
EducationRe: University of Ibadan (unibadan)2014/2015 Post-Graduate Application by JAGZZ: 7:10pm On Nov 14, 2014
debolly:
Please, how did you check it? I would like to check mine too.
truvine:
.
how did you confirm from UI
I may be having same issue too
debolly:
Please, how did you check it? I would like to check mine too.
U.I sent me a mail this morning, so the mail indicated all my details and documents I have uploaded to my portal and how U.I accessed it. So it was there they said my transcript status is still "Not present"
EducationRe: University of Ibadan (unibadan)2014/2015 Post-Graduate Application by JAGZZ: 1:25pm On Nov 14, 2014
My school is claiming they have sent my transcript to U.I but U.I is saying "No transcript present".

Is it only me or a general thing?
Jobs/VacanciesRe: Sales Executive At Guinness by JAGZZ: 7:57pm On Nov 12, 2014
bishopjoe02:
I hv seen d site...Thanks
U welcome.
So have they mailed u? And did u see the communication history?
Jobs/VacanciesRe: Sales Executive At Guinness by JAGZZ: 2:52pm On Nov 12, 2014
olujegs:
Pls when did you do your test and assesment
Have u heard from them after the assessment?
Jobs/VacanciesRe: Sales Executive At Guinness by JAGZZ: 8:31pm On Nov 11, 2014
bishopjoe02:
pls sir...help me with the link to d portal. ..I tried google bt didn't get anything. ..pls...help a broda
I can't get the link at the moment. Just get to where u applied for the role and locate your profile page.
Jobs/VacanciesRe: Sales Executive At Guinness by JAGZZ: 6:36pm On Nov 11, 2014
bishopjoe02:
pls help did u make that discovery. ..im still waiting for their reply regarding d test...pls let me no so dat I cn do likewise
Log on to your Diageo portal where you applied and check the ''Communication History'' you would see all the Diageo/Guinness invites sent to you.
Jobs/VacanciesRe: Sales Executive At Guinness by JAGZZ: 5:51pm On Nov 11, 2014
finestcash:
i was asked to be rescheduled for assessment because of my inappropriate means of identification,i saw a message from guiness yesterday that i will be scheduled for this week assessment pls how is the assessment like? pls can anyone tell me how do i prepare?
When exactly will u be scheduled for the assessment this week?

gabscity:
A call for medicals means u r good to go.
As regards the pay, if I may ask where do u work for now? Is d brand name at per with Guinness Nig.?
I just discovered I was supposed to have my assessment on the 6th but didn't see the notification until today. I have mailed them to reschedule me but haven't gotten any reply. What do you feel I should do?
Jobs/VacanciesRe: Access Bank Aptitude Test by JAGZZ: 3:44pm On Nov 11, 2014
Maya2pretty:
Please has anyone gotten d success mail, 3 peeps on d oda thread just confirmed deirs......That test was easy.....Please did they contact anyone with a 2.2?
Access Bank don't take 2.2 and if the person scales through the test stage, he/she won't go pass the first interview stage.
Jobs/VacanciesRe: Graduate Management Trainee Recruitment At VDT Communications Limited by JAGZZ: 6:53am On Nov 10, 2014
Boka91:
Can't reali say..Lyk 10 per invite cos pple wer invited on diff days last week..
Aii. I applied too but haven't gotten any feedback from them.
Jobs/VacanciesRe: Graduate Management Trainee Recruitment At VDT Communications Limited by JAGZZ: 9:56pm On Nov 09, 2014
Boka91:
We wer told dis week..so we r all waitin.
Like how many people were called for the test?
Jobs/VacanciesRe: MTN Recruiting Channel Development Administrator by JAGZZ: 1:35pm On Nov 07, 2014
Pyroxene:
Just a mail
How far? How did everything go?
Jobs/VacanciesRe: MTN Recruiting Channel Development Administrator by JAGZZ: 5:02pm On Nov 03, 2014
Pyroxene:
Just got a mail for interview, seems its going to be in ibadan,,,,,,,,,,,, anybody with me on this?
when is the interview?

1 2 3 4 5 6 7 (of 7 pages)