Day 32 | Salesforce Bootcamp 2023 | Introduction to Apex Programming | Learn Live with Sanjay Gupta

แชร์
ฝัง
  • เผยแพร่เมื่อ 6 ส.ค. 2024
  • Do you want to begin your Salesforce Journey & Build your Career in Salesforce Ecosystem???
    Then Study Salesforce with Sanjay Gupta at $0 (ZERO) per day!!! Yes you read it Right!
    As Promised, I will be teaching Salesforce Admin & Development LIVE & FREE on Sanjay Gupta Tech School at TH-cam.
    DON’T MISS THIS GOLDEN OPPORTUNITY AND FOLLOW SGTS ON BELOW PLATFORMS:
    Salesforce Bootcamp Session Tracker: docs.google.com/spreadsheets/...
    Salesforce Project (Admin + Dev) : docs.google.com/document/d/1T...
    Salesforce Bootcamp Exercise Sheet: docs.google.com/document/d/1h...
    Salesforce Bootcamp FAQs Sheet:
    docs.google.com/document/d/1I...
    Salesforce Bootcamp Recording Playlist: • Day 0 | Know about you...
    Subscribe Telegram Channel: t.me/SanjayGuptaTechSchool
    Join Telegram Group (for Q&A): t.me/sanjayguptatechschools
    Follow on Instagram: / sanjaygupta.techschool
    Follow LinkedIn Page: / sanjay-gupta-tech-school
    Subscribe TH-cam Channel: / sanjayguptatechschool
    Follow on Twitter: / techsanjaygupta
    Udemy Courses: www.udemy.com/user/sanjay-gup...
    TH-cam Channel : Sanjay Gupta Tech School
    Please Subscribe as only Subscribers will be able to ask Questions Live:
    Channel Link: / sanjayguptatechschool
    Udemy Courses:
    Enroll Salesforce Admin Certification Masterclass : kadge.io/admin201
    Enroll Salesforce PD1 Certification Masterclass : kadge.io/pd1
    Enroll Salesforce Flow Builder Masterclass: kadge.io/flowbuilder
    Enroll Lightning Web Component (LWC) Masterclass: kadge.io/lwc
    Enroll Apex Trigger & Test Class Scenarios Masterclass: kadge.io/apex
    If you want to build your career as Salesforce Associate, Admin, Developer, Consultant, Business Analyst, Quality Analyst or in Sales Career, Service Careers, Marketing Careers in Salesforce Ecosystem then this is a Unique Opportunity for Everyone!!!
    No matter whether you are a Student, Fresher, Non-IT Professional or IT Professional. Everyone can learn Salesforce!
    This bootcamp will help you to prepare for Associate Cert, Admin Cert, PD1 Cert, App Builder Cert and BA Cert.
    All you need is:
    - Laptop
    - Internet
    - Daily 1.5 Hours (4 Days a week)
    - Follow Sanjay Gupta Tech School on LinkedIn
    - Trust in Sanjay Gupta
    You need to forget about?
    - Money
    - Confusion
    - Fraud
    - False Promises
    Timeline:
    Total Weeks : 20
    Total Hours : 80-100
    When : Daily 1.5 hour (Monday - Thursday)
    Start Date : 23 January, 2023
    Time: 8.30 - 10 PM IST
    #salesforce #salesforceadmin #salesforcedeveloper

