IT Certifications and Careers (Official Discussion Thread)

Type Username Here

Not a new member
Joined
Apr 30, 2012
Messages
16,368
Reputation
2,385
Daps
32,641
Reppin
humans
For(String s: someStringList)
{

if(s.charAt(0)=='o' || s.charAt(someStringList.size())=='o')
{

System.out.println(s);​
}​

}

:wow:

my nicca....you are learning grasshopper

however for string or chars use .equals() for comparison not ==



The bold should be someStringList.size()-1

otherwise it would be an index out of range.
 

semtex

:)
Joined
May 1, 2012
Messages
20,310
Reputation
3,396
Daps
46,188
You wanna keep your java skills razor sharp then you should try those Sun/Oracle Java Certification quizzes. Talk about humble pie.
 

FreshFromATL

Self Made
Joined
May 1, 2012
Messages
19,644
Reputation
2,631
Daps
43,673
Reppin
ATL
How was it?

It was cool. It turned out to be them more so selling the product that deep-diving on the ins and outs (we already have it). It was a big crowd there which definitely confirms that Tableau is probably the fastest growing BI tool.
 

Skillz

Rookie
Joined
May 12, 2014
Messages
205
Reputation
30
Daps
246
^Word. I'm trying to get my free student copy (1 Year License for those interested).. Went to a workshop at school on it & she gave the basic tutorial, real smooth. Also free tuts on their site.
 

Data-Hawk

I have no strings on me.
Joined
May 6, 2012
Messages
8,420
Reputation
1,985
Daps
16,303
Reppin
Oasis
Code:
List<String> oWords = new List<string>();

//C#
            oWords.Add("one");
            oWords.Add("Two");
            oWords.Add("orange");
            oWords.Add("Hello");
            oWords.Add("Games");
            oWords.Add("Blender");
            oWords.Add("Jumbo");
            oWords.Add("coli");
            oWords.Add("Gold digger");
            oWords.Add("Tomorrow");
            oWords.Add("Java syntax is sorry, C# is better");
            oWords.Add("Balto");
            oWords.Add("Baltimore");
            oWords.Add("Dojo");


            foreach(var oLocation in oWords)  
                 // Search from the beginning and in reverse.            
                if (oLocation.IndexOf("o") == 0 || oLocation.LastIndexOf("o") == oLocation.Length - 1) 
                    Console.WriteLine("{0} \n", oLocation);



Looking at yall code reminds me of why I dislike Java syntax.lol
 
Last edited:

Data-Hawk

I have no strings on me.
Joined
May 6, 2012
Messages
8,420
Reputation
1,985
Daps
16,303
Reppin
Oasis
I'm switching into management soon. Has anyone taken any of the ITIL exams besides Foundation? Think I might go down that path just hoping it's not horribly boring.


only took the first one and barely passed it.Then again I was only able to study for 3 days beforehand.lol
 

el_oh_el

Bulls On Parade...
Supporter
Joined
Aug 23, 2012
Messages
10,315
Reputation
1,920
Daps
26,047
Reppin
H-Town
Code:
List<String> oWords = new List<string>();

//C#
            oWords.Add("one");
            oWords.Add("Two");
            oWords.Add("orange");
            oWords.Add("Hello");
            oWords.Add("Games");
            oWords.Add("Blender");
            oWords.Add("Jumbo");
            oWords.Add("coli");
            oWords.Add("Gold digger");
            oWords.Add("Tomorrow");
            oWords.Add("Java syntax is sorry, C# is better");
            oWords.Add("Balto");
            oWords.Add("Baltimore");
            oWords.Add("Dojo");


            foreach(var oLocation in oWords) 
                 // Search from the beginning and in reverse.           
                if (oLocation.IndexOf("o") == 0 || oLocation.LastIndexOf("o") == oLocation.Length - 1)
                    Console.WriteLine("{0} \n", oLocation);



Looking at yall code reminds me of why I dislike Java syntax.lol
I actually like it. Keeps it easy to move between C# and this. What syntax do you prefer?
 

Data-Hawk

I have no strings on me.
Joined
May 6, 2012
Messages
8,420
Reputation
1,985
Daps
16,303
Reppin
Oasis
I actually like it. Keeps it easy to move between C# and this. What syntax do you prefer?

I love C#, by far my favorite programming language. Esp since its starting to become a popular game programming language. Hell there's probably more games being developed in C# now on the iPhone/Android platform( mainly due to Unity 3D ) than their native languages.

Lets not forget Visual Studio :smile:
 

el_oh_el

Bulls On Parade...
Supporter
Joined
Aug 23, 2012
Messages
10,315
Reputation
1,920
Daps
26,047
Reppin
H-Town
I love C#, by far my favorite programming language. Esp since its starting to become a popular game programming language. Hell there's probably more games being developed in C# now on the iPhone/Android platform( mainly due to Unity 3D ) than their native languages.

Lets not forget Visual Studio :smile:
Dude, visual studio is :ahh:
 

el_oh_el

Bulls On Parade...
Supporter
Joined
Aug 23, 2012
Messages
10,315
Reputation
1,920
Daps
26,047
Reppin
H-Town
I hope you have at least Pro. If not you can get it from here - https://www.dreamspark.com/ All you need is a .edu account
I have 13 Pro i believe. Got windows 8 from dreamspark as well. Love that shyt. Out of all IDEs id rate them as VS>Xcode>Netbeans
Im still an extreme newbie though. I need a mentor cause this shyt I'm learning in school will likely not get me a job...
 

Data-Hawk

I have no strings on me.
Joined
May 6, 2012
Messages
8,420
Reputation
1,985
Daps
16,303
Reppin
Oasis
I have 13 Pro i believe. Got windows 8 from dreamspark as well. Love that shyt. Out of all IDEs id rate them as VS>Xcode>Netbeans
Im still an extreme newbie though. I need a mentor cause this shyt I'm learning in school will likely not get me a job...

Probably the best way to learn is to pick out an app you would like to and go make it.

Here's a good site if you want to look at .NET open source projects - https://www.codeplex.com/

Most books just have you type in commands and try to explain it. I recommend this book ( ) since It's project based. You build apps throughout the book.

here's a book with a good combination of learning to program & Game programming

and



and you can always ask questions in here.
 
Top