IT industry is a ocean, There is no limit of questions and answers but I must say this video is really nice that you have covered all the basic points of Apex and Object-Oriented Programming in 35 mins. When i was watching this video, I thought if you can add one example in the Static Method and Instance Method slide that would be really helpful for viewer like you have added in most of the slides, also in the next slide (Collection), if you can add points related to advantage and disadvantage of List, Set and Map along with the example would be plus. Thank you so much Ankit for creating and sharing informative video.
@vijaygehani21235 ай бұрын
Answer to your question at 28:27 is for a sync 100 SOQL queries are allowed and for async it is 200 SOQL queries. Thanks for the tip question of Set and Map that overrides and don't show the error. Highly appreciate your efforts on all the aspects of SFDC. I definitely see your channel going 10X subscribers very soon.
@TechJourneyWithAnkit5 ай бұрын
Thanks Buddy for your wishes. God is very kind
@harmeetsandhu82384 ай бұрын
Total Number of SOQL queries issued in Salesforce syc 100 /asyc 150. 1.Abstract Class have abstract method with body and In Interface Class Method without body. It will have only signature of method. 2.Apex code default Character limit 60,00,000 characters. 3.Apex is a strongly typed, object-oriented programming language that allows developers to execute flow and transaction control statements on the Salesforce platform.
@rangurajeevkumar16944 ай бұрын
Apex is called a strongly typed programming language because it enforces strict data type definitions, performs compile-time type checking, ensures type safety, supports method overloading with type-specific signatures, and allows the use of generics. This helps catch type-related errors early and maintains code consistency.
@TechJourneyWithAnkit4 ай бұрын
Good very detailed
@ravigrover19235 ай бұрын
An abstract class will have an abstract method as a must but can also have methods with body in that class . In Interface there will not be a method which is defined or has a body, it will just have signatures of methods and curly braces.
@TechJourneyWithAnkit5 ай бұрын
💯
@siddharthpadhi89795 ай бұрын
thanku so much sir..will cover these videos also...currently covering lwc bootcamp videos.
@TechJourneyWithAnkit5 ай бұрын
Great keep learning
@shraddhatidke70795 ай бұрын
Very helpful for the beginner salesforce developer ....need more such useful and advanced content.
@TechJourneyWithAnkit5 ай бұрын
Glad you found this helpful
@rashmichoudhari42233 ай бұрын
Extremely helpful for the beginner developers. Thank you so much Sir.
@TechJourneyWithAnkit3 ай бұрын
Glad you found this helpful
@Himanshukumar-pw4ys3 ай бұрын
Apex is a strongly typed programming language because it requires explicit data type declarations, enforces type checking at compile time, and ensures that variables, expressions and methods are consistently used with their declared types.
@TechJourneyWithAnkit2 ай бұрын
Very good
@sasikalakesavan5325 ай бұрын
The main difference between Interface and Abstract class is, Interface will have only abstract methods(method that has only a signature (body is not defined)). where as abstract class can have both abstract methods and non abstract methods
@TechJourneyWithAnkit5 ай бұрын
Correct
@Himanshukumar-pw4ys3 ай бұрын
Governor limit of apex code character limit: 1 million characters per class/trigger
@TechJourneyWithAnkit2 ай бұрын
Cool
@AmkapComehub4 ай бұрын
Hi Ankit, your video series are really good and helpful for interview prep. Have completed this and integration and going through LWC series. If possible please provide some insight in to development and deployment process. Thanks.
@TechJourneyWithAnkit4 ай бұрын
Sure i will plan for it.
@ravigrover19235 ай бұрын
Ankit bhai a future topic which you can cover that will benefit a lot of trailblazers is "Order of Execution". Please make a full 30 minutes to 1 hr session on it with some examples of what metadata will run first like before trigger or before flow etc :)
@TechJourneyWithAnkit5 ай бұрын
Sure Ravi Bhai will plan for it
@ravigrover19235 ай бұрын
100 SOQL statements can be run but once you do 101th SOQL you will get an exception, hope that's correct aka 101 exception
@TechJourneyWithAnkit5 ай бұрын
Correct 💯
@bbk99885 ай бұрын
Your videos are really great and ur explanation is very helpful sir 🙏🏻🙏🏻, could you pls cover these apex topics , batch apex and other imp topics related to this via bootcamps.
@TechJourneyWithAnkit5 ай бұрын
Sure I will
@raghavendrasharma24665 ай бұрын
How can we handle bulk incoming requests from external system in integration?
@TechJourneyWithAnkit5 ай бұрын
Using Bulk API. This question is covered in interview Integration playlist. Do checkout
@raghavendrasharma24665 ай бұрын
@@TechJourneyWithAnkit thank you
@user-jb6cn9ej5m3 ай бұрын
100 soql query can be inviked in single transaction and for the ASYN 200
@TechJourneyWithAnkit3 ай бұрын
Correct my friend
@shivameswarom5 ай бұрын
Kindly please do more videos on Apex
@TechJourneyWithAnkit5 ай бұрын
Sure , do check the lastest one
@shivameswarom5 ай бұрын
Thank you so much for your valuable time and effort for us I really appreciate.🎉
@Saptarshi_1013 ай бұрын
Hi, I had a confusion. In the documentation it is mentioned that the query locator returns 50 million Records. But here you have mentioned 10000. Am I missing something?
@TechJourneyWithAnkit3 ай бұрын
According to the documentation, in a batch start() method the governor limit of query selector is bypassed. The governor limit of 10,000 still applies in execute() and finish() and other Apex class methods if you use a query selector
@digambarpatle1844 ай бұрын
hi Ankit how we can I ans if interviewers asked question -- How data flows in lws when we call Apex
@TechJourneyWithAnkit4 ай бұрын
Didn't get your question
@digambarpatle1844 ай бұрын
@@TechJourneyWithAnkit if interviewer asked me a question How's the Data Flows in LWC Component When We Call Apex Class
@Dabbara-saiOO75 ай бұрын
Sir lwc interview preparation series is completed or still anything is pending in that series
@TechJourneyWithAnkit5 ай бұрын
That one is completed
@ravigrover19235 ай бұрын
Strongly typed means we must tell the compiler the data type before we ask for a variable to be defined. And the default code character limit is 6,000,000 characters.
@TechJourneyWithAnkit5 ай бұрын
Very Good Ravi
@ommahajan12103 ай бұрын
@@TechJourneyWithAnkit sir is it 6mb or 1 million characters.