Welcome, Guest: Register On Nairaland / LOGIN! / Trending / Recent / New
Stats: 3,152,759 members, 7,817,094 topics. Date: Saturday, 04 May 2024 at 05:17 AM

Fayimora's Posts

Nairaland Forum / Fayimora's Profile / Fayimora's Posts

(1) (2) (3) (4) (5) (6) (7) (8) (9) (10) (11) (12) (13) (14) (of 42 pages)

Programming / Re: Do You Need To Be A Math Guru To Be A Good Programmer by Fayimora(m): 5:23pm On Dec 31, 2011
someone sent me a mail about that same stuff and I thought he/she was talking bout linked lists. I ain't got a clue what it is myself. Do you mind explaining but on another thread wink
Programming / Re: C Programming Issues by Fayimora(m): 9:43pm On Dec 29, 2011
Don't know if you picked this up along the line but it is advisable to always initialise a variable before using it.
Programming / Re: Do You Need To Be A Math Guru To Be A Good Programmer by Fayimora(m): 9:36pm On Dec 29, 2011
C'mon guys its really not that serious!

@Kobo. . . .  I have noticed the way you bullshit others! Not to be mean but because you have a few years of experience doesn't make you invincible! You still have A LOT to learn. Just be more polite next time.

@logica, @omo_to_dun please do me the favour of not replying to the thread anymore so it dies.

@OP  Doesn't matter if it is "Do you need math" or "how much math". The truth is that you SHOULDN'T be asking such questions. IF you need a particular skill, you would know when the time comes and you should strive to acquire it. I can tell you to spend 2months perfecting your probability skills but what if you never use it?
I would advice you refrain from asking such questions and just perfect your programming skills. If you need to learn spanish along the line, you would know.

Programming / Re: The Wikipedia Story by Fayimora(m): 6:52am On Dec 29, 2011
Programming / Re: Do You Need To Be A Math Guru To Be A Good Programmer by Fayimora(m): 8:58pm On Dec 28, 2011
Kobojunkie:

Wrong!! Those are actual Google interview Questions.

Why would they need to ask you questions of that sort AFTER you have passed the actual interview?? 

Don't say that too fast. A bit off point but I expected YOU to know that there is NEVER a wrong answer!.

All I can say is that those questions are what you get in companies like ITRS and Goldman Sachs. Not sure anyone is familiar with these companies but at least that is what I was told to expect and that is what I got.

Programming / Re: Do You Need To Be A Math Guru To Be A Good Programmer by Fayimora(m): 2:19pm On Dec 28, 2011
IbroSaunks:

what kinda questions do they ask fayimora?
Sorry am not at liberty to discuss that. You just have to take my word for it.
Programming / Re: Do You Need To Be A Math Guru To Be A Good Programmer by Fayimora(m): 1:44pm On Dec 28, 2011
IbroSaunks:

i just thought i should post this , after i did that google search kobojunkie said *ellipsis*

http://www.impactinterview.com/2009/10/140-google-interview-questions/

You should note that these are not the kind of questions you get in an ACTUAL google interview. You get these questions when you have PASSED the ACTUAL interview.
Programming / Re: Do You Need To Be A Math Guru To Be A Good Programmer by Fayimora(m): 1:39pm On Dec 28, 2011
omo_to_dun:


"If you have to ask whether you need Mathematics, then you are NOT a programmer."

[size=15pt]+1[/size]
Programming / Re: What Language should I start with? by Fayimora(m): 10:05pm On Dec 25, 2011
Use what is necessary! Use what YOU THINK works best. How do you know what works best? You research and READ! 99.8% of threads like this don't help. They always end up in some parallel world, if you know what i mean

To get you started, I wouldn't really advise visual basic. Not because I don't program in VB but because it is windows centric. You most likely would want to develop cross platform apps.

Goodluck!
Programming / Re: [Help Request ] I Want To Learn Programming, what are the requirements by Fayimora(m): 4:44pm On Dec 21, 2011
vezycash:

