i
V2STech Solutions Pvt. Ltd.
Filter interviews by
I applied via Recruitment Consulltant and was interviewed in Feb 2023. There were 4 interview rounds.
How to find palindrome number & test a number
HashMap is a data structure that stores key-value pairs and uses hashing to retrieve values quickly.
HashMap uses an array of buckets to store key-value pairs
Each bucket contains a linked list of entries
Hashing is used to determine the index of the bucket where the entry should be stored
If multiple entries have the same hash code, they are stored in the same bucket as a linked list
When retrieving a value, the hash code ...
I expect a competitive salary based on my experience, skills, and the market rate for Java Developers.
Consider the average salary range for Java Developers in your location
Take into account your years of experience and level of expertise
Research the market rate for Java Developers in the industry
Factor in any additional certifications or specialized skills you possess
Consider the company's size, reputation, and benefit
In my daily work as a Java Developer, I have been responsible for developing and maintaining Java applications.
Developing and implementing Java applications
Writing clean and efficient code
Debugging and troubleshooting issues
Collaborating with team members on projects
Participating in code reviews
Testing and documenting software
Keeping up-to-date with industry trends and technologies
Top trending discussions
In Java, == compares memory addresses while .equals() compares the actual content of objects.
== compares memory addresses of objects, while .equals() compares the actual content.
== is used to compare primitive data types, while .equals() is used to compare objects.
Example: String str1 = new String("hello"); String str2 = new String("hello"); str1 == str2 will be false, but str1.equals(str2) will be true.
The question explains the difference between == and .equals() in Java for comparing object references and content.
Use == to compare object references (memory location)
Use .equals() to compare the actual content or values of the objects
Example: String str1 = new String("hello"); String str2 = new String("hello"); str1 == str2 will be false, but str1.equals(str2) will be true
I applied via Walk-in and was interviewed in Nov 2024. There were 2 interview rounds.
Questions on string and arrays both are moderate level questions on hacherrank type for 20 marks
I applied via Naukri.com and was interviewed in Feb 2024. There was 1 interview round.
There were 5 questions and we need to solve 4 questions in java. Mostly Array and string based.
I applied via campus placement at National Institute of Technology (NIT), Warangal and was interviewed in Jul 2022. There were 3 interview rounds.
Their are 30 questions which one has to done in 30 mins
Immutable class in Java cannot be modified after creation, ensuring data integrity.
Make the class final so it cannot be extended
Make all fields private and final so they cannot be modified
Do not provide setter methods, only getter methods to access the fields
If the class contains mutable objects, make sure to return a deep copy of them in getter methods
The question is asking to create a class with certain restrictions like being final, having private and final fields, and no setter methods.
Declare the class as final to prevent it from being subclassed.
Make all fields private and final to ensure encapsulation and immutability.
Provide no setter methods to enforce read-only access to the fields.
posted on 8 Aug 2024
I applied via Naukri.com and was interviewed in Jul 2024. There was 1 interview round.
The static keyword in Java is used to create class-level variables and methods that can be accessed without creating an instance of the class.
Static variables are shared among all instances of a class.
Static methods can be called without creating an instance of the class.
Static blocks are used to initialize static variables.
Static keyword can also be used to create static nested classes.
I applied via LinkedIn and was interviewed in Apr 2024. There were 2 interview rounds.
Q.1 Pattern
1
*2*
**3**
Q. 2
write code to get sub array with max sum from given array.
In Java, == compares memory addresses while .equals() compares the actual content of objects.
== compares memory addresses of objects, while .equals() compares the actual content of objects.
== is used to compare primitive data types, while .equals() is used to compare objects.
Example: String str1 = new String("hello"); String str2 = new String("hello"); str1 == str2 will be false, but str1.equals(str2) will be true.
In Java, == compares object references, while .equals() compares object values.
Use == to compare if two object references point to the same memory location.
Use .equals() to compare if two objects have the same values.
Example: String str1 = new String("hello"); String str2 = new String("hello"); str1 == str2 will be false, but str1.equals(str2) will be true.
Interview experience
based on 1 review
Rating in categories
Software Developer
25
salaries
| ₹2 L/yr - ₹8.2 L/yr |
Software Engineer
21
salaries
| ₹4 L/yr - ₹12 L/yr |
Java Developer
7
salaries
| ₹1.8 L/yr - ₹5.4 L/yr |
Software Tester
4
salaries
| ₹2.2 L/yr - ₹4.1 L/yr |
Project Manager
4
salaries
| ₹7.6 L/yr - ₹12 L/yr |
Infosys
TCS
Wipro
HCLTech