ความคิดเห็น • 69

  • @saimahendrapatnaik2847
    @saimahendrapatnaik2847 9 หลายเดือนก่อน +18

    Where the world is running behind money, some people still run behind values and your value/ideology to educate others for free is amazing, respect you Sir🙏

  • @firushanov
    @firushanov ปีที่แล้ว +16

    I finally understood the main reason of static usage. Perfect explanation, Sanjay! Much power to you!

  • @tejasfinally
    @tejasfinally ปีที่แล้ว +3

    Thank you for this series Sanjay 😊

  • @hiteshpatil5469
    @hiteshpatil5469 ปีที่แล้ว +1

    thanks again sanjay sir , lots of efffort !!hats off

  • @chithraprakash8392
    @chithraprakash8392 ปีที่แล้ว +1

    Thank you for making this very informative video. Please make more videos on LWC

  • @Sk-sy1tp
    @Sk-sy1tp 7 หลายเดือนก่อน

    Great explanation, Sanay sir.Your video helps me a lot. I was little bit nervous initially that how i will understand.keep ir up Sanjay sir

  • @prateekshelekar9055
    @prateekshelekar9055 11 หลายเดือนก่อน +2

    Sanjay sir, cant thank you eough for your videos, felt like i have finally found my mentor.

  • @maddijoshi5347
    @maddijoshi5347 ปีที่แล้ว +5

    Great Video sir , I am really grateful to you for your efforts & Patience .
    God bless you abundantly for helping Students who can't afford expensive fees .

  • @pedroprada1
    @pedroprada1 ปีที่แล้ว +1

    amazing video..

  • @kundanagolla
    @kundanagolla ปีที่แล้ว +2

    You are amazing sir! By far best explanation and covered everything in detail. your contribution is a boon for anyone who is trying their luck in salesforce, thank you for the series.

  • @LpL-fg2ki
    @LpL-fg2ki หลายเดือนก่อน

    Thank you Sanjay for your effort. It helps me a lot.

  • @Fine-gr1no
    @Fine-gr1no 5 หลายเดือนก่อน

    Ur really awesome sir thank you for all this ❤

  • @gurulakshmi8945
    @gurulakshmi8945 ปีที่แล้ว +2

    Excellent start for apex..more way to go❤🎉

  • @narendrareddy552
    @narendrareddy552 ปีที่แล้ว +1

    Nice video

  • @bhanoopratap343
    @bhanoopratap343 ปีที่แล้ว +3

    I also understood the static usage....Thanks Sanjay

  • @shubhampatidar1814
    @shubhampatidar1814 ปีที่แล้ว +1

    Thanks

  • @shravyarao-zo7vk
    @shravyarao-zo7vk หลายเดือนก่อน

    great sessions helped me with interviews

  • @user-rd1ij4pm3x
    @user-rd1ij4pm3x ปีที่แล้ว

    Hi Sanjay sir, I am so glad that I found your bootcamp
    I really appreciate your help

  • @renukaraut6578
    @renukaraut6578 ปีที่แล้ว +3

    Very nice Sanjay appreciate your efforts

  • @manish-qt9sf
    @manish-qt9sf 3 หลายเดือนก่อน

    public class Rectangle {
    public static void area() { // Making the method static
    Decimal length = 5.5;
    Decimal width = 6;
    Decimal area = length * width;
    System.debug('Area = ' + area);
    }
    }
    sir error show in void area

  • @Nick-wh2xn
    @Nick-wh2xn ปีที่แล้ว +1

    When we use static method memory goes to global?

  • @naveenchowdary6559
    @naveenchowdary6559 ปีที่แล้ว +1

    I am learning ..Hyd

  • @pushkarsingh-cp8ip
    @pushkarsingh-cp8ip ปีที่แล้ว +4

    Ayodhya

  • @rajpabnani818
    @rajpabnani818 ปีที่แล้ว +1

    I am from Pune , Maharashtra

  • @ibthizamazeez90
    @ibthizamazeez90 7 หลายเดือนก่อน +1

    now am watching from Riyadh,Saudi Arabia

  • @khanlameh8134
    @khanlameh8134 5 หลายเดือนก่อน +1

    When i typed "System", it doesn't show stuff like in 33:30 , do you know how to fix this?

  • @bhamamanikommula2587
    @bhamamanikommula2587 5 หลายเดือนก่อน +1

    Thanks!

  • @anilkumarjada729
    @anilkumarjada729 ปีที่แล้ว +1

    thank you sir

  • @maddijoshi5347
    @maddijoshi5347 ปีที่แล้ว +1

    Nagpur , Maharashtra .

  • @roshanbande2499
    @roshanbande2499 ปีที่แล้ว +2

    Orangecity, India

  • @Curiosity353
    @Curiosity353 ปีที่แล้ว

    Hello Sir, When hiring will start on Salesforce?

  • @littleworld251
    @littleworld251 ปีที่แล้ว +2

    Hyderabad sir

  • @pranalipund2673
    @pranalipund2673 9 หลายเดือนก่อน

    Please make question answer series for 2 years of experience candidate for interview.

  • @Janasainik__PSPK
    @Janasainik__PSPK ปีที่แล้ว

    What do you mean by class what do you mean by method please explain the because in non it person cannot understand this

  • @kuldeepsinghchauhan8699
    @kuldeepsinghchauhan8699 6 หลายเดือนก่อน

    M trying my best from few days , not able to load the telegram link "it is saying that it won't be loaded "

  • @maddiliramesh1376
    @maddiliramesh1376 ปีที่แล้ว +2

    Hi Sir, This is Ramesh from Visakhapatnam, i am working as a QGIS Analasyst
    i want to learn salesforce development

  • @manueo1947
    @manueo1947 ปีที่แล้ว

    amazing teaching skill u have.. u r great ,

  • @rajendrakumarvupputuri9458
    @rajendrakumarvupputuri9458 ปีที่แล้ว +1

    Thankyou sir

  • @WeVRChannel1
    @WeVRChannel1 ปีที่แล้ว +1

    Hyderabad

  • @OMPRAKASH-vr9bc
    @OMPRAKASH-vr9bc 7 หลายเดือนก่อน

    How to remove error unexpected token EOF

  • @user-vy2ll7tt7x
    @user-vy2ll7tt7x ปีที่แล้ว

    Hi Sanjay , I am beginner , I am getting the below error could u pls check and revert
    Line: 2, Column: 5
    Method does not exist or incorrect signature: void area() from the type Rectangle

    • @SanjayGuptaTechSchool
      @SanjayGuptaTechSchool  ปีที่แล้ว

      These type of doubts you can ask in Telegram group by sending screenshots

  • @salesforcenerd412
    @salesforcenerd412 ปีที่แล้ว

    what does static actually mean?? yes we called the method directly from the class but why we are using static is not clear

    • @SanjayGuptaTechSchool
      @SanjayGuptaTechSchool  ปีที่แล้ว

      This is the primary purpose to call method directly through class name.

  • @shankhadeeplahiri.3397
    @shankhadeeplahiri.3397 5 หลายเดือนก่อน

    I have done each and everything same as shown in the video but when i execute it, it shows an error stating "Line: 6, Column: 5
    Method does not exist or incorrect signature: void area() from the type Rectangle". Please help as I am unable to understand the reason

    • @mentalvicky5457
      @mentalvicky5457 2 หลายเดือนก่อน

      First do Saving bro after that try debug okay it works..

  • @ramkishor-tr7qv
    @ramkishor-tr7qv ปีที่แล้ว

    andhrapradesh

  • @gudiatoka
    @gudiatoka ปีที่แล้ว

    where is day 1 sir?

  • @vishwanathkulkarni4118
    @vishwanathkulkarni4118 ปีที่แล้ว

    Hi Sir, i work for shipping logistics company, and using Salesforce as application to send mails
    I want to learn apex to get opportunity in IT.
    I have good understanding of service cloud SF.
    Pls guide me

    • @SanjayGuptaTechSchool
      @SanjayGuptaTechSchool  ปีที่แล้ว +1

      I am teaching apex live on this channel daily so join that and learn.

  • @rajbhosle3796
    @rajbhosle3796 6 หลายเดือนก่อน

    is admin required to learn apex salesforce development?

  • @user-ex6jw8oq8l
    @user-ex6jw8oq8l 5 หลายเดือนก่อน

    fresher garaduated presidency university bangalore

  • @narendrareddy552
    @narendrareddy552 ปีที่แล้ว

    even in institutions also they will not explain this much