sir aap mobile application banaate hai ecommerce application
@MdJamalmca5 күн бұрын
@@SudhirkumarYadav-t6x contact at 8436439980
@deepakprabhu82357 күн бұрын
Can i get the documents
@dmtravelsnc7 күн бұрын
Fantastic. Thank you
@nirajmakwana984112 күн бұрын
kindly check your mail and revert. I want your service. pls tell me your charge on mail. Thanks
@MdJamalmca9 күн бұрын
ping me in whatsapp 8436439980
@sunilchoudhary821612 күн бұрын
Please make a video how to use ACF on a WordPress website
@sunilchoudhary821612 күн бұрын
Could you make a tutorial for Advanced Custom Fields? and How to make a dynamic website with HTML to WordPress.
@akrai623214 күн бұрын
WordPress Security pe ek video banaiye.
@MdJamalmca14 күн бұрын
okk i wil do it today
@Mr1075sam15 күн бұрын
Video content is good
@alamcreativeplayer15 күн бұрын
sir esme to 2 page ke bare me bataya gaya hai baki ke page ke bare me bhi batao aur home page par jo product card hai usme jo add to cart ka feature hai wo kaise kaam karega wo bhi batayiye
@Daalexped15 күн бұрын
Assalamualaikum Apka number do
@alamcreativeplayer15 күн бұрын
sir aapki video dekhta hu kasam se bahut achha lagta hai apka samjhane ka tarika bahut hi sahi hai sir aap ek php me e-commarce site banane ka video ki series suru kare😊
@manishmishra-zi3yi15 күн бұрын
sir aap bahut acha smjhate hai aap please mvvm kotlin ke sath bata de please jo smjh me aa jaye dhanyawad
@mdbabuddin7115 күн бұрын
Standar
@Ajab_Gazab_16 күн бұрын
You are great sir 💯💯
@sujankumarhanda930117 күн бұрын
You are really amazing BOSS
@Nirdosh_Nikhil17 күн бұрын
sir 0 se android java start kijiye..
@SaqlainMalhi-s6u18 күн бұрын
uon se kon kon dekhny aya hy
@indiandesignermumbai551819 күн бұрын
Good
@hgraphicspro22 күн бұрын
if it shows emply, add " .setLifecycleOwner(this)"
@HiloHilop23 күн бұрын
thank you so much
@yakiwiii25 күн бұрын
NOT WORKING
@Online_Pedia_9929 күн бұрын
Music 😮😅😅😅
@sv798Ай бұрын
sir plzz ek project b bnva dijiye jo resume m dikha ske
@deshbhakt4482Ай бұрын
You are one of the best tutor. Thanks a lot. 👍
@bkofficial1652Ай бұрын
Bahut badhiya sir
@daducodingАй бұрын
Brother, what is the name of the screen recoder you used?
@makarandgadre8713Ай бұрын
Kuch nahi samja😢
@bokkorbokkor-r9oАй бұрын
thank you brother ..take love from Bangladesh
@Ajab_Gazab_Ай бұрын
Bahut Amazing video hai sir!! Please hamesha Aisa informative video dete rehiyega...
@sabaparveen6019Ай бұрын
Superb Explanation ❤
@saghirahmed9969Ай бұрын
Sahi hai. Outstanding
@danyahsan3958Ай бұрын
how to add multiple images and upload them on same time
@sabaparveen6019Ай бұрын
You are really a GEM❤
@sabaparveen6019Ай бұрын
Superbb man
@sabaparveen6019Ай бұрын
Outstanding content
@aviralsingh219Ай бұрын
sir mai jb wamp server me table bna rha hu images and other fields save krne k baad to output me keval blank screen dikha rha hai vaisa output nhi show ho rha jaisa aap me kiya hai please help me with this problem .
@Expert-ShorthandАй бұрын
sir laravel with react, or vue or next k sath bi tutorial bnaeey
@SagarAdhikariCodeАй бұрын
love from NEPAL
@SagarAdhikariCodeАй бұрын
thankyou sir , crystal clear explaination ,
@Expert-ShorthandАй бұрын
well explain , i will try 2 to 3 times
@Expert-ShorthandАй бұрын
very well explanation MaasAllah
@SandeepSingh-x2x3sАй бұрын
Sir isme Jo aap DW se notepad open kiye hai wo nhi mil raha hai please reply
@mdsigan7177Ай бұрын
.model small .stack 100h .data array db 1, 2, 2, 7, 6, 8, 5 ; Array of 7 elements arr_size dw 7 ; Size of the array smallest db ? ; Variable to store the smallest number msg db 'The smallest number is: $' ; Message to display .code mov ax, @data ; Initialize the data segment mov ds, ax ; Display message mov ah, 09h ; DOS function to display string lea dx, msg ; Load address of the message int 21h ; Interrupt to print the message lea si, array ; Load the address of the array into SI mov al, [si] ; Assume the first element is the smallest mov smallest, al ; Store first element as the smallest mov cx, arr_size ; Load array size into CX dec cx ; Decrement CX as the first element is already considered inc si ; Move to the second element in the array find_smallest: mov al, [si] ; Load the next array element into AL cmp al, smallest ; Compare AL with the current smallest jge next_element ; If AL >= smallest, skip updating the smallest mov smallest, al ; If AL is smaller, update the smallest value next_element: inc si ; Move to the next array element loop find_smallest ; Repeat the loop for all elements ; Convert smallest value to ASCII for printing mov al, smallest ; Move smallest number to AL add al, 30h ; Convert the number to its ASCII equivalent ; Print the smallest value mov dl, al ; Move the ASCII value to DL for printing mov ah, 02h ; DOS function to print character int 21h ; Interrupt to print character ; Program termination mov ah, 4Ch ; DOS function to terminate the program int 21h end