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...
Object কি ?
সাধারনভাবে object বলতে বুজায় কোন বস্তু, আপনি real-world এ অনেক উদাহরণ খুঁজে পাবেন: আপনার desk, আপনার টেলিভিশন, আপনার bicycle একটি অবজেক্ট, বই, কলম, খাতা, কম্পিউটার এগুলো প্রত্যকটিই এক একটি অবজেক্ট। প্রতিটি অবজেক্টের কিছু বৈশিষ্ট থাকে, যেগুলোর জন্য একটি object অন্য একটি object থেক...
কম্পিউটার আবিষ্কারের পর থেকেই তা দিয়ে জটিল সমস্যা সহজে সমাধানের চেষ্টা অব্যাহত রয়েছে এবং গবেষনা ও উন্নয়নমূলক কাজ চলছে বিভিন্ন প্রোগ্রামিং পদ্বতি নিয়ে। মডিউলার প্রোগ্রামিং, টপ-ডাউন প্রোগ্রামিং, বটম-আপ প্রোগ্রামিং উল্লখযোগ্য কয়েকটি প্রোগ্রামিং পদ্বতি। সকল প্রোগ্রামিং পদ্বতির উদ্দেশ্য অভিন্...
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,...
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...
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.*;...
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...
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...
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...