LWC Interview 2023 |

Поділитися
Вставка
  • Опубліковано 26 лип 2024
  • Looking For Best Salesforce Trainings ? - forcegalaxy.info
    Want To Schedule Interview ? - topmate.io/force_galaxy
    #Salesforceinterview #forcegalaxy #salesforceKnowledge #LWC
    Do check out the playlist on
    1. Salesforce Lightning
    • Lightning Experience I...
    2. Salesforce
    • Career In Salesforce |...
    3. Triggers in salesforce
    • Triggers in salesforce...
    4. Admin
    • Salesforce Objects | T...
    Do share this video with your FRIENDS, SCHOOL NETWORK, IT NETWORK, AND SALESFORCE NETWORK.
    Let's make Salesforce easy for everyone.
    Quick Catch :
    Insta - kannu56chauhan?...
    Twitter - kannu_05?s=08
    Linkedin - / kanika-chauhan-b130a0100
    Email - kanika.chauhan205@gmail.com

КОМЕНТАРІ • 35

  • @swarnalatha3344
    @swarnalatha3344 6 місяців тому +2

    Nice Explanation. Thankyou

  • @jyotsna4997
    @jyotsna4997 11 місяців тому +3

    Nice explanation of all the answers... great job 💯👍

    • @forceGalaxy
      @forceGalaxy  11 місяців тому +1

      Yes candidate is too good .

    • @vickyk4922
      @vickyk4922 11 місяців тому +3

      @@forceGalaxy yes!can you post full video of this candidate which covers all the topics

    • @gvsfcloud1774
      @gvsfcloud1774 10 місяців тому +2

      ​@@forceGalaxycan you explain on passing sobject as parameter to custom event

  • @namiows
    @namiows 6 місяців тому

    for the last question, it’s mandatory also to have a aura component when replacing the standard action of a standard button, right? Is this correct also?

  • @NareshSikhwal
    @NareshSikhwal 9 місяців тому

    Answer for Constructor and Connected callback is same. Component inserted in DOM.

    • @ChaitanyaCanSing
      @ChaitanyaCanSing 6 місяців тому +1

      Constructor is called when the component is created right? Connected call back is called when the component is inserted??

  • @urmi0416
    @urmi0416 11 місяців тому +3

    can you upload a video on interview questions on LWC for 2 years of experience.
    What is the level of questions... really important can you please...

    • @forceGalaxy
      @forceGalaxy  11 місяців тому

      Sure

    • @anishroy8805
      @anishroy8805 9 місяців тому +1

      @@forceGalaxy Hi Maam, It is highly needed. Please make a detailed video of the list of questions that will be asked from LWC and Apex for 2yrs exp guy. There is no video such as this on UA-cam.

  • @narendrakumarponnaganti9327
    @narendrakumarponnaganti9327 11 місяців тому +1

    Hi, please make a video on freshers resume and provide sample resumes. i am waiting for this type of
    video. please do it soon

  • @amarmute7384
    @amarmute7384 11 місяців тому +1

    I have a question.. If account has two 2opportunity I have to prevent deletion of account then how it can be done.. With no code

    • @anirudh3925
      @anirudh3925 9 місяців тому

      Use validation rule

    • @Akshikhushi1528
      @Akshikhushi1528 5 місяців тому +1

      Validation rule won’t work here. As it is fire on record save. We should use triggers in this case.

    • @shanmugapraveen5079
      @shanmugapraveen5079 5 місяців тому

      We can use flow

  • @sameerqadri9877
    @sameerqadri9877 11 місяців тому +1

    can i book fresher Interview on topmate with you ? on next week

    • @forceGalaxy
      @forceGalaxy  11 місяців тому

      Sure . Availabilities are shared there.

  • @sirishaakula4717
    @sirishaakula4717 Місяць тому

    How much exp he have??

  • @adityagupta1028
    @adityagupta1028 10 місяців тому +1

    Hi, I have created an Apex batch class to send an email for every 72 hours by using classic email template, I am using the opportunity and related contact data in classic email template and sending email to opportunity owner, I am receiving the email but merge fields are not working or showing in email when i am receiving. can you please tell me where I am missing? and also one more question what is whatId when using classic email template in Apex code?

    • @rohitkumargoud6220
      @rohitkumargoud6220 9 місяців тому +1

      I've done something similar work but used Visualforce email template there you won't feel any problem with the fields

    • @the_Story_Teller_1907
      @the_Story_Teller_1907 5 місяців тому

      You might have to use VF email template to include merge fields. In classic email template, merge fields are not supported.

  • @raghavendrasharma2466
    @raghavendrasharma2466 9 місяців тому

    Hi forceGalaxy,
    Could you please help me. A question was asked in my interview today, the question is
    How do we fetch all accounts that have at least one or more contacts and we have to show fields like account name, last modified contact name related to account and in the org we have millions of accounts and contacts. And data have to show in datatable in LWC.

    • @AzeemKhan-hr3td
      @AzeemKhan-hr3td 9 місяців тому +1

      Hello Raghavendra,
      To implement the asked scenario you write an apex class and in the apex class apply the following SOQL to fetch all accounts that have child contact records,
      [SELECT Id, Name,(SELECT Id, Name FROM Contacts ORDER BY LASTMODIFIEDDATE) FROM Account WHERE Id IN (SELECT AccountId FROM Contact) ORDER BY LASTMODIFIEDDATE]
      The returning list of sobject from SOQL you can use in the Lightning table.
      I hope you will get a glimpse into implementing this scenario if any other information is needed, please let me know.
      Thanks.

    • @raghavendrasharma2466
      @raghavendrasharma2466 9 місяців тому

      @@AzeemKhan-hr3td Thanks for the reply, soql has a limit of 50000 records but we have to work on millions of records then how can we do.

    • @raghavendrasharma2466
      @raghavendrasharma2466 9 місяців тому

      @@AzeemKhan-hr3td thanks for the reply but soql has a limit of 50000 records, but we have to work on millions of records.

    • @SumitDaily
      @SumitDaily 7 місяців тому

      ​@@raghavendrasharma2466 We can write Batch Apex and process the Millions of records in the chunks. This will help us avoid hitting the Governer limit.

    • @raghavendrasharma2466
      @raghavendrasharma2466 7 місяців тому

      @@SumitDaily but how can we show those records in LWC datatable?

  • @user-xd1em8zu9z
    @user-xd1em8zu9z 11 місяців тому

    Is it for freshers?

    • @forceGalaxy
      @forceGalaxy  11 місяців тому +2

      For fresher basic question are considered only if he has worked on web components , this is for who is having LWC projects experience.

    • @user-xd1em8zu9z
      @user-xd1em8zu9z 11 місяців тому

      Ok....thanks Ma'am