Sort HashMap By Value Java8
6:17
10 ай бұрын
Amdocs Coding Interview Programs
14:07
Microservices Concept Explained
10:13
Top Java String Interview Questions
15:14
Пікірлер
@srini580
@srini580 9 сағат бұрын
Thanks You Sir for teaching me this concept!
@saudkhan1595
@saudkhan1595 5 күн бұрын
No coding questions ????
@ShudhakarkumarGupta
@ShudhakarkumarGupta 6 күн бұрын
1st round ka feedback kitne dino m ata hai koi idea
@rajeswarijajam1221
@rajeswarijajam1221 10 күн бұрын
Is it real interview?
@amolmandlik
@amolmandlik 10 күн бұрын
I think this is a Mock interview
@viveksalunkhe5008
@viveksalunkhe5008 12 күн бұрын
public static void main(String []args) { String str = "@itsss777@okayy@!$2kjbfhn!kqnfew!ksn$anfsk#"; int count = 0; Map<String, Integer> newMap = new HashMap(); for(int i = 0; i < str.length(); i++) { if(!Character.isDigit(str.charAt(i)) && !Character.isAlphabetic(str.charAt(i))) { String str_char = String.valueOf(str.charAt(i)); if(newMap.containsKey(str_char)) { str_char = String.valueOf(str.charAt(i)); newMap.put(str_char, newMap.get(str_char)+1); } else if(!newMap.containsKey(str.charAt(i))) newMap.put(str_char, 1); } } System.out.print(newMap); }
@JadhavMadhuri-w8w
@JadhavMadhuri-w8w 14 күн бұрын
b
@JadhavMadhuri-w8w
@JadhavMadhuri-w8w 14 күн бұрын
option b
@debapriyadasgupta6534
@debapriyadasgupta6534 16 күн бұрын
Are you sure such easy questions are asked to Java Developer with 3+ yrs of experience with such a high package? Not convincing actually
@Sudharsanprabu457
@Sudharsanprabu457 17 күн бұрын
b=a+b-(a=b);
@travelingwithbiswa3649
@travelingwithbiswa3649 17 күн бұрын
nice
@ashishsingh8222
@ashishsingh8222 17 күн бұрын
it will not work because every integer is some ascii value and integer has no uppercase or lowercase
@ashishsingh8222
@ashishsingh8222 17 күн бұрын
Map<Integer, Long> numsInMap = Arrays.stream(nums).boxed() .collect(Collectors.groupingBy(x -> x, Collectors.counting())); numsInMap.entrySet().forEach(x -> System.out.println(x.getKey() + " -> " + x.getValue())); for java 8
@ashishsingh8222
@ashishsingh8222 18 күн бұрын
if (num == 1 || num == 0) { return 1; } else { return num * factorial(num - 1); }
@ashishsingh8222
@ashishsingh8222 18 күн бұрын
love the logic and your videos
@amitgaurav9095
@amitgaurav9095 18 күн бұрын
Why is it throwing error for me in openjdk and jre 8
@chaithanya9307
@chaithanya9307 18 күн бұрын
Output i am getting is 34513
@abhishekshrivastava8514
@abhishekshrivastava8514 18 күн бұрын
Now a days, not these types questions are asked
@ShudhakarkumarGupta
@ShudhakarkumarGupta 19 күн бұрын
Garbage collection Dynamic binding in Java - polymorphism String in Java String buffer and builder Creat thread ways Thread state Significant of hashmap Concept of bucket of hashmap Concurrent hashmap and hashmap How to connect database in spring boot Transaction where use which layer dao service layer Monitor the spring boot Actuator other way Deploy server How many instances deploy Why do need microservice Different module use in project microservice Indexes in database Normalisation Foreign key db Primary key Composite key
@saikrishna5534
@saikrishna5534 20 күн бұрын
Tq so much brother' ❤❤😊
@Surisuri-wo1nk
@Surisuri-wo1nk 22 күн бұрын
I feel it's not real, it's fake, but nice explanation 😊
@yesukumar3156
@yesukumar3156 22 күн бұрын
option:B will be the correction output:
@Jyotiranjansahoovlogs6262
@Jyotiranjansahoovlogs6262 23 күн бұрын
To remove duplicate we can also use distinct() method
@rohrakaran
@rohrakaran 24 күн бұрын
How to automate this?
@abcdabcd9845
@abcdabcd9845 25 күн бұрын
@056_harshitagarwal8
@056_harshitagarwal8 26 күн бұрын
Is this a real interview form infosys for L1 level?? Or is it like a mock?
@cloudtech5260
@cloudtech5260 26 күн бұрын
Mock interview with questions collected from students.
@kaligouthami5279
@kaligouthami5279 26 күн бұрын
a
@AjayKumar-dn4gx
@AjayKumar-dn4gx 26 күн бұрын
1
@AjayKumar-dn4gx
@AjayKumar-dn4gx 26 күн бұрын
B
@AjayKumar-dn4gx
@AjayKumar-dn4gx 26 күн бұрын
B
@AjayKumar-dn4gx
@AjayKumar-dn4gx 26 күн бұрын
6
@AjayKumar-dn4gx
@AjayKumar-dn4gx 26 күн бұрын
B
@user-hx5lc3um8g
@user-hx5lc3um8g 26 күн бұрын
I saw lots of videos...but this is very short and nice...its really helpfull. Thanks sir
@Pavan-m8c
@Pavan-m8c Ай бұрын
rise exception
@Pavan-m8c
@Pavan-m8c Ай бұрын
1
@digamberchigare7362
@digamberchigare7362 Ай бұрын
Can we use stream to solve second highest? List<Integer>numbers=Arrays.asList(10,5,20,15,25); int secondHighest=numbers.stream().sorted(Collectors.reverseOrder()).limit(2).skip(1).get()
@rohatgianu
@rohatgianu Ай бұрын
why did not you use filter first for age then map instead of if condition
@Ram-mr5qz
@Ram-mr5qz Ай бұрын
Very Simple and Clear
@prathmeshkakde3731
@prathmeshkakde3731 Ай бұрын
Sliding window easy
@akshaykamble1788
@akshaykamble1788 Ай бұрын
Bro microservices should be more specified interviewers will not be happy by this answers
@ezequielmartinez426
@ezequielmartinez426 Ай бұрын
a shortcut! Thanks is great for practice!✍️
@techgyan6233
@techgyan6233 Ай бұрын
Its look like Fresher interview Questions of Java And Spring Boot.
@junioralamu7438
@junioralamu7438 Ай бұрын
Thanks man, this helped a lot
@abt8390
@abt8390 Ай бұрын
4
@surendrareddyseelam9757
@surendrareddyseelam9757 Ай бұрын
Sort both strings and check whether both are equal
@ganeshReddy-
@ganeshReddy- Ай бұрын
Bro hie plz reply
@tubemekala
@tubemekala Ай бұрын
set.add(ele) -> returns false for the repeated ele. if(!set.add(ele)) { syso("first repeated element" +ele)}
@mritunjoymahanta3533
@mritunjoymahanta3533 Ай бұрын
13lpa with any variable?
@karthiksundaresan6396
@karthiksundaresan6396 Ай бұрын
Awesome Video explains very well about singleton please do more videos on String interview questions as well
@43MaheshChowdary
@43MaheshChowdary Ай бұрын
Option B