AWS Certified Developer Associate - Practice Exams

Поділитися
Вставка
  • Опубліковано 29 лис 2024

КОМЕНТАРІ • 8

  • @icepicker8528
    @icepicker8528 12 днів тому +1

    Thanks I passed my exam today, this did help. Thank you.

  • @TEJ766
    @TEJ766 2 місяці тому +3

    Pls post part 2 ..I hv scheduled aws developer associate exam. This dumps helped a lot clear the concept

  • @nouchance
    @nouchance 3 місяці тому +1

    before the video started I wanted to say a huge thank you for helping us learn many things that we didn't know.
    Health to you and your loved ones! Don't stop, good luck!

  • @manideepv1370
    @manideepv1370 3 місяці тому +1

    TQ u sir nice video
    It will help to certification preparation
    Can u pls share doc file in link sir 🎉🎉

  • @Ssttaarr-v8d
    @Ssttaarr-v8d Місяць тому +1

    Can we access other videos related to developer exam practice?

  • @TEJ766
    @TEJ766 2 місяці тому +2

    Q-40 ,Is the answer correct?..bz invalidate cache gives us latest data..

    • @icepicker8528
      @icepicker8528 13 днів тому

      Q40: I think B is correct. For example if you update product_id 27 in the backend and invalidate the cache for that item then on the next read of the data, it'll get the correct value. The next read could be soon or it could be after many more product update writes happen.
      Answer D is pretty close but you're updating the backend and the cache for every write regardless of how many reads and cache-misses there are between the writes. Potentially B is better assuming the cache invalidation is faster operation than actually updating the cached value.
      Full disclosure: I have no idea