Topic — Add New » Posts Last Poster Freshness
Java 1 h.vijayganesh 5 days

What is @override annotation in java? what it will do?

Write a java program to sort words using a given character ? 2 kartik 1 month

Write a java program to sort words in a string by a given index ?

Input: My name is kiran
Input: 2

Output: name kiran is My

Selecting a truck 3 harsha27n 2 months

Hi,

Im new to algorithms, so this might be a simple question for most of you

Lets say there are 5 trucks, each of which can take 100kg load. And they are filled to some extent randomly.
Let the free quantity be 40kg, 30kg, 20kg, 80kg, 60kg respectively. At any given time only single load comes.
Lets say a load of 25kg comes, we have to select the truck where it fits leaving less free space, here 30kg
Now the free quantities are 40, 5, 20, 80 and 60. Next if a l...

even or odd 2 4 months

how can we find wather given number is even or odd without using module operator

Multiple public interfaces in a Java file 2 pavan 4 months

It is not allowed in Java to have more than one public classs in a file. Can we have more than one public interfaces, or a public interface and a public class

Merge Vs Quick Sort 3 Richipal 4 months

Java standard prefers merge sort , but c++ standard prefers quick sort , both have average time complexity of O(nlog n) then why we do so ?

Autoboxing in Java 3 rahul 4 months

What is autoboxing in Java?

uploading /downloading in jsp/servlet 1 4 months

can some body give me the code for uploading and downloading file in jsp/servelet using jboss server

string literals 1 namit mishra 5 months

what is string literal in java?

References in Java and C++ 2 5 months

What are the differences between references in C++ and Java?

Why doesn't Java support default arguments? 2 5 months

Default arguments are ot supported in Java. Is there any reason for this?

Checked and unchecked exceptions in Java 1 5 months

What are checked and unchecked exceptions in Java? When to use checked exceptions?

piped strems 3 5 months

what is piped stream? give the example in detail

programming 2 Ravi 6 months

Write a Java program that outputs all possible strings formed by using the characters 'c', 'a', 'r', 'b', 'o' , and 'n' exactly once.

Enums in Java 2 kartik 6 months

How enums in Java are different from C++?

Changing Java version 2 kartik 6 months

How to change the java version in unix ?

Java Question 2 kartik 6 months

What happens when we call a overridden function in constructor?