Mathematical Functions in Java | ICSE 9 & 10 | Anjali Ma'am

  Рет қаралды 34,850

Leaf Classes

Leaf Classes

Күн бұрын

Пікірлер: 250
@LeafClasses
@LeafClasses 3 жыл бұрын
At 10:40 in the video please note for rint() function: Math rint(7.5) will return 8.0 and Math.rint(8.5) will also return 8.0 Here, in both cases, the value after the decimal is equal to 5. However, for 7.5 - the method is rounding up for 8.5 - the method is rounding down. It is because, in the case of .5, the method rounds to nearest even value. Hence, in both cases, the method rounds to 8.0. Happy Learning
@iam9740
@iam9740 3 жыл бұрын
My mumma having same blue kurti Avvasa mix n match 😊
@minakshidutt4349
@minakshidutt4349 3 жыл бұрын
Ma'am l didn't understand this one can you give any other example and explain it again.
@mehakhora1805
@mehakhora1805 3 жыл бұрын
mam i also didnt understand this. please explain again by giving examples
@harshitakhindri
@harshitakhindri Жыл бұрын
8.5 shouldn't be 9.0
@kritikapranavee3045
@kritikapranavee3045 9 ай бұрын
​​@@harshitakhindri8.0
@latachakraborty3000
@latachakraborty3000 4 жыл бұрын
Ma'am i like (officially) all your videos because you teach very nicely
@varshanavt5801
@varshanavt5801 4 жыл бұрын
Maam i am having exam tomm and this video is going to be my revision for my exam. subscribed to u Mam
@LeafClasses
@LeafClasses 4 жыл бұрын
Best wishes and Happy Learning.
@ashutoshpandey990
@ashutoshpandey990 Жыл бұрын
class math_librabry { public static void min(int a, int b) { int c=Math.min(a,b); System.out.print(c); } public static void max(int a, int b) { int c=Math.max(a,b); System.out.print(c); } public static void pow(double a,double b) { double c=Math.pow(a,b); System.out.print(c); } public static void sqrt (double a)//pass only one argument at a time { double c=Math.sqrt(a);//does not calculate sqare root of -ve number System.out.print(c); } public static void cbrt(double a)//pass only one argument at a time { //calculate cube root of -ve number double c=Math.cbrt(a); System.out.print(c); } public static void abs(int a)//depent on the arguement type weather //double or int or any data type { int c=Math.abs(a); System.out.print(c); } public static void ceil(double a) { double c=Math.ceil(a); System.out.print(c); } public static void floor(double a) { double c=Math.floor(a); System.out.print(c); } public static void log(double a)//comes rarely in exam { double c=Math.log(a); System.out.print(c); } public static void rint(double a)//used to round off a number { double c=Math.rint(a); System.out.print(c); } public static void round(long a)//used to do round off and gives return type in int or double { long c=Math.round(a); System.out.print(c); } public static void random() { double c=Math.random(); System.out.print(c); } }
@LeafClasses
@LeafClasses Жыл бұрын
Perfect!!
@shreyanshh_x_09
@shreyanshh_x_09 3 жыл бұрын
Thank you ma'am for this precise and very understandable video.
@atultejaswi22
@atultejaswi22 3 жыл бұрын
The thing is that I came to know about this channel today and I now I will be following this channel .
@LeafClasses
@LeafClasses 3 жыл бұрын
Best wishes and Happy Learning
@suryanarayansahu8045
@suryanarayansahu8045 3 жыл бұрын
Mam,my school online classes can't give total clearance but your video is giving .
@LeafClasses
@LeafClasses 3 жыл бұрын
Happy Learning
@khushiyadavs.c.s9693
@khushiyadavs.c.s9693 4 жыл бұрын
Mam I love your teaching ! Your teaching is wonderful..
@LeafClasses
@LeafClasses 4 жыл бұрын
Happy Learning
@vikasdhakad2955
@vikasdhakad2955 4 жыл бұрын
Mam In Function Ceil , Floor , Round , Rint Please Explain What Will Happen When -8.5 & 8.5 Is Given ? Congratulations For 1.99k Almost 2k
@varshav7587
@varshav7587 3 жыл бұрын
In ceil, If -8.5 is given -8.0 is returned In floor it will return -9.0 In ceil, if 8.5 is given 9.0 is retunred In floor it will return 8.0.
@ashokchaudhary9052
@ashokchaudhary9052 4 жыл бұрын
I think it is a very very useful video for every icse students. Thanks , mam
@LeafClasses
@LeafClasses 4 жыл бұрын
Best wishes and Happy Learning.
@titikshabajpai6522
@titikshabajpai6522 4 жыл бұрын
Ma'am please upload the video of working of string functions
@aaravmalde3414
@aaravmalde3414 3 жыл бұрын
How will we solve How will we write this in java ?? ∑√log ln x + e^π+1 ?? I had got this in the challenge exam ... Which was optional ...
@piusarkar7
@piusarkar7 2 жыл бұрын
Ma'am I don't know how to thank you ! I have watched nearly all your vedios and it had prepared me very well for my board exams. 🦄
@hrishikar6060
@hrishikar6060 3 жыл бұрын
Mam i just love ur channel 😍 appreciate ur efforts pls make a video on how to read computer from january before our board exams come
@LeafClasses
@LeafClasses 3 жыл бұрын
Best wishes
@shivambhagat9267
@shivambhagat9267 4 жыл бұрын
Mam your pdf is very helpfull for me Thanku
@LeafClasses
@LeafClasses 4 жыл бұрын
Best wishes and happy learning.
@latachakraborty3000
@latachakraborty3000 4 жыл бұрын
yes for me too!!!!!!!!!!!!
@craftygame3086
@craftygame3086 3 жыл бұрын
Thanks mam your lecture and pdf really helped me a lot ....
@LeafClasses
@LeafClasses 3 жыл бұрын
Happy Learning
@latachakraborty3000
@latachakraborty3000 4 жыл бұрын
Ma'am please tell me how to do this program How to find if a number is the power of 2 in Java?
@LeafClasses
@LeafClasses 4 жыл бұрын
Take a loop Check if Math.pow(2,i)==n Then n is a power of 2 else not. i is a looping variable. Try this. Best wishes.
@dumb_tan2539
@dumb_tan2539 3 жыл бұрын
@@LeafClasses Ma'am can we do it by splitting the no. into it's prime factors and then checking if all are 2 or not? .... If it's all 2, then it's a power of 2, else not.
@LeafClasses
@LeafClasses 3 жыл бұрын
You may use any logic for doing the program that is correct and gives the required output
@DRAGON_0008
@DRAGON_0008 4 жыл бұрын
Mam I want online class from you Plz teach me you teches very nicely I am a student of class 8 And mam which subject you teaches
@LeafClasses
@LeafClasses 4 жыл бұрын
You may refer to the videos available on this channel for ICSE 9 & 10 Computer Applications. If any of these topics are helpful to you, please watch and let me know your feedback. Best wishes and Happy Learning.
@DRAGON_0008
@DRAGON_0008 4 жыл бұрын
@@LeafClasses mam what is the need of math.random
@LeafClasses
@LeafClasses 4 жыл бұрын
It generates a random number between 0 and 1.
@samairamalik3404
@samairamalik3404 3 жыл бұрын
@@DRAGON_0008 it is generally used in the games you play on the phone to give a username etc
@vikasdhakad2955
@vikasdhakad2955 4 жыл бұрын
Miss Please Explain Trigonometric Functions And Exponential Functions Also
@roshnigupta1306
@roshnigupta1306 9 ай бұрын
The only teacher who teaches computer in the best way on youtube. ❤
@shreyapal4216
@shreyapal4216 3 жыл бұрын
Salute you mam Osm teacher of computer Never seen a teacher like you Thank you mam for teaching us on KZbin
@shashishekhartrivedy1259
@shashishekhartrivedy1259 2 жыл бұрын
Mam, I have no words to express. 😭Such a great explanation.🌼🤍 Must watch. 🦋
@poonammiahra5532
@poonammiahra5532 4 жыл бұрын
Ma'am if there in the question it is written that convert the following statements into Java expression and the question is n=3 +2log 4 Then which answer is correct i-) n=3+2*Math.log(4); Or ii-) n=3+Math.log(Math.pow(4,2)); Because in mathematics if any no is written just before the log like 2log 3, then it is written as log 3² And not 2 multiplied by the log of 3 Ma'am please answer!!
@LeafClasses
@LeafClasses 4 жыл бұрын
As per ICSE syllabus option (i) is the correct answer. You don't have to go into details of mathematics for writing the java Expressions.
@poonammiahra5532
@poonammiahra5532 4 жыл бұрын
@@LeafClasses OK ma'am Thank you for the reply
@suyashjain7365
@suyashjain7365 2 жыл бұрын
Very nice explaination mam thanks a lot 🙏🏻👍🏻
@srinivasanl6484
@srinivasanl6484 2 жыл бұрын
Thank you so much ma'am... It helped in my last minute revision... It was also easy to remember
@exploringmyself5367
@exploringmyself5367 3 жыл бұрын
Mam do u use APC
@suryanarayansahu8045
@suryanarayansahu8045 3 жыл бұрын
Conditional statements lesson
@adityapradeep2894
@adityapradeep2894 4 жыл бұрын
Thank You Ma'am. This video was very helpful..
@LeafClasses
@LeafClasses 4 жыл бұрын
Happy Learning
@b2kofficial206
@b2kofficial206 4 жыл бұрын
Ma'am your explanation is very nice 👍👍
@LeafClasses
@LeafClasses 4 жыл бұрын
God bless you. Happy Learning
@ShafiaSiddiqui-xj9br
@ShafiaSiddiqui-xj9br 8 ай бұрын
Ma'am can you please make a video on Exceptional handling in Java....
@mafia411
@mafia411 2 жыл бұрын
thanku maam only 1 qn was wrong when I solved the pdf Now I have understood everything THANKU SO MUCH :) ! 😘😘😘😘
@LeafClasses
@LeafClasses 2 жыл бұрын
Happy Learning
@ektaraj_1689
@ektaraj_1689 4 жыл бұрын
Math.min( a , A) Ma'am what will be the answer?
@LeafClasses
@LeafClasses 4 жыл бұрын
Here a and A are the numeric variables. So, the output depends on the value of these two variables. Math.min() gives the lowest of the two numbers. Hope its clear now.
@ektaraj_1689
@ektaraj_1689 4 жыл бұрын
Thank you mam
@ektaraj_1689
@ektaraj_1689 4 жыл бұрын
Mam if they are characters then what will be the answer
@LeafClasses
@LeafClasses 4 жыл бұрын
In this case it will display the lowest value of the ASCII code of the given characters.
@aasiyaahmed5216
@aasiyaahmed5216 3 жыл бұрын
We can use rint instead of ceil and floor
@renuambesh5744
@renuambesh5744 3 жыл бұрын
Mam very useful thnx
@LeafClasses
@LeafClasses 3 жыл бұрын
Happy Learning
@samithsuvarna7447
@samithsuvarna7447 2 жыл бұрын
Very helpful ma'am thank you, you cleared all my doubts ☺
@Mana-kd8hn
@Mana-kd8hn Жыл бұрын
Ma'am I am now in class 10 and I literally don't have any knowledge regarding computer i just wasted my class 9 ... In 1 month I have my preselection ... Please suggest me what concepts are needed of class 9 in class 10.. I am very much tensed ma'am please help me .. and say what should I do ?
@shankarblogs9094
@shankarblogs9094 4 жыл бұрын
Mam your vedio was awsome
@annieleema4205
@annieleema4205 11 ай бұрын
Thanks a lot ma'am, this video was very helpful ✨ you just gained a new subscriber
@LeafClasses
@LeafClasses 11 ай бұрын
Happy Learning
@minakshidutt4349
@minakshidutt4349 3 жыл бұрын
Ma'am for : Math.ceil(3.2) Ans. 4.0 Ma'am why don't we take 3.5?
@LeafClasses
@LeafClasses 3 жыл бұрын
ceil function gives the nearest highest integer but the return type is double. I think this way its easy to learn and remember.
@bollywoodcomedyscene6136
@bollywoodcomedyscene6136 2 жыл бұрын
Mam pls make more videos of computer of Java how to create program and other and many lessson
@MOHAMMEDREHANth_-
@MOHAMMEDREHANth_- 2 жыл бұрын
mam in double a = Math.abs(2.75); then it should return -2.75 know mam , then you have written same as it is in the question i.e.,(2.75 itself) kindly check and pls do reply
@12bgirikirti46
@12bgirikirti46 3 жыл бұрын
Mam can you pls tell about Math.exp(),Math.sin(),Math.cos,Math.asin()plsss Mam🙏🙏
@gamoraweasley
@gamoraweasley 3 жыл бұрын
Tysm! Helped me a lot for last minute practise 😭🙏
@shatakshichaurasia2296
@shatakshichaurasia2296 Жыл бұрын
Ma'am what is the difference between math.sin()and math.asin()
@horrormovies3950
@horrormovies3950 2 жыл бұрын
Mam is Math.pow(a,2) a square of a??
@LeafClasses
@LeafClasses 2 жыл бұрын
Yes
@legendharshyt3750
@legendharshyt3750 4 жыл бұрын
Thank you so much mam for helping us
@LeafClasses
@LeafClasses 4 жыл бұрын
Best wishes and Happy Learning
@geethagstmaryshsaluva1852
@geethagstmaryshsaluva1852 3 жыл бұрын
Ma'am is all the portions for icse exam completed in the channel?
@LeafClasses
@LeafClasses 3 жыл бұрын
Most of the topics are present. Rest will be uploaded soon. Happy Learning
@geethagstmaryshsaluva1852
@geethagstmaryshsaluva1852 3 жыл бұрын
@@LeafClasses Thank you, Ma'am
@kurienmathew8962
@kurienmathew8962 Жыл бұрын
Thank you so much ma'am 😍 I had my computer mid term exam today.....It helped me a lot.....
@LeafClasses
@LeafClasses Жыл бұрын
That's really good. Happy Learning
@shankarblogs9094
@shankarblogs9094 4 жыл бұрын
It help a lot in our study
@LeafClasses
@LeafClasses 4 жыл бұрын
Best wishes and Happy Learning
@vipi9463
@vipi9463 3 жыл бұрын
Thanks from the bottom of my heart
@PureFactsz
@PureFactsz 3 жыл бұрын
Jai hind
@youniquearts5193
@youniquearts5193 3 жыл бұрын
It's incredible !!! Mam please. make more chapters for class 9th computer
@TheTechierBlade
@TheTechierBlade Жыл бұрын
KZbin needs teacher like you for studies
@LeafClasses
@LeafClasses Жыл бұрын
Happy Learning
@trishagoud6390
@trishagoud6390 2 жыл бұрын
Thank you mam , I understand it very well ❤️❤️
@AlokSingh-st3mj
@AlokSingh-st3mj 3 жыл бұрын
Thankyou so much ma'am 😃😃 I am a girl from CBSE board from Bihar... And for higher education I went to lucknow in ICSC board ... I stole my father's phone for only seeing ur vdos .. thankyou so much ma'am
@LeafClasses
@LeafClasses 3 жыл бұрын
Please do take permission from your father for using the phone next time. Happy Learning and blessings
@aklimakhatun6769
@aklimakhatun6769 3 жыл бұрын
Mam when I checked rint value of 7.5 it was returning as 8.0 Why?
@LeafClasses
@LeafClasses 3 жыл бұрын
Please check the first comment of the video. Happy Learning
@aklimakhatun6769
@aklimakhatun6769 3 жыл бұрын
Yes I saw. Thanks Mam 😊
@jasmina2259
@jasmina2259 2 жыл бұрын
Thank you so much mam..
@lifeisveryshot3205
@lifeisveryshot3205 3 жыл бұрын
Mam please tell nested loop 10th class
@srinivassrinivas4696
@srinivassrinivas4696 3 жыл бұрын
Thanks u mam it helped me so much to learn this concept easily
@LeafClasses
@LeafClasses 3 жыл бұрын
Happy Learning
@friedmcdonald4339
@friedmcdonald4339 4 жыл бұрын
Mam can Math.min show the Minimum number if there are more than 2 number?
@LeafClasses
@LeafClasses 4 жыл бұрын
Math.min() function works with two arguments only.
@friedmcdonald4339
@friedmcdonald4339 4 жыл бұрын
@@LeafClasses thx mam
@basavarajukn221
@basavarajukn221 3 жыл бұрын
Thank you mam
@jhansilakshmi949
@jhansilakshmi949 Жыл бұрын
Thank uhh so much mam for ur kind & clear explanation... I really thank alot!! It's really very helpful to me to score good marks in this chapter.....
@LeafClasses
@LeafClasses Жыл бұрын
Happy Learning
@riakhurana426
@riakhurana426 9 ай бұрын
Thankyou mam it is very helpful ❤.
@latamishra1264
@latamishra1264 3 жыл бұрын
thank uh ma'am really helpful..
@LeafClasses
@LeafClasses 3 жыл бұрын
Happy Learning
@user-wx6ft4qh6f
@user-wx6ft4qh6f 3 ай бұрын
Mam in Math.abs (If it is negative it turns into positive) If it is positive it should turn into negative man??????
@magdumi
@magdumi 2 ай бұрын
if any sign is there it doesn't count it'll only return its absolute value eg: -7 will return as 7 and 7 = 7 (since there is no sign it'll return as it is)
@ayushanand9631
@ayushanand9631 3 жыл бұрын
Rewrite using for loop While(!false) System.out.print("@"); What is the answer of this mam
@LeafClasses
@LeafClasses 3 жыл бұрын
It is infinite loop. The print statement will execute endlessly
@rockrock7818
@rockrock7818 2 жыл бұрын
i have never seen a teacher who blessed to everyone without any bonding
@LeafClasses
@LeafClasses 2 жыл бұрын
Happy Learning
@sheelgupta4397
@sheelgupta4397 Жыл бұрын
Shree Shivay Namastubhyam 😀😃😀😃
@babitasharma7456
@babitasharma7456 Жыл бұрын
Mam can you tell me how you done question 2 which you have given pdf in description Mam plz tell me this will be very helpful as I am having pre board exam on Monday
@LeafClasses
@LeafClasses Жыл бұрын
1. Math.min(3.0,3.5)=3.0 2. Math.max(4.0,3.5)=4.0 Hope its clear now
@RitikaMrDevdassahhps-ym5mt
@RitikaMrDevdassahhps-ym5mt 2 жыл бұрын
please solve my program write a program in java to read two numbers via the scanner class and demonstrate any 5 mathematical library methods.
@ruksan.sagara
@ruksan.sagara 2 жыл бұрын
Mam what is meant by float pls reply
@pavanmgowda4871
@pavanmgowda4871 3 жыл бұрын
ma'am can the math.random value can be int
@LeafClasses
@LeafClasses 3 жыл бұрын
Math.random() always give the double value that can be converted to int type using conversion/calculation.
@meenagupta203
@meenagupta203 3 жыл бұрын
Mam can you please tell what is syntax
@sabitapadhi220
@sabitapadhi220 3 жыл бұрын
Superb explanation..... Thanks a lot mam 😀😊😊💓
@aasthamishra4276
@aasthamishra4276 3 жыл бұрын
Ma'am you are the best
@LeafClasses
@LeafClasses 3 жыл бұрын
Happy Learning
@aasthamishra4276
@aasthamishra4276 3 жыл бұрын
@@LeafClasses THANK YOU MA'AM
@Ashishverma-is8kl
@Ashishverma-is8kl 4 жыл бұрын
In class 8 and 9 the computer book is same
@syedashiquehussain5908
@syedashiquehussain5908 3 жыл бұрын
Maam u teach very well....lots of love from kolkata ♥️
@91Archana_
@91Archana_ Жыл бұрын
Ma'am Math. log function is included in class 10th icse syllabus or not? In my book it's not mentioned.
@LeafClasses
@LeafClasses Жыл бұрын
log function is not there in the syllabus now. It was there earlier but now removed
@sauravnarayan9317
@sauravnarayan9317 3 жыл бұрын
What is difference between math. round () & math. rint()
@LeafClasses
@LeafClasses 3 жыл бұрын
Math rint() method returns the nearest integer in double type. If the specified value is 6.8, the closest value that is equal to the mathematical integer is 7.0. And, for value 6.4, the closest value that is equal to mathematical integer is 6.0 Math. round() method is used to round a number to its​ closest integer. Happy Learning
@tgtiger5679
@tgtiger5679 3 жыл бұрын
ma'am what is the difference between rint and round function?
@shouryagoyal5226
@shouryagoyal5226 4 жыл бұрын
thank u mam for ur video
@LeafClasses
@LeafClasses 4 жыл бұрын
God bless you. Happy Learning
@aaditya_aspirant
@aaditya_aspirant Жыл бұрын
no words you are just mindblowing
@LeafClasses
@LeafClasses Жыл бұрын
Happy Learning
@Sana-mr7tw
@Sana-mr7tw 3 жыл бұрын
Maam can u also do a video abt angle conversation and trigonometrical functions Nice video btw
@PRAKASHxox
@PRAKASHxox 3 жыл бұрын
Thank you mam🙏
@LeafClasses
@LeafClasses 3 жыл бұрын
Happy Learning
@lalitharaj4193
@lalitharaj4193 4 жыл бұрын
Thanks mam
@cl2roll31yashashvibaranwal2
@cl2roll31yashashvibaranwal2 9 ай бұрын
It ws very helpful miss
@rishikapurushotham9435
@rishikapurushotham9435 2 жыл бұрын
maam what do u mean by double value?
@LeafClasses
@LeafClasses 2 жыл бұрын
double value means real numbers with decimal point. In java the real values are by default double type.
@krishnaraichandani4934
@krishnaraichandani4934 3 жыл бұрын
Mam my exams are coming and I was very tensed after seeing the video now I am tension free and ready to give my exams now
@latachakraborty3000
@latachakraborty3000 4 жыл бұрын
Ma'am please dont address students as "kijiye" you shall address them as "karna" or "karo".
@pratikkhetawat6991
@pratikkhetawat6991 3 жыл бұрын
Thank you Mam, You should start online zoom classes
@nishaverma2572
@nishaverma2572 3 жыл бұрын
Ma'am what is the use of math.random ? Give one example I love your video you are life saving in 2020
@LeafClasses
@LeafClasses 3 жыл бұрын
random() function generates a random number in double type between 0 and 1. It always gives a different number on execution.
@nishaverma2572
@nishaverma2572 3 жыл бұрын
@@LeafClasses thank you ma'am but how can you us this in java programming , will it only come on question only ?
@omshaileshjaiswal8584
@omshaileshjaiswal8584 3 жыл бұрын
Thank you for your efforts.
@LeafClasses
@LeafClasses 3 жыл бұрын
Happy Learning
@harhit4437
@harhit4437 Жыл бұрын
Maam for Math.log() value should be always positive ?
@Studychannel_Shelby
@Studychannel_Shelby 6 ай бұрын
Yes
@sumanchambyal3567
@sumanchambyal3567 3 жыл бұрын
Mam in pdf plzz tell me that in Q1.2nd part how 7.0will come I think it should be 9.0
@LeafClasses
@LeafClasses 3 жыл бұрын
ceil function gives the nearest highest integer in double type. Please go through the video again. Nearest highest of 6.8 is 7.0
@shivaniagrawal5082
@shivaniagrawal5082 2 жыл бұрын
madam, if we write two arguments in Math.min() function of different data types say for instance one is of int type while the other is of float type so what will be the return type of the result?
@LeafClasses
@LeafClasses 2 жыл бұрын
The resultant data type will be the data type of higher data type as per their hierarchy.
@aviraldwivedi2288
@aviraldwivedi2288 4 жыл бұрын
Mam plzz explain looping programs
@LeafClasses
@LeafClasses 4 жыл бұрын
Ok dear!! Will upload soon
@aviraldwivedi2288
@aviraldwivedi2288 4 жыл бұрын
@@LeafClasses thanks a lot mam
@rze7614
@rze7614 3 жыл бұрын
Ma'am which chapter is important for 9 exam in computer
@meenakashimittal1103
@meenakashimittal1103 2 жыл бұрын
Thank you so much maam tomorrow is my test Maam you look like puneet singh wife of ramneek singh
@ayushmaanshrivastava1429
@ayushmaanshrivastava1429 2 жыл бұрын
Mam what if we put the value 5.5 in the math.floor and math.ceil function , what value will I get??
@LeafClasses
@LeafClasses 2 жыл бұрын
5.0 for Math.floor and 6.0 for Math. Ceil
@ayushmaanshrivastava1429
@ayushmaanshrivastava1429 2 жыл бұрын
Thank you so much mam! 🙏🏻
@bijithashajan6657
@bijithashajan6657 Жыл бұрын
Thanking you mam concept is crystal clear
INPUT IN JAVA | SCANNER CLASS | ICSE 9 AND 10 | ANJALI MA'AM
14:18
Leaf Classes
Рет қаралды 46 М.
Minecraft Creeper Family is back! #minecraft #funny #memes
00:26
Fake watermelon by Secret Vlog
00:16
Secret Vlog
Рет қаралды 15 МЛН
Nested For Loop | Lecture 1 | ICSE | Class 9 & 10 | Anjali Ma'am
21:04
Einstein's grades 👀
14:36
Tibees
Рет қаралды 5 МЛН
ALL OF PHYSICS explained in 14 Minutes
14:20
Wacky Science
Рет қаралды 2,2 МЛН
Become GOD of Maths in 3 Months - Target IIT Bombay 🔥
8:15
Quantum Project - Tharun Speaks
Рет қаралды 106 М.
Math Teacher Shows TOP 10 MISTAKES students make
18:43
JensenMath
Рет қаралды 652 М.
e to the pi i for dummies
15:51
Mathologer
Рет қаралды 3,3 МЛН
Math Class Functions in Java | pow() sqrt() ceil() floor() etc | Class 9 and 10 Computer
28:16