Core Java (6529)
Advanced Java (552)
Swing (223)
EJB (402)
Java Networking (49)
Hibernate (1009)
Spring Framework (1486)
Java J2EE AllOther (116) When you say String is immutable, what do you mean by that? Say I have String s = "Ness" s= s+"Technologies"; What will happen? If the value gets appended, then what is the meaning of immutable here?
5 17416write a query to select name from one table which has id,name and salary from another table which has id, sal where the salary is the second maximum
3 9779In Java why we write public static void main(String args[]) why not main()?
Aptech, GE Healthcare, Infosys, Microsoft, New Horizon, Practical Viva Questions, TCS, Wipro,
46 110671Difference between Web-based applications,Client- Server applications and Distributed applications?
3 13790
Realized?
What is the difference between break and continue statements?
Write a program to find the whether a number is an Armstrong number or not?
Explain public static void main(string args[]) in java.
what are the different modes of archival? Explain each mode in two lines each?
Write a program to print count of empty strings in java 8?
How is declarative handling of exceptions done in struts ?
How to sort array in descending order in java?
What do you know about validation plugin ?
Differentiate between static and non-static methods in java.
What are the contents on web.xml in struts application ?
i want test pattern of zylog company and some examples also
What is the difference between filters and interceptors ?
What is an object in java and how is it created?
Write a java program to find the route that connects between Red and Green Cells. General Rules for traversal 1. You can traverse from one cell to another vertically, horizontally or diagonally. 2. You cannot traverse through Black cells. 3. There should be only one Red and Green cell and at least one of each should be present. Otherwise the array is invalid. 4. You cannot revisit a cell that you have already traversed. 5. The maze need not be in the same as given in the above example