Bro get a system first before you talk about learning programming
[size=19pt]+1[/size]
Programming / Re: I Need Help With Pointers In C by Fayimora(m): 4:42pm On Dec 21, 2011
[size=13pt]What you are doing is COMPLETELY different from what you were asked to do! You were asked to find the largest btw three numbers. One way would be to use an array. Now you should have a pointer to an int(or any suitable type) array! Since you have to use a function, then you pass two values to a function that returns the largest between them.

Say you have,
10 70 40
declare a variable that would store the highest. I would call it 'highestNumberSoFar'

We pass the address of 10 and 70 to our function(that should be easy),  now we receive the addresses and then deference each of them and return the highest value! NExt we pass 70 and 40. . . . . and so on.

I intentionally did not write any bit of code. Now you have 'an algorithm', so give me an implementation.[/size]
Programming / Re: *~ Omo-to-dun Voted Programming Section Poster Of The Year *~ Congratulations!! by Fayimora(m): 3:19am On Dec 19, 2011
Mobinga:

LMAO. @Fayimora!! You're doing it all wrong!!! angry angry

The votes are supposed to be locked. Nobody is supposed to see the ratings until after the voting. grin

Anyway I voted for my mans SkyDancer grin
I ddnt make them visible. . . .
Programming / Re: *~ Omo-to-dun Voted Programming Section Poster Of The Year *~ Congratulations!! by Fayimora(m): 4:26am On Dec 15, 2011
Polls are up!
Programming / Re: Algorithm For Pascal Program by Fayimora(m): 10:26pm On Dec 12, 2011
The algorithm to calculate surface area has NOTHING to do with pascal. Have a quick read through this and you should be able to do your thing.
Link : http://en.wikipedia.org/wiki/Sphere#Surface_area_of_a_sphere
Programming / Re: Beginners - Learn Android Programming by Fayimora(m): 3:31am On Dec 12, 2011
Yeah true. Am surprised google still hasn't done anything about it, Anyways seems this tut has gone down the drain
Programming / Re: This May Sound Cheesy Or Desperate,but Pls Do Not Ignore! by Fayimora(m): 5:43pm On Dec 10, 2011
[size=13pt]Then lets see your new code!!! That code you posted above is so not correct! However, that error is not what i expected you to get. Post your ORIGINAL code if you need help.[/size]
Programming / Re: This May Sound Cheesy Or Desperate,but Pls Do Not Ignore! by Fayimora(m): 4:57pm On Dec 10, 2011
[size=14pt]Well the program is wrong, syntactically.

import is a keyword so it shouldn't be 'Import' but 'import',  String is a class and not a primitive type so it should be 'String' and not 'string'. Using small letters is C++ style. Scanner is a class. However, you started declaring the object properly but messed up the instance. Fix that using the tip above. Also, System is a class and not a variable or a primitive type.

In C, you create an array like this => "int numbers[]", however the case is different in java. When writing Java code you do this => "int[] numbers". Yes, your c-style declaration would work but its not the convention. The developers of Java only left that in so its easy for C programmers to easily write Java code. If you are a Java programmer, then stick to the Java conventions.

Note that it is a convention in Java to 'camel case' some identifiers. They include:

Class names - Starts with capital letters and all other conjoined words are camel cased. e.g JOptionPane, Scanner, ArrayList.
Variable/method names = Starts with small letters,  e.g, getNames(), changeArrayOfNumbers().

I fixed 3 errors but left a few others. Try and fix them using the tips above.

Goodluck[/size]
Programming / Re: . by Fayimora(m): 3:55pm On Dec 10, 2011
Lmaooo y'all are not serious
Programming / Re: This May Sound Cheesy Or Desperate,but Pls Do Not Ignore! by Fayimora(m): 3:53pm On Dec 10, 2011
Wow, looks strange, post your program then, The error is vague!
Programming / Re: This May Sound Cheesy Or Desperate,but Pls Do Not Ignore! by Fayimora(m): 3:51pm On Dec 10, 2011
Errr, what language ?? Also post the compete error here
Programming / Re: This May Sound Cheesy Or Desperate,but Pls Do Not Ignore! by Fayimora(m): 3:13pm On Dec 10, 2011
Hmm anyways, Java is not really a bad language to start with. BUT as Mobinga said, you gotta start from Procedural Programming. Am surprised to see a link to my profile there, lolz anyways go and get "Java in easy steps." Its a very small book and costs only £6. It would get you prepared for the other books.

Happy learning.

Oh before i forget have you written "Hello world?", lol
Programming / Re: New In Here by Fayimora(m): 9:01am On Dec 10, 2011
Cool keep enjoying it
Programming / Re: Female Programmer Here: Please Help (c Language) by Fayimora(m): 8:58am On Dec 10, 2011
This is funny, Can't y'all just stop this already?? Seriously, if you can't help someone then why reply, ??
Programming / Re: *~ Omo-to-dun Voted Programming Section Poster Of The Year *~ Congratulations!! by Fayimora(m): 9:34pm On Dec 07, 2011
segsalerty:

I nominate myself ! grin
look at this lost but found man, So u still alive!
Programming / Re: Jtabbedpane by Fayimora(m): 8:19pm On Dec 07, 2011
A panel in a panel!
Programming / Re: Letter From The Moderator - Please Read by Fayimora(m): 8:14pm On Dec 07, 2011
thanks
Programming / Re: *~ Omo-to-dun Voted Programming Section Poster Of The Year *~ Congratulations!! by Fayimora(m): 11:58pm On Dec 05, 2011
This is just nomination, voting comes in later. 10 days to go so nominate fast.
Programming / Re: Lets Create Nairaland Mobile App. What Do You Think? by Fayimora(m): 7:30pm On Dec 04, 2011
Ok then ride on, With an API you can develop an actual application and not a new 'web browser', lol, But can your API allow me change user's details? In essence can it send queries to the database? Dont forget its not just about displaying posts, you gotta change info, post topics and stuff like that.
Programming / Re: Lets Create Nairaland Mobile App. What Do You Think? by Fayimora(m): 4:18pm On Dec 04, 2011
The easiest way would be for Seun to pay two or 3 developers to develop an API for him. With the API we could do anything but am sure he aint ready to let his database out. .
Programming / Re: Ruby Programmers And Programming by Fayimora(m): 11:38pm On Dec 01, 2011
Hahahah funny u
Programming / Re: Ruby Programmers And Programming by Fayimora(m): 10:25pm On Dec 01, 2011
I can say same for Ruby too. Actually it is easier and faster to get help with Ruby **biased mouth** because you can ask the developers directly,
Programming / *~ Omo-to-dun Voted Programming Section Poster Of The Year *~ Congratulations!! by Fayimora(m): 4:38pm On Dec 01, 2011
Year-end is here again and as has become traditional on Nairaland, we are opening nomination for this year edition. Who will take the crown in 2011?

Rules:
1, Only 1 nomination per user
2, Any nominee that has been banned or warned this year will be disqualified
3, Moderator cannot be nominated in his/her section but may be nominated in other sections
4, Nominee must be active in the section
5, Nominee must be forum rule-abiding and not a trouble-maker
6, Top 3 nominees will be up for poll for another 2 weeks, where the winner will be announced at the expiration of the voting
7, Where there is tie, the mod reserves the right to either choose one or extend the nomination/voting by 24 hours


NOMINATION ends on December 15, 2011
VOTING starts December 16, 2011 and ends December 30 where the winner will be announced




START NOMINATING!!!!!

(1) (2) (3) (4) (5) (6) (7) (8) (9) (10) (11) (12) (13) (14) (of 42 pages)

(Go Up)

Sections: politics (1) business autos (1) jobs (1) career education (1) romance computers phones travel sports fashion health
religion celebs tv-movies music-radio literature webmasters programming techmarket

Links: (1) (2) (3) (4) (5) (6) (7) (8) (9) (10)

Nairaland - Copyright © 2005 - 2024 Oluwaseun Osewa. All rights reserved. See How To Advertise. 31
Disclaimer: Every Nairaland member is solely responsible for anything that he/she posts or uploads on Nairaland.