Lec-7: 3D Arrays | Addressing in 3D Arrays | Row Major Order

แชร์
ฝัง
  • เผยแพร่เมื่อ 5 พ.ย. 2024

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

  • @adityasahil-zj4tr
    @adityasahil-zj4tr หลายเดือนก่อน +9

    Column Major Order = base add. +[(8-5)*16 +(4-2)+(5-3)*4] * size of element (4) = 1000+[48+2+8]*4 = 1000+232=1232th place same as row major.🙃

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

      Because 2 d matrix square matrix hai 😂

    • @ShivamVermaokdone
      @ShivamVermaokdone 14 วันที่ผ่านมา

      @@sundaringh8435 It should be a perfect cube, not only having a square matrix in it is enough to keep the CMO and RMO addresses the same.
      do you assessment again
      IN case of CMO the answer will be 1252

  • @sheilvlog4329
    @sheilvlog4329 3 หลายเดือนก่อน +5

    Sir please explain column wise

  • @shilpymishra8778
    @shilpymishra8778 3 หลายเดือนก่อน +4

    Please explain column wise 😊

  • @HimaniRajput67
    @HimaniRajput67 3 หลายเดือนก่อน

    Great 👍

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

    nice explanation sir

  • @AbidShabbir-q9k
    @AbidShabbir-q9k หลายเดือนก่อน

    thank sir jee

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

    Column wise , answer is=1252

  • @Kundansingh-eh8vi
    @Kundansingh-eh8vi 3 หลายเดือนก่อน +3

    sir please "column Major order" pe bhi btao

  • @tanishagoyal3922
    @tanishagoyal3922 3 หลายเดือนก่อน +1

    Sir pls explain column wise...

  • @ApurvaKalvadeSDE
    @ApurvaKalvadeSDE 15 วันที่ผ่านมา

    In Column Major, As the point that we want to find is lying on the diagonal line, the address will remain same as of Row Major.

    • @ShivamVermaokdone
      @ShivamVermaokdone 14 วันที่ผ่านมา

      It should be a perfect cube, not only having a square matrix in it is enough to keep the CMO and RMO addresses the same.
      do you assessment again
      IN case of CMO the answer will be 1252

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

    Thank YOu

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

    Location of element [8] [4] [5] =
    1232

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

    Plz make a video on coloum major array plz

  • @hashimali179
    @hashimali179 3 หลายเดือนก่อน +2

    CMO se bhi 1232 hi answer aaega coincidentally

    • @ShivamVermaokdone
      @ShivamVermaokdone 14 วันที่ผ่านมา

      It should be a perfect cube, not only having a square matrix in it is enough to keep the CMO and RMO addresses the same.
      do you assessment again
      IN case of CMO the answer will be 1252

  • @JayantaBarman-uj7ip
    @JayantaBarman-uj7ip 3 หลายเดือนก่อน

    @Gate Smashers Varun bhaiya I have already completed mtech cse from a state government college through gate scholarship before and now this year I qualified gate again and want to do m.tech. in AI if I take admission in any NIT or IIIT will I get GATE scholarship again this time

  • @Makeupwithsehar
    @Makeupwithsehar 3 หลายเดือนก่อน +3

    I don't know why but 3D wala lec dekhny k baad meko 1st or 2nd dimension bhi bhul gya

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

      Makeup karne me kam dhyan aur padhai me jyada dhyan de.

    • @इराज9
      @इराज9 2 หลายเดือนก่อน

      Exactly 💯

  • @Utkarshkushwaha-ld8xh
    @Utkarshkushwaha-ld8xh หลายเดือนก่อน

    Sir first of all you must explain to us the general formula then it's details

  • @kshitizbhardwajsingh
    @kshitizbhardwajsingh 22 วันที่ผ่านมา

    Same

  • @shaik0278
    @shaik0278 3 หลายเดือนก่อน

    Bhai thum acha explain kathe ho meri eak request CYBERSECURITY AND ETHICAL HACKING COURSE thoda advance topic par video karo na

  • @snsi6766
    @snsi6766 3 หลายเดือนก่อน +2

    Column major : [(i-lb1) np + (j-lb3) n + (k-lb2)] * size + base address
    Answer column major : 1256

    • @ShabbarAbbas-fu3je
      @ShabbarAbbas-fu3je 2 หลายเดือนก่อน

      n , p KYa Hy ?

    • @ShabbarAbbas-fu3je
      @ShabbarAbbas-fu3je 2 หลายเดือนก่อน

      Value put kr k snd krdo asy smjh nhi a rahi

    • @snsi6766
      @snsi6766 2 หลายเดือนก่อน +1

      @@ShabbarAbbas-fu3je
      Brother there is correction in the formula
      Column major = [(i-lb1) np + (j-lb2) n + (k-lb3)] * size + base address
      here given array[5...10] [2...5] [3...6] , thus
      n = no. of elements in [2...5] = 4
      p = no. of elements in [3...6] = 4
      lb1 = 5
      lb2 = 2
      lb3 = 3
      We have to find location of a[8] [4] [5], thus let i=8, j=4, k=5,
      Thus after putting it in equation
      Column major = [(i-lb1) np + (j-lb2) n + (k-lb3)] * size + base address
      = [(8-5)4x4 + (4-2)4 +(5-3)]*4+1000
      = 58*4+1000
      = 232+1000
      = 1232
      Answer column major : 1232

  • @aneeshoak2199
    @aneeshoak2199 3 หลายเดือนก่อน

    Is the topic C ?

    • @RayyanKhan-g2n
      @RayyanKhan-g2n 2 หลายเดือนก่อน

      Get the concept not the syntax-y coding language 🙃

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

    Column major order ni smjh ara

  • @Anonymous-lb5jp
    @Anonymous-lb5jp หลายเดือนก่อน

    1252

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

    1248

  • @AsoRoastMari
    @AsoRoastMari 3 หลายเดือนก่อน

    1232

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

    CMO please

  • @archanaaakaram2513
    @archanaaakaram2513 3 หลายเดือนก่อน

    Please explain column wise 😊