Пікірлер
@Rameez-Raja
@Rameez-Raja Сағат бұрын
you made my day.. Thanks for the crystal clear explanation in simple terms ❤🎉
@mariyajoshkatteboina8749
@mariyajoshkatteboina8749 2 сағат бұрын
Wow, You are a great teacher as well, You way of teaching makes concepts easy, My humble reaquest to you sir, Please do make more videos on springboot it will help us, please!
@chhitijsrivastava793
@chhitijsrivastava793 13 сағат бұрын
Really nice lecture, you made my day. I was literally searching for a Java course online and your course series is truly awesome. Thanks for your effort; such high-quality resources are rarely found almost free anywhere else. Thanks, Shreyansh ❣
@ConceptandCoding
@ConceptandCoding 12 сағат бұрын
Glad to hear that
@DeletedUser502
@DeletedUser502 14 сағат бұрын
Concise form, covered all the kakfa topic.
@anonymous34565
@anonymous34565 15 сағат бұрын
Does in L3 position SD is also being asked or in L4 and above only
@sachinarora6682
@sachinarora6682 8 сағат бұрын
From L5 onwards
@nikhilmishra7829
@nikhilmishra7829 17 сағат бұрын
Saksham sir, Big fan 💫✌
@nikhilmishra7829
@nikhilmishra7829 16 сағат бұрын
@@puneetchamria1564 what happened bro, why are you laughing 😟
@bhanusharma7066
@bhanusharma7066 17 сағат бұрын
yeh mere se adobe mein bhi pucha gya tha
@bhanusharma7066
@bhanusharma7066 18 сағат бұрын
maza aagya
@HimanshuSingh-ti6qw
@HimanshuSingh-ti6qw 19 сағат бұрын
Great end to end now i got it ❤
@abhishekgupta_101
@abhishekgupta_101 21 сағат бұрын
It's true, I did the same and it hurts when you get rejected in the last round just because you were not able to provide optimal approach.
@yashgupta7220
@yashgupta7220 21 сағат бұрын
Bro, you're crazy!! You made the Spring DAMN easy!! Love your content
@sahulraj9536
@sahulraj9536 21 сағат бұрын
hi shreyansh, in the video for 0.7f we got 0.699...7 for float representation only right but when i ran the program for float a = 0.7f the printed 0.7 only. but we should get 0.699...7 right? am i missing something. please clarify my doubt
@MayankLC93
@MayankLC93 22 сағат бұрын
IN CPP #include <iostream> using namespace std; // Base class class BasePizza { public: virtual int cost() const = 0; // Pure virtual function virtual ~BasePizza() = default; // Virtual destructor for proper cleanup }; // Concrete components class Margherita : public BasePizza { public: int cost() const override { return 100; } }; class VeggieDelight : public BasePizza { public: int cost() const override { return 200; } }; // Base Decorator class Toppings : public BasePizza { protected: BasePizza* basePizza; public: Toppings(BasePizza* base) : basePizza(base) {} virtual ~Toppings() { delete basePizza; // Ensure the base pizza object is deleted to prevent memory leaks } }; // Concrete Decorators class ExtraCheese : public Toppings { public: ExtraCheese(BasePizza* base) : Toppings(base) {} int cost() const override { return basePizza->cost() + 20; } }; class Mushroom : public Toppings { public: Mushroom(BasePizza* base) : Toppings(base) {} int cost() const override { return basePizza->cost() + 40; } }; int main() { // Creating a Margherita pizza with extra cheese BasePizza* pizza = new ExtraCheese(new Margherita()); cout << "Cost of Margherita with Extra Cheese: " << pizza->cost() << " units" << endl; delete pizza; // Clean up memory // Creating a VeggieDelight pizza with extra cheese and mushrooms pizza = new Mushroom(new ExtraCheese(new VeggieDelight())); cout << "Cost of Veggie Delight with Extra Cheese and Mushroom: " << pizza->cost() << " units" << endl; delete pizza; // Clean up memory return 0; }
@AbhishekJha-sx2yv
@AbhishekJha-sx2yv 23 сағат бұрын
can we control the updation or versioning? since there's a possibility that the column which were update by txn A could be irrelevant for txn-B txn-B was trying to update some other column against the same row, but if txn - A changes the version, txn-B rolled back which is incorrect right.
@abhishekgupta-zd3zk
@abhishekgupta-zd3zk Күн бұрын
Hey shreyansh could you please make one video on time complexity and space complexity
@kennyackerman5429
@kennyackerman5429 Күн бұрын
I have but one question how can you access price as it is a private member ?
@vineet4991
@vineet4991 Күн бұрын
This is basically Dependency Inversion Principle of SOLID?