Skip to main content

Posts


Welcome to Daily Updates

*** Happy Learning***

Quick Links


==> Online Fun Games hub

==>Daily Job Updates IT and Non IT

==>Every month Current Affairs

==>Every month Dividend, Bonus Issue and Stock Split information

==> JAVASCRIPT QUIZ

==>AADHAAR download, Date of birth,name and Address correction, PVC card and more links

==> MICROSOFT EXCEL TUTORIAL

==> SQL Editor - For Practice

Java Stream API Quick Revision Guide

  Java Stream API — Quick Guide The Stream API was introduced in Java 8 . It is used to process collections of data in a declarative way using operations such as filter() , map() , sorted() , and collect() . Basic flow List<Integer> numbers = Arrays.asList(10, 15, 20, 25, 30); List<Integer> result = numbers.stream() .filter(n -> n > 20) .map(n -> n * 2) .collect(Collectors.toList()); System.out.println(result); Output: [50, 60] Think of it as: Collection → Stream → Intermediate operations → Terminal operation → Result Important Stream API operations Operation Purpose Example filter() Select elements filter(x -> x > 10) map() Transform elements map(x -> x * 2) sorted() Sort elements sorted() distinct() Remove duplicates distinct() limit() Take first N limit(5) skip() Skip first N skip(2) forEach() Process elements forEach(System.out::println) collect() Convert to collection/result collect(Collectors.toList()) count() Count ele...
Recent posts

Process to Update Mobile Number and Email ID in PAN Card

Process to Update Mobile Number and Email ID in PAN Card  Mobile Number and Email ID can update freely in PAN Card. Follow below process to update, 1. Access following link ->  https://onlineservices.proteantech.in/paam/endUserAddressUpdate.html 2. Provide your PAN Card number, Aadhaar ID and Date of birth(Only Month and Year) click on submit. 3. Need to verify Aadhaar via OTP 4. Next screen populates current mobile number, Email ID, and if you want to update select the radio button yes, then under that Mobile number and Email ID update fields will be enabled to edit. 5. Click on submit,  OTP will be sent to mobile number and Email ID, have to enter in the respective fields. 6. Click on Submit button, you will receive the PDF of submission to updated email and same can be seen in the screen. In next 24 to 36 hours, Approval will be received from income tax department and same will be sent to updated email.

Top 10 Mobile Phones Under ₹30,000 You Should Buy in 2026

Best Smartphones Under ₹30,000 (2026) | Top 10 Phones Compared Updated August 2026 Best Smartphones Under ₹30,000 Buying a smartphone in the ₹25,000–₹30,000 segment has become more exciting than ever. This price range now offers flagship-level processors, AMOLED displays with 120Hz or higher refresh rates, excellent cameras, long-lasting batteries, and software experiences that rival premium devices. Whether you're a gamer, content creator, student, or professional, choosing the right smartphone depends on more than just specifications. Real-world performance, camera consistency, battery endurance, software support, and overall value all matter. This guide compares the best smartphones under ₹30,000 to help you make an informed decision. View Top Phones Compare Devices Why Trust This Guide? Instead of simply comparing specifications, this guide focuses on real-world usability. Eve...