Mohammad Towhidul Islam

    10-Aug-22 03:17:02 am

    Test

    Employee.java import java.io.BufferedReader; import java.io.FileReader; import java.io.IOException; import java.io.FileWriter; import java.io.PrintWriter; import java.util.List; import java.util.ArrayList; class Employee { public static String EMPLOYEE_FILE = "data\employee.txt"; ...

    Read More


    VCampus

    26-Jul-15 10:32:21 am

    Java Array Concept Interview Questions

    Here are some interview questions based upon array data structure in Java. You need to have good knowledge of how array is implemented and work in Java to answer these questions. Since array is one of the most used data structure, its expected from programmers of all levels (including beginners and...

    Read More


    Muhammad Abdullah Al Mamun

    09-Feb-15 09:30:49 pm

    জাভা প্রোগ্রামিং লেনগুয়েজ হাতেখড়ি- (দ্বিতীয় পর্ব)

    Object কি ? সাধারনভাবে object বলতে বুজায় কোন বস্তু, আপনি real-world এ অনেক উদাহরণ খুঁজে পাবেন: আপনার desk, আপনার টেলিভিশন, আপনার bicycle একটি অবজেক্ট, বই, কলম, খাতা, কম্পিউটার এগুলো প্রত্যকটিই এক একটি অবজেক্ট। প্রতিটি অবজেক্টের কিছু বৈশিষ্ট থাকে, যেগুলোর জন্য একটি object অন্য একটি object থেক...

    Read More


    Muhammad Abdullah Al Mamun

    09-Feb-15 09:28:26 pm

    জাভা প্রোগ্রাম লেনগুয়েজ এর প্রাথমিক ধারনা: (প্রথম পর্ব)

    কম্পিউটার আবিষ্কারের পর থেকেই তা দিয়ে জটিল সমস্যা সহজে সমাধানের চেষ্টা অব্যাহত রয়েছে এবং গবেষনা ও উন্নয়নমূলক কাজ চলছে বিভিন্ন প্রোগ্রামিং পদ্বতি নিয়ে। মডিউলার প্রোগ্রামিং, টপ-ডাউন প্রোগ্রামিং, বটম-আপ প্রোগ্রামিং উল্লখযোগ্য কয়েকটি প্রোগ্রামিং পদ্বতি। সকল প্রোগ্রামিং পদ্বতির উদ্দেশ্য অভিন্...

    Read More


    Mohammad Towhidul Islam

    17-Apr-14 06:10:39 pm

    Java program example to swap two numbers

    This java program swaps two numbers using a temporary variable. To swap numbers without using extra variable see another code below. Code swapping using temporary or third variable import java.util.Scanner; class SwapNumbers { public static void main(String args[]) { int x,...

    Read More


    Mohammad Towhidul Islam

    17-Apr-14 06:01:21 pm

    Java program example to generate random numbers

    Java program to generate random numbers: This code generates random numbers in range 0 to 100 (both inclusive). Code import java.util.*; class RandomNumbers { public static void main(String[] args) { int c; Random t = new Random(); // random integers in [0, 100] fo...

    Read More


    Mohammad Towhidul Islam

    17-Apr-14 05:58:11 pm

    Java program example to execute windows application

    How to open Notepad through java program: Notepad is a text editor which comes with Windows operating system, It is used for creating and editing text files. You may be developing java programs in it but you can also open it using your java code. Code import java.util.*; import java.io.*;...

    Read More


    Mohammad Towhidul Islam

    17-Apr-14 05:48:09 pm

    Java program example to compare two strings

    This program compare strings i.e test whether two strings are equal or not, compareTo method of String class is used to test equality of two String class objects. compareTo method is case sensitive i.e "java" and "Java" are two different strings if you use compareTo method. If y...

    Read More


    Mohammad Towhidul Islam

    17-Apr-14 05:39:16 pm

    Java program example to display current date and time

    Code import java.util.*; class GetCurrentDateAndTime { public static void main(String args[]) { int day, month, year; int second, minute, hour; GregorianCalendar date = new GregorianCalendar(); day = date.get(Calendar.DAY_OF_MONTH); month = date.get(Cal...

    Read More


    Mohammad Towhidul Islam

    17-Apr-14 05:34:59 pm

    Java program example to convert fahrenheit celsius

    Java program to convert Fahrenheit to Celsius: This code does temperature conversion from Fahrenheit scale to Celsius scale. For Celsius to Fahrenheit conversion use T = 9*T/5 + 32 where T is temperature on Celsius scale. Code import java.util.*; class FahrenheitToCelsius { public stat...

    Read More


First123Last
1 of 4 pages
Copyright © 2024. Powered by Intellect Software Ltd