Posts

LTI MIndtree interview question

Explain your project What is the value of a and b     int a, integer b will below code work? a=b will below code work?If yes what would be the output Boolean a = new Boolean("Name") Write java 8 program to return unique elements only //input = 1, 2, 2, 3, 4, 4 //Output: 1 2 3 4 List<Integer> num = Arrays.asList( 1, 2, 2, 3, 4, 4); unique = num.stream().distinct().collect(Collectors.toList()); Write java 8 program to return list of string with same length input : ("a", "bb", "ccc", "dd") Output: {1=[a], 2=[bb, dd], 3=[ccc]} List<String> words = Arrays.asList("a", "bb", "ccc", "dd"); Map<Integer, List<String>> groupByLength = words.stream().collect(Collectors.groupingBy(String::length)); Write sql query to find employe recordswhoes salary is maximum select * from Employee  where sal = ( select max(sal) from Employee); Write sql query to update the salary whoes name is jaya up...

Japan job details

 company:  Fast Retailing, NTT job searching site: japan-dev.com 1) Java Multithreading Crash Course – Quick Revision for Interviews | Important Interview Topics = https://linktw.in/kLDryG 2) Java Streams: Grouping, Aggregation, and Summary Statistics Explained | Interview Prep = https://linktw.in/LrgfYU 3) Top 10 Essential Spring Boot Interview Concepts | Must-Know Topics for every Spring Boot Developer = https://linktw.in/hmooIN 4) Learn JWT Authentication with Spring Boot 3 and MongoDB - Build Secure APIs - Complete Guide = https://linktw.in/fpqHSA 5) Implement Caching in Spring Boot: MongoDB + Redis Tutorial = https://linktw.in/sOqjDB 6) System Design Masterclass: Scale your Application from Zero to Millions of Users 🚀 = https://linktw.in/UWROqql 7) Spring Boot Resilience4j Tutorial: Circuit Breaker & Retry Implementation = https://linktw.in/XzqnSV 1. Write a Java program to check if a number is prime. 2. Write a Java program to sort an array using the bubble s...