interview共264篇
@PreConstruct and @PostConstruct annotation Spring Boot Example-拾光赋

@PreConstruct and @PostConstruct annotation Spring Boot Example

@PreConstruct and @PostConstruct annotation Spring Boot Example, @PostConstruct: This method is called after the Spring bean (in this case, ExampleBean) has been created and all de...
kity的头像-拾光赋kity1个月前
0316
Demystifying hashCode() and equals(): The Backbone of Java Hash Collections-拾光赋

Demystifying hashCode() and equals(): The Backbone of Java Hash Collections

Demystifying hashCode() and equals(): The Backbone of Java Hash Collections, Collections Framework Essentials (8 Part Series) 1 Understanding ArrayList: Essential Knowledge for Int...
kity的头像-拾光赋kity3个月前
0506
Trie Data Structure - Insert Operation-拾光赋

Trie Data Structure – Insert Operation

Trie Data Structure - Insert Operation, Introduction Trie is a special data structure in which we store the letters of the string. It is very much helpful in finding the longest pr...
kity的头像-拾光赋kity4年前
04011
Logging Best Practices Revisited-拾光赋

Logging Best Practices Revisited

Logging Best Practices Revisited,As I write this my interview on DevCentral hasn't started yet so if you subscribe to my blog or follow me on socials you might be able to catch it ...
kity的头像-拾光赋kity2年前
05212
Zenoti SDE-1 Interview Experience (2024)-拾光赋

Zenoti SDE-1 Interview Experience (2024)

Zenoti SDE-1 Interview Experience (2024), import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; import java.io.PrintWriter; import java.util....
kity的头像-拾光赋kity8个月前
03415
Common Java Developer Interview Questions and Answers on multithreading, garbage collection, thread pools, and synchronization-拾光赋

Common Java Developer Interview Questions and Answers on multithreading, garbage collection, thread pools, and synchronization

Common Java Developer Interview Questions and Answers on multithreading, garbage collection, thread pools, and synchronization, Thread Lifecycle and Management Question: Can you ex...
kity的头像-拾光赋kity6个月前
0405
Find the factorial of given number in Python-拾光赋

Find the factorial of given number in Python

Find the factorial of given number in Python,Method 1: Finding the factorial of a given number using for loop def factorial(number): output = 1 if number < 2: return output else...
kity的头像-拾光赋kity3年前
0326
Valid Palindrome-拾光赋

Valid Palindrome

Valid Palindrome, Instructions A phrase is a palindrome if, after converting all uppercase letters into lowercase letters and removing all non-alphanumeric characters, it reads the...
kity的头像-拾光赋kity3年前
02512
Implementing Linked Lists in Python-拾光赋

Implementing Linked Lists in Python

Implementing Linked Lists in Python,Generally, when studying data structures, we usually start with two types of common data structures: contiguous and linked. Each of them comes w...
kity的头像-拾光赋kity6个月前
0355
Cracking OOP in Java: A PIE You’ll Want a Slice Of-拾光赋

Cracking OOP in Java: A PIE You’ll Want a Slice Of

Cracking OOP in Java: A PIE You’ll Want a Slice Of, OOPs Essentials (6 Part Series) 1 Cracking OOP in Java: A PIE You’ll Want a Slice Of 2 Abstraction: Decoding Abstract Classes ...
kity的头像-拾光赋kity5个月前
02711
Java interview questions for 4 to 7 years experience-拾光赋

Java interview questions for 4 to 7 years experience

Java interview questions for 4 to 7 years experience,In this post, we will see Java interview questions for 5 to 6 years experience. When you have 5 years of experience as java dev...
kity的头像-拾光赋kity6年前
0415
Java Interview - abstract-拾光赋

Java Interview – abstract

Java Interview - abstract,Let's talk about the abstract keyword in Java and what can be asked during the Java interview related to abstract? Explain About Abstract Classes in Java?...
kity的头像-拾光赋kity3年前
03115