Sir please make videos on python programming shell. We're in cbse board and we just love your teaching and just wanna learn python programming from you.❤
WAP to enter a number and check if it is a unique number or not(a number in which each digit is different) For eg:1234(none of the digits repeat),also 1221 is not a unique number because repitition of digits occur.
Log 2 base 10 = 0.3010 now the integer value of 0.3010 is 0 and on adding 1 to it the answer will be 1 which is the number of digits...same case cab be applied for any number
@@AmplifyLearning your method is also very good ... No doubts on that...I was just saying that we can calculate the no. of digits directly using the log function
SIR, I HAVE DOUBT I'm in 10th right now, and I just gave my first term, in the computer all the questions were from specimen paper2025. and i have so many doubts in output-based questions, so can you please make a video of the solution and explanation of this paper? pls, sir.. it will be beneficial for students like me who don't go to coaching or have any private tuition SIR PLEASE
Sir please solve my doubt. What if we use whole *public static void main(String args)* instead of only *void main()* will the council deduct marks for that
12th ke liye sir ye sahi hai ? import java.util.Scanner; public class Superspy { int num1; public void input() { Scanner sc = new Scanner(System.in); System.out.println("Enter the number ----"); num1=sc.nextInt(); }
public int sumOfdigit(int x) { if(x>0) { int d = x % 10; return sumOfdigit(x / 10) + d; } else return 0; } public int NumberOfDigit() { String str = num1+""; return str.length(); } public static void main(String [] args) { Superspy obj =new Superspy(); obj.input(); int a = obj.NumberOfDigit(); int b= obj.sumOfdigit(obj.num1); if(a==b) { System.out.println("THIS IS THE SUPERSPY NUmber .."); } else System.out.println("THIS IS THE NOT SUPERSPY NUmber .."); } }
Sir kya aapne pledge le liya hai kya ki aap class 11th aur 12th ki help nhi karenge, I only don't like the attitude of most of the TH-cam teachers that everything is class 10th oriented, that is teachers only teach them and they have completed forgotten us, this is so sad, we are not purely matured enough to study entire of the syllabus of class 11th and 12th with only being relied on self study. Even though 11th and 12th are tougher than 10th, yet no one cares about us 😢😢😢
i used to watch your geography videos when i was in 10th (2020) standard hahhha your video popped in my feed. nostalgic
Sir Class 12th ke liye bhi kuch kardijye
Sir I studied previously from ur videos and has scored a good marks in my 10th board examination - 95%. Thank u sir this all is possible only bcz of u
Hum 11th isc walo ko computer science padhadiye sir pls 10th me bhi aap se hi padhi thi pls padhadiye sir 11th aur 12th ki 😭
Bhai apne toh 10 th de diya hamara reh gya hai
@@dhra655 aap bhii agle saal 11th me aaogii na fir kese padhogii 😂
Aapke future ke baare me sochra me 😂😂
Mai toh cbse chala jaunga soch rha hu@@Cinemaclipzz237
@@Cinemaclipzz237 change nahi kar sakte ? Optional Subjects 10 ke baad?
Really helpful sir 🥰💯
👍
@@pariarora13 hii
@@siddharth_77_11 hii
Thanks sir very helpful video
Sir if we write full public static void main(string args[])marks will be deducted?
Sir isc class 11 ke number based aur logic based programs par bhi videos bnaiye pls
Alok sir bhot time se apke videos dekh rha hu ... Computer me 98 aye thee mere♥️♥️ Thank you sir.🥹🥹
Sir PLEASE make videos for * COMPUTER SCIENCE CLASS XII ISC BOARD* 🥺🙏🥺🙏 PLEASE 🥺
Thank you sir 😊
I have exam in 2hr I'll update how it went I hope soo IT WILL GOO GOOOOODDDDD😭😞:-🤞🏻
Sir please make videos on python programming shell. We're in cbse board and we just love your teaching and just wanna learn python programming from you.❤
Sir please make video on Duck Number(If a no. has atleast one 0)
First viewer and the first to like ❤
WAP to enter a number and check if it is a unique number or not(a number in which each digit is different)
For eg:1234(none of the digits repeat),also 1221 is not a unique number because repitition of digits occur.
Sir I think we can also use the log function in java to calculate number of digits
How?
(int)Math.log10(num) + 1
Log 2 base 10 = 0.3010
now the integer value of 0.3010 is 0 and on adding 1 to it the answer will be 1 which is the number of digits...same case cab be applied for any number
@@AmplifyLearning your method is also very good ... No doubts on that...I was just saying that we can calculate the no. of digits directly using the log function
Sir please upload for 12 also
Sir class 12 ki liye bhi organic chemistry please please sir
Thank you sir apse Computer padhke Icse 10th mye 96 aye hai
Sir apke aap mein login nhi ho rha problem a rha hai aur isilye coarse bhi nhi buy ho rha
SIR, I HAVE DOUBT
I'm in 10th right now, and I just gave my first term, in the computer all the questions were from specimen paper2025. and i have so many doubts in output-based questions, so can you please make a video of the solution and explanation of this paper? pls, sir.. it will be beneficial for students like me who don't go to coaching or have any private tuition
SIR PLEASE
Sir please solve my doubt. What if we use whole *public static void main(String args)* instead of only *void main()* will the council deduct marks for that
No.. its just that they are giving you option to write void main()
You can write public static void main(String args[ ] ) - its correct
@@AmplifyLearning Thanks a lot sir. I appreciate you.
Thanks sir
Bdhiya pdhya bilkul jkhas😅
@@pariarora13 ✅
Sir i just bought your course of computer class 10th snd it is not showing in the app of amplify learning what do i do and the payment was successful
Sir plz geography class 10 me waste management and agriculture pe explanation daliye
Sir can you make a separate video for functions plsss
Sir please sab subjects ka syllabus shuru kijiye pls
Sir constructor banana compulsory hai.
Kyuki specimen paper ke solution mein har ek program mein diya hai..
Sir 11ke liye bhi videos banaiye pls for all subjects
Only because of you I got 92% in 10th boards 2024
Sir please upload new video of set part 5 😢
Sir itne young kaise ho gaye 😮
Tomorrow is exam👍
Today is my exam
Sir bio k chap parayiya
Sir pls 11 isc ki comp science bhi padha dijiye ❤😢
Sir please make videos for class 11 is computer please ...i need your help in computer
SIR PLZ NEW VIDEOS OF CLASS 10 ICSE AS SOON AS POSSIBLE.
sir 11th ke lie bhh programs krva do
12th ke liye sir ye sahi hai ?
import java.util.Scanner;
public class Superspy
{
int num1;
public void input()
{
Scanner sc = new Scanner(System.in);
System.out.println("Enter the number ----");
num1=sc.nextInt();
}
public int sumOfdigit(int x)
{
if(x>0) {
int d = x % 10;
return sumOfdigit(x / 10) + d;
}
else return 0;
}
public int NumberOfDigit()
{
String str = num1+"";
return str.length();
}
public static void main(String [] args)
{
Superspy obj =new Superspy();
obj.input();
int a = obj.NumberOfDigit();
int b= obj.sumOfdigit(obj.num1);
if(a==b)
{
System.out.println("THIS IS THE SUPERSPY NUmber ..");
}
else System.out.println("THIS IS THE NOT SUPERSPY NUmber ..");
}
}
First sir
Sir 12 icse computer aap ki hi zimme dari h ........ham ko nai malum ......aap se hi parenge please kuch to contents daliye sir
Sir kya aapne pledge le liya hai kya ki aap class 11th aur 12th ki help nhi karenge, I only don't like the attitude of most of the TH-cam teachers that everything is class 10th oriented, that is teachers only teach them and they have completed forgotten us, this is so sad, we are not purely matured enough to study entire of the syllabus of class 11th and 12th with only being relied on self study.
Even though 11th and 12th are tougher than 10th, yet no one cares about us 😢😢😢
@@sarthakplayshannel4975 Bhai vahi chiz hai , tum Yash Maheshwari Classes par aajao Alok Maurya Sir jab shru karenge tab dekha jayega.
1st
All subject specimen papers
Phirse
Sir please upload for 12 also