SoftwareSiege Profile Banner
CodeBarbarian Profile
CodeBarbarian

@SoftwareSiege

Followers
90
Following
242
Media
113
Statuses
366

🛡️ Defender of clean code

Coding Battlefield ⚔️
Joined January 2025
Don't wanna be here? Send us removal request.
@SoftwareSiege
CodeBarbarian
20 days
A #Java class cannot be both abstract and final (contradictory intent, CTE)
0
0
1
@CompSciFact
Computer Science
1 month
The problem of determining whether a graph has a Hamiltonian circuit is NP complete.
2
4
25
@SoftwareSiege
CodeBarbarian
1 month
#Java's greatest parlor trick: The blueprint for the universe is also one of the bricks
0
0
0
@CompSciFact
Computer Science
2 months
Every propositional formula can be transformed into conjunctive normal form and into disjunctive normal form.
1
3
11
@SoftwareSiege
CodeBarbarian
2 months
1
0
0
@SoftwareSiege
CodeBarbarian
2 months
#Compilation Strategy: #AOT vs #JIT
1
0
1
@CompSciFact
Computer Science
2 months
Jack Kilby developed the integrated circuit in 1958.
0
3
11
@SoftwareSiege
CodeBarbarian
2 months
🤔 Oh Really? Does #microservices always mean better scalability?
0
0
3
@SoftwareSiege
CodeBarbarian
2 months
0
0
3
@SoftwareSiege
CodeBarbarian
2 months
#DataStructures – #BST vs #Heap (Min/Max)
0
0
0
@SoftwareSiege
CodeBarbarian
2 months
#Java – #Polymorphism & #SOLID Design (LSP)
0
1
1
@SoftwareSiege
CodeBarbarian
2 months
#Java – #PassByValue
0
0
0
@SoftwareSiege
CodeBarbarian
2 months
🤔 Does #multithreading always improve #performance?
0
0
0
@SoftwareSiege
CodeBarbarian
2 months
1
0
2
@SoftwareSiege
CodeBarbarian
2 months
#Java – #Primitive vs #Reference Types
0
0
0
@SoftwareSiege
CodeBarbarian
2 months
#Java - #String Pool & intern()
0
0
0
@SoftwareSiege
CodeBarbarian
2 months
0
0
1
@SoftwareSiege
CodeBarbarian
2 months
Answer: 0 Why?: - Parent constructor runs first → calls show() - show() is overridden in Child, so Child. show() is invoked - At this point, Child.value is still default-initialized to 0 The field value = 99 hasn’t been assigned yet - So System.out.println(value) prints 0
@SoftwareSiege
CodeBarbarian
2 months
What will be the output of the following #Java code?
0
0
2
@SoftwareSiege
CodeBarbarian
2 months
#Data Structures – #Linear vs #NonLinear
0
0
1
@SoftwareSiege
CodeBarbarian
2 months
TimSort is #Java’s default sorting algorithm used in Arrays.sort() for objects and Collections.sort(). - It’s a hybrid of Merge Sort and Insertion Sort, designed to perform exceptionally well on real-world data that often contains ordered sequences. - It works by identifying
en.wikipedia.org
0
0
1