Sir code complettation ka video nahi mil raha pls batadijiye
@Prachihaimereyar2 күн бұрын
Is this in syllabus for 2025 exam
@AmplifyLearning22 күн бұрын
@@Prachihaimereyar for class 12th, yes
@jj_43214 күн бұрын
sir competency wale questions me 67 number question solve kariye na, answer wrong hi aa rhaa hai mera ,match hi nahi ho raha
@mohitpandat46914 күн бұрын
Sir ya pyq konsa board question hai h
@SUBHAN_GAMING_ARMY4 күн бұрын
Sir equilibrium class 11 plss sirr
@user-SujalBadaik5 күн бұрын
Everyone pl this like this video,as it is very helpful. So sir can upload part 2 soon
@gursukhmansingh36892 күн бұрын
vo kabhi nahi ayega
@KunalVerma-l3o7 күн бұрын
thank you sir 😙😙😙😙
@harshitgupta75058 күн бұрын
Sir you didn't used the instance variable L1 and L2. And as far as i understood, program will run fine without these... But in boards, is it compulsory to use all the variables?
@harshitgupta75058 күн бұрын
Thankyou
@Ruqqaiya_rangcopywriteshot8 күн бұрын
Haaa sir we are eagerly waiting for your video on 12computer
@dibbi_009 күн бұрын
Competency based questions bohot hard lagrhe haii 😭 .. Please kuch kariye iska koi series' ya live stream kariyeee please 😭😭😭
@KunalVerma-l3o9 күн бұрын
Physics wallah❌Amplify learning walleh✅✅🏆
@CookWithPriyanka-12011 күн бұрын
Sir please can you make a video on competency focused questions like Mcqs and assertion reasoning
@mrdark754811 күн бұрын
Sir please make a video on prefix, postfix,infix conversion for class 12 isc
@gnextlegend490911 күн бұрын
sir 11 th ka krwa diye marks nhi arhe programs mein sir im from also lko sir help plz
@learnwithmadhumita764012 күн бұрын
Sir please computer competency based questions ka ek video baniye..
@ayanokoujikiyotaka965612 күн бұрын
Sir thanks but please help in physics class 12th
@mohdjohn11015 күн бұрын
Please board exam ka full paper ki practic karwa diye Computer ki
@mohdjohn11015 күн бұрын
Please board exam ka full paper ki practic karwa diye
@mohdjohn11015 күн бұрын
Please board exam ka full paper ki practic karwa diye
@mohdjohn11015 күн бұрын
Helo sir Please board exam ka full paper ki practic karwa diye
@surabhisingh402815 күн бұрын
Sir keystroke program!
@Pathans--_731715 күн бұрын
Sir thanku very much. ❤
@Silence_Krishna15 күн бұрын
@AmplifyLearning2 At 17:00, you did not use the 'object' or 'static' keyword; how are they accessible? And does using obj.sort(); or this.sort(); mean the same thing?
@AmplifyLearning215 күн бұрын
We can call non static function from other non static function without object. I did that. Lastly when I needed to call one function check() from static main function then only we need object.
@ShivendraSrivastava12915 күн бұрын
Got this program in computer practical on 4th Dec.😁
@cinepye15 күн бұрын
Sir Section A ke alawa kuch nhi kr pata exam Mein, kuch programming krna nhi aata, perhaps 17 days ka gap mila h Computer Exam k liye plz kuch aisa content laaye jo cover up ho jaye Section B and Section C.🙏🙏😭😭
@learnwithmadhumita764012 күн бұрын
Yes sir please
@harshitgupta75058 күн бұрын
Kyu computer liya phir
@Samarth7047315 күн бұрын
Sir class 11 physics ki series shuru kar do pls aap nae bichmae hi leave kardiya 🙏
@akashtalukdar914315 күн бұрын
Third
@ManuGupta-g7n15 күн бұрын
Second😉
@KSHITIJSRIVASTAVA-vt5sl16 күн бұрын
first comment 🙃🙃
@parisharma291817 күн бұрын
Sir please Bargraph ka program samjha dijiye
@proindian165518 күн бұрын
sir what is the difference between paid computer course and the videos on youtube please tell me i am in class 12th isc
@Carokabapthar18 күн бұрын
Sir please explain organic chemistry chapter
@IndroneelDutta-u5m18 күн бұрын
Good Evening Sir, sir maine pura class 10 aur class 12 aap hi computer padh ke pass kiya h,so thank u somuch for that. Sir ek doubt tha ki lucky numbers per ek program par ek explanation video bna skte h kya? plz Sir🙏🙏🙏🙏
@KanishkSharma-e2z19 күн бұрын
Sir external factors aur internal factors mein kyu aata hai ye sab
@anitasahu501923 күн бұрын
Thankyou so much sir!!!!!!❤
@SUBHAN_GAMING_ARMY24 күн бұрын
Sir pls make vedio on equilibrium class 11 isc sir plsssssss hugeee request 😢
@vinitsinghss211225 күн бұрын
Pls make all physics chapter of class 12 for board point of view
@vinitsinghss211225 күн бұрын
Thanks sir
@TauhidurRahman-j1s26 күн бұрын
Sir Theta and Omega notating hai iss bar. ISC 2024-25???????
@TauhidurRahman-j1s26 күн бұрын
Theta and Omega Notation hai kya????
@sameergupta371427 күн бұрын
Sir please help sir a smallll help please sir 😭
@sameergupta371427 күн бұрын
Sir please tell some program solutions please sir please 😭😭😭😭😭😭😭
@artikushwaha381528 күн бұрын
Thank yiu very much sir.....i am really grateful to you...
@artikushwaha381529 күн бұрын
Thank you so much sir..
@binitpal6283Ай бұрын
2:26:41
@tejprtapyadav1424Ай бұрын
Sir please continue class 11 th syallabus
@Shadowviper_123Ай бұрын
import java.util.*; class Palindrome { int limit; Palindrome (int nn) { limit=nn; } int reverse (int num, int rev) { if (num == 0) return rev; else rev = rev*10+ (num%10) return reverse (num/10, rev) } boolean check (int x) { int rev = reverse (x); if (rev == x) return true; else return false; } void show () { for (int i=1; i<= 50; i++) { if (check (i)) System.out.print(i+","); } } public static void main(String args[]) { Palindrome obj = new Palindrome (50); obj.show (); } } Only class name is different This is a bit more improved logic