Mount Bromo and Mount Semeru by SKI968 on Flickr.
Mount Bromo and Mount Semeru by SKI968 on Flickr.
Java platformu bilgisayar ağının varlığı da göz önüne alınarak uygulamaların/programların farklı işletim sistemleri üzerinde çalıştırılabilmesi düşüncesiyle geliştirilmiş yeni teknolojidir. Java teknolojisi kullanılarak aynı uygulama farklı ortamlarda çalıştırılabilir. Örneğin kişisel bilgisayarlarda, Macintosh bilgisayarlarda, üstelik cep telefonlarında… JAVA, baska hicbir dilin sahip olmadigi WORA (Write Once Read Anywhere), yani bir yerde yaz heryerde kullan felsefesi uzerine kurulmuş, inanılmaz bir dildir.java programlama dili ile GUI (7Grafiksel Kullanıcı Arayüzü) uygulamaları, Applet’ler, Veri tabanına erişimle ilgili uygulamalar, Servlet, Jsp (Web tabanlı uygulamalar), Dağınık bileşenler (Distributed components) (örneğin EJB, RMI, CORBA), Cep telefonları, Smart kartlar için uygulamalar Ve daha niceleri yapılabilir
Programlama Kursu - Temel Java Eğitimi ( 45 Saat)
-JAVA giriş
-JAVA JDK (Java Development Kit) kurulumu
-JAVA Netbeens IDE kurulumu
-JAVA Nesne kavramı ve sınıf nesnelerinin tasarımı
-JAVA Değişken kavramı ve veritipleri
-JAVA Operator kavramı ve operatörlerin incelenmesi
-JAVA Deyim ve Döngüler
-JAVA Diziler
-JAVA Metod kavramı ve metotlar
-JAVA Sınıf kavramı ve sınıfların kullanımı
-JAVA Ön tanımlı java sınıfları ve kullanımı
-JAVA Çok boyutlu diziler
-JAVA Dosya işlemleri
-JAVA Grafik arayüzü geliştirme
-JAVA 2D
-JAVA Layout mekanizması
-JAVA Menüler
-JAVA Collections
-JAVA JDBC teknolojisi
-JAVA ve daha fazlası…
-JAVA Programlama Kursu - JAVA Proje ve Uygulamaları
Suramadu Bridge — connected Java Island and Madura Island. Right now, this is the longest bridge in Indonesia (5,4 km). But if ambitious Sunda Strait Bridge Project start to build in 2014, this Suramadu Bridge will be the second longest bridge in 2020. #strait #madura #java #indonesia #photo #iamdreamcatcher #travel #nature (Taken with instagram)
public class P1PartB4
{
public static void main(String args[])
{
long x, b, y;
if(args.length >= 1)
{
x = Long.parseLong(args[0]);
b = Long.parseLong(args[1]);
if(x >= 1)
{
y = BaseB(x, b);
System.out.println(“\n X = ” + x + “ Y = ” + y);
}
}
return;
}
public static long BaseB(long x, long b)
{
long[] remArray = new long[10];
long number = x;
long divisor = b;
long quotient = number / divisor;
while (quotient != 0)
{
for (int i = 0; i < 10; i++)
{
remArray[i] = number % divisor;
quotient = number / divisor;
number = quotient;
quotient = number / divisor;
}
}
long rem = remArray[0] * 1 + remArray[1] * 10 + remArray[2] * 100 + remArray[3] * 1000 + remArray[4] * 10000 + remArray[5] * 100000 + remArray[6] * 1000000 + remArray[7] * 10000000 + remArray[8] * 100000000 + remArray[9] * 1000000000;
return rem;
}
}
This one converts a given number to a different number base, both entered by the user as command line arguments. One more to go for this assignment, then I get to start another that’s due in two weeks! I feel like this kid.

by Hengki Koentjoro
unless I get full credit on my compsci assignment due on Tuesday AND ace the final exam, I’m going to fail the class.
And considering that I’m NOT going to get 100%, much less even 50% on the assignment (acing the exam MAY be possible but highly unlikely…)
I’m throwing in the towel as you may say.
I’m just going to focus on my other classes.
I feel like such a failure, but then I honestly don’t feel that bad.
Because I wasn’t at all prepared for this class
and I did try to catch up but I didn’t have enough time or capability to teach myself an entire semester worth of Java programming and still understand the new material
Not to mention, I’m studying abroad. Haha. Which means I’m not really putting as much effort into my classes as I really should.
And if I was going to pass that class, I would’ve spent all 5 months in NZ holed up in my room like a hermit and do nothing but study for this class.
Also, it’d probably would’ve meant sacrificing good marks in my other 3 classes.
So that’s my rationalisation. I hope I’m not just making excuses for myself and convincing myself that it’s okay to fail. It’s not like I want to fail a class, honestly. My GPA will be screwed and I don’t even know what repercussions it’ll have besides that I’ll have to take 5 classes my last semester. 18 units. Yikes. (But it should be easier since I’ve already been exposed to the material).
The current game I’m creating in Java. Im no graphic designer so there’s a yellow square where the player should be but it is progressing well nonetheless, so i am satisfied with how it is for now.
759 lines of code so far.
