Subject: My Experience with JioFiber – False Promises, Billing Scam, and Poor Service Hi Everyone, I want to share my frustrating and disappointing experience with JioFiber in the hope that it helps others make informed decisions and alerts the company to the kind of service being offered under its name. Customer Details: Name: Ayush Gupta Registered Mobile: +91 807748XXXX JioFiber Service ID: +91 1203648052 Plan: ₹399/month, 6-month subscription starting 18 November 2024 Here's a timeline of events: 📶 Connection Started: November 18, 2024 ❌ Service Stopped: April 16, 2025 – more than a month early , despite my prepaid 6-month plan. 📞 I raised multiple complaints , asking for a weekend visit due to my work schedule. No engineer ever showed up. 📤 Despite no service, Jio sent a bill for ₹501 – unjustified . 📩 On April 29, 2025, all my complaints were marked as resolved without any action . False Promises by...
Flutter Developer Interview Questions & Answers Flutter Developer Interview Questions & Answers Preparing for a Flutter Developer interview? Here are some essential questions and their answers. 1. Flutter Basics & Dart Language What is Flutter, and why did you choose it for app development? Flutter is an open-source UI toolkit developed by Google for building natively compiled applications for mobile, web, and desktop from a single codebase. Difference between StatefulWidget and StatelessWidget class MyStatelessWidget extends StatelessWidget { @override Widget build(BuildContext context) { return Text("I never change!"); } } 2. State Management When would you use GetX over Provider or BLoC? - GetX: Best for small projects, minimal boilerplate. - Provider: Good for dependency injection. - BLoC: Best for large apps with structured state management. 3. Performance Op...