Comments for Java2Blog https://java2blog.com A blog on Java, Python and C++ programming languages Tue, 07 Feb 2023 18:05:36 +0000 hourly 1 https://wordpress.org/?v=6.2.9 Comment on Find all subsets of set (power set) in java by Nadiia https://java2blog.com/find-subsets-set-power-set/#comment-90828 Thu, 01 Sep 2022 05:01:01 +0000 https://java2blog.com/?p=6381#comment-90828 Thank you for explanation. That makes bit manipulation algorithm much more comprehendable.

]]>
Comment on Dijkstra’s algorithm in java by Victor Basic https://java2blog.com/dijkstra-java/#comment-67354 Mon, 20 Dec 2021 21:11:53 +0000 https://www.java2blog.com/?p=4461#comment-67354 there a plenty examples for the Dijkstra’s algorithm in Java but this one is really good, clean and well explained. Thank you, Sir.

]]>
Comment on Separate 0s and 1s in an array by Rahul Kumar https://java2blog.com/separate-0s-and-1s-in-array/#comment-66105 Sat, 04 Dec 2021 22:40:34 +0000 http://www.java2blog.com/?p=82#comment-66105 package com.learn.dec.array;

public class SeperateZeroOnes {

public static void main(String[] args) {
int arr[]={0,1,0,0,1,1,1,0,1};

System.out.println(“Original Array: “);
for (int i = 0; i < arr.length; i++) {
System.out.print(arr[i]+" ");
}

int l = 0 , r = arr.length – 1;

while (l arr[r]){

int temp = arr[l] ;
arr[l] = arr[r];
arr[r] = temp;
}
l++;
r–;

}
System.out.println(“\nSorted Array: “);
for (int i = 0; i < arr.length; i++) {
System.out.print(arr[i]+" ");
}

}

}

]]>
Comment on Spring Boot tutorial by Shubham https://java2blog.com/spring-boot-tutorial/#comment-58913 Fri, 24 Sep 2021 04:42:32 +0000 http://www.java2blog.com/?p=3119#comment-58913 Best blog for interview preparation

]]>
Comment on No compiler is provided in this environment. Perhaps you are running on a JRE rather than a JDK? by ask https://java2blog.com/no-compiler-provided-environment-perhaps-running-jre-rather-jdk/#comment-54623 Fri, 16 Jul 2021 09:48:07 +0000 https://java2blog.com/?p=7345#comment-54623 Good. It work fine for me

]]>
Comment on Core Java interview questions by Arun Kumar https://java2blog.com/java-interview-questions-for-2-years-experience/#comment-54101 Sun, 04 Jul 2021 07:04:38 +0000 https://www.java2blog.com/?p=4425#comment-54101 Very Good set of questions thank you.

]]>
Comment on [Fixed] Initial heap size set to a larger value than the maximum heap size by Axel Furtenbach https://java2blog.com/initial-heap-size-set-to-a-larger-value-than-the-maximum-heap-size/#comment-53252 Wed, 16 Jun 2021 14:03:47 +0000 https://java2blog.com/?p=11481#comment-53252 Thanks for the help! Really helped me out!

]]>
Comment on Java Interview Programs by nishant bhardwaj https://java2blog.com/java-interview-programs/#comment-52949 Sun, 13 Jun 2021 10:00:06 +0000 http://www.java2blog.com/?p=326#comment-52949 good explanation andeasily understanding thanks

]]>
Comment on Error could not create the Java virtual machine in java by thomas https://java2blog.com/error-could-not-create-java-virtual-machine/#comment-52482 Tue, 08 Jun 2021 11:50:28 +0000 https://www.java2blog.com/?p=4276#comment-52482 thanks helped alot

]]>