30 Important C# Interview Questions : kzbin.info/www/bejne/eHzcn3h4hdacf68 25 Important ASP.NET Interview Questions : kzbin.info/www/bejne/ponQfpejf7p2Zsk 25 Angular Interview Questions : kzbin.info/www/bejne/Y5vIoKx6f6mmia8 20+ SQL Server Interview Questions : kzbin.info/www/bejne/iXbHcnluorh-iZY 5 MSBI Interview Questions : kzbin.info/www/bejne/a3abYmiXjaaqj7M
@Nemosaur4 жыл бұрын
I was mainly for PUT vs POST but ended up learning so much more! Great explanation for idempotent vs non-idempotent too
@JyotirmayaMoha5 жыл бұрын
By far this is the best video i have seen where the difference between PUT and POST is clearly mentioned. Thanks a ton Sir Jee.
@TheNaveid3 жыл бұрын
I will never ever forget this now Thankyou so much
@MrStarcraftangle2 жыл бұрын
I have an interview tomorrow and I've learn a lot in this video. Many thanks! 🤗
@GadilkarVishal3 жыл бұрын
very well explained the minute differences between the methods and between Idempotent and non-Idempotent calls!! thanks a lot!!
@zuzuba34815 жыл бұрын
This Chanel deserve more then 1 million subscribers..
@aslamkazi54904 жыл бұрын
A clear and understandable way of PUT and POST method.
@azizulhaque41353 жыл бұрын
Thanks , thanks, and thanks for removing confusion post, put and patch method.
@ManikandanPandurangan3 жыл бұрын
Very good and neat explanation. Thank you
@AshisRaj4 жыл бұрын
Best video I have encountered so far for difference between PUT and POST. Thanks sir
@nallaspathfinder97794 жыл бұрын
watch this real interview: kzbin.info/www/bejne/fmnFYYWMa856ldU
@manoharsobhani36025 жыл бұрын
Per HTTP standards Post is an insert and Put is an update (and upsert if a record doesn't exist)
@nallaspathfinder97794 жыл бұрын
watch this real interview: kzbin.info/www/bejne/fmnFYYWMa856ldU
@MrAksp5 жыл бұрын
Exactly what i was looking for. Can't make better video than this. Thanks
@ravimakwana389 Жыл бұрын
Wow now it's so easy to understand and follow, Thanks
@jksharma72 жыл бұрын
Thank you sir. you are a good teacher
@KJStreaming4 жыл бұрын
wow, Nice Explanation Sir ...thanks
@MrDaringman4 жыл бұрын
Post method comes with body section only while Put and Patch with header and body section. That's why Post we are using to insert a record while Put and Patch for an update purpose.
@nallaspathfinder97794 жыл бұрын
watch this real interview: kzbin.info/www/bejne/fmnFYYWMa856ldU
@Bolla.vedhasree2 жыл бұрын
It was very informative, clear and useful .thank you
@zerosandones75473 жыл бұрын
Standard HTTP Methods: > POST (add) - mainly used for ADD operations - the ID is generated in the server-side > GET (read/search) > PUT (add / ("full") update) - mainly used for UPDATE operations - the ID is generated in the client-side (maybe for some reason your app can create a custom ID) - if the record EXISTS on the server, that record is updated - if the record DOESN'T EXISTS on the server, that record is created > DELETE (remove) > PATCH (customized update - update only what is modified) Adhering to HTTP standards is nothing but REST principles.
@expertreviews11125 жыл бұрын
Superb video. Lot of emphasis is placed on making the point clear!
@nitendratiwari37093 жыл бұрын
OSM : Clear & very deep Understanding ..!!! Thanks you
@PankajKumar-xo8ng3 жыл бұрын
Best way explanation.
@muhammadharis22054 жыл бұрын
very clear explanation. Thanks Sir
@yashsave3 жыл бұрын
Brilliant. Just What I wanted. Nicely explained when to use Put, Post and Patch.
@temmmbebkd29222 жыл бұрын
Hello sir, thank you so much for the explanation
@manishanand15135 жыл бұрын
Awesome video..best explanation of get ,put,post,patch
@zerosandones75473 жыл бұрын
If you're here for post vs put: POST is mainly used for ADD operations PUT is mainly used for UPDATE operations PUT is used to: - if the record EXISTS on the server, that record is updated - if the record DOESN'T EXISTS on the server, that record is created
@ashishmayekar625 жыл бұрын
Is there any specific advantage of using PUT over POST? Or it is just to follow standard? Btw, this is a best explaination for Put vs Post. Thanks.
@haykkyureghyan83492 жыл бұрын
there is no specific advantage, it's for stsndsrt
@sandeepa41163 жыл бұрын
Very well explained Sir! Thank you so much
@karthikkeyan44603 жыл бұрын
12:38 You are not "spelling" it wrong, you may be just "pronouncing" it wrong. This is one of the best videos I've seen on this topic. Keep up the good work..!!!
@dodogo7775 жыл бұрын
Thank you sir! the best explanation of POST vs PUT ever!
@behji1005 жыл бұрын
Good conceptual explanation.
@Gauravkumar-jm4ve3 жыл бұрын
Please keep posting more like this ❤️🙏
@TarunSingh-je9my3 жыл бұрын
I am updating code using post request and it works fine.
@SA-oh9bk2 жыл бұрын
Thank you sir.
@ThePuneet6814 жыл бұрын
Thanks sir it is awesome explanation 👌👏👌👏
@upendrapatil68084 жыл бұрын
Very well explained...Sir...!!
@arunkumararjunan86085 жыл бұрын
In java crud repository, if we use save method for POST, it will create or update the resource in database, so in that scenario server side developers don't have control for POST methods to restrict it to create new resources alone because crud repository will update the resources if it is available there in database.
@bevedel4 жыл бұрын
very helpful. thank you
@nallaspathfinder97794 жыл бұрын
watch this real interview: kzbin.info/www/bejne/fmnFYYWMa856ldU
@panchurii6 жыл бұрын
using standard http call is the correct way, but there are exceptions like, for login we can not use GET, we can only use post there for security reasons.
@eysikal4 жыл бұрын
Thanks a lot, sir! This was excellent.
@sriramkumar35306 жыл бұрын
Really good Explanation..Super
@prashantpranav84723 жыл бұрын
Wonderful
@arnoldquevedo52074 жыл бұрын
Thanks a lot
@thedude35445 жыл бұрын
thanks you for the great video
@niks74543 жыл бұрын
Well explain
@jgraves45325 жыл бұрын
very nicely done thank you.
@apalanikumar4 жыл бұрын
Nice video
@jakni36614 жыл бұрын
Explanation of the difference between Put and Post starts at 10:38
@learningeveryday96034 жыл бұрын
Thanks.
@syedbabarali15 жыл бұрын
Precious example with in short time...
@hohokidstv72983 жыл бұрын
Nice👍
@smyhasan74 жыл бұрын
Client generated Id can't be necessarily stored by server as most likely Id column will be Identity type, in that case it will be system generated. Pls clarify as it may mislead so many viewers
@smyhasan74 жыл бұрын
In this case if the server is unable to create a record with Id sent by client, then the response URL will not be same as request URL; something that the video alluded to. Not criticisng at all, just pointing out.
@nallaspathfinder97794 жыл бұрын
watch this real interview: kzbin.info/www/bejne/fmnFYYWMa856ldU
@gunsboy775 жыл бұрын
Thank you.
@srikanthr72196 жыл бұрын
Very clear
@anishpal23975 жыл бұрын
well explained.:)
@vikasrajput61353 жыл бұрын
Remember, Idempotent = the id on the server remains SAME. Non-Idempotent = the id on the "server" CHANGES
@malayaprasadlenka90885 жыл бұрын
Awesome sir
@CyberAbyss0076 жыл бұрын
Thank you!
@sreeharimanoharan32034 жыл бұрын
Awesome♥️♥️
@ramnagargoje87793 жыл бұрын
good sir
@nehajain67516 жыл бұрын
Put and post is clearly explained. But i have a question regarding put update .. if we pass only few fields to be modified will it update the other remaining fields as default ,i.e. null or it will remain the same
@JyotirmayaMoha5 жыл бұрын
You should use PATCH to update partial record. The other fields remain as it is and there will be no change. He has mentioned this in this video. Please watch the last 2 3minutes of this video for clear understanding.
@jashneaaftabi2 жыл бұрын
Can we use post for all CRUD operations ? Or it is a bad practice?
@amamsharma3722 жыл бұрын
Keep uploaded
@hohokidstv72983 жыл бұрын
Where should i use put or post only in insert new record... plz suggest with example
@sayannag96 жыл бұрын
Can we not have customised update in PUT?....for example, in the above case, if we pass only the Name parameter in PUT and don't pass anything with Amount, won't the Name only get updated?...does it throw any error or its just a good practice to separate the type of updates using 2 different methods?
@tannubajpai47824 жыл бұрын
nic one Sir can you liberate it what is id generated by client.
@nallaspathfinder97794 жыл бұрын
watch this real interview: kzbin.info/www/bejne/fmnFYYWMa856ldU
@anaghzaccount5 жыл бұрын
Is there any working practice that defines how many APIs should be exposed? For example, is it a good practice to have post and put to Target the same resource or is it advisable to just use PUT and reduce the number of APIs?
@manjunathkannur22073 жыл бұрын
Sir, what happens if I write insert method on HTTTPGET method
@charles-y2z6c4 жыл бұрын
I wish I watched this video before I went on last interview
@nallaspathfinder97794 жыл бұрын
watch this real interview: kzbin.info/www/bejne/fmnFYYWMa856ldU
@amirabbasIT4 жыл бұрын
this happened to me too
@akshaychauhan6813 жыл бұрын
I failed Interview because of this question
@dnncamargo Жыл бұрын
So, PATCH, as in PUT, it should be ideponent, but it's not. The PATCH method supplies a set of instructions to modify the resource, it doesn't use the URI like PUT method.
@ravigowda69996 жыл бұрын
Very good video
@kaisujay3 жыл бұрын
15:36
@AmitPandey-ko7lj4 жыл бұрын
Sir if client is generating Id and send request to post method. Can’t we write logic if id is present then update record or insert. If we can then What is exactly answer when anyone ask what will happen if we write update code in POST?
@rogerIndianKing4 жыл бұрын
Great video! You mean pronunciation, not spelling.
@ishasharma24503 жыл бұрын
Good Video!! And you are not spelling idempotent wrong, you should ask, If I am pronouncing it right or wrong,! :-)
@AkashGupta-gu7vd5 жыл бұрын
What if we keep post method code in put method and put code in post method. I like to know how it identify the logic
@RanjeetKumar-gg7ie4 жыл бұрын
YOU CAN WRITE ANY LOGIC INSIDE THIS, THE ISSUE IS IT'S A CONVENTION THAT ONE SHOULD FOLLOW OTHERWISE WHEN OTHERS WILL GO THROUGH YOUR CODE HE WILL HAVE TO GO THROUGH YOUR LOGIC TOO... COZ U HAVE CHANGED THE NAME OF METHODS :p
@sunilkumar-zf4dx6 жыл бұрын
I still have a confusion about PUT VS PATCH ?
@JyotirmayaMoha5 жыл бұрын
PUT : If you want to update all the records (All elements of a class) POST: To update few elements of the class.
@daalwada5 жыл бұрын
@@JyotirmayaMoha Isn't the POST method used to insert new elements? PATCH is used to update few elements of the class.
@RanjeetKumar-gg7ie4 жыл бұрын
@@daalwada POST CREATES A NEW RESOURCE & PUT FIRST SEARCH THAT EXISTING RESOURCE , IF FOUND PUT WILL UPDATE IT ELSE IT WILL CREATE IT :p