PROGRAMS | STRING | Case change | ICSE X | Computer Applications | Anjali Ma'am

  Рет қаралды 5,318

Leaf Classes

Leaf Classes

Күн бұрын

Пікірлер: 47
@LeafClasses
@LeafClasses Жыл бұрын
If you feel the text size small in the video, please refer to the following program. Next time onwards will take care of it. import java.util.Scanner; class CaseConverter { public static void main() { // Create a Scanner object to read input Scanner scanner = new Scanner(System.in); // Prompt the user to enter a string System.out.print("Enter a string: "); // Read the string String input = scanner.nextLine(); // Initialize a new string to hold the converted characters String converted = ""; // Iterate through the characters in the input string for (int i = 0; i < input.length(); i++) { char c = input.charAt(i); // Check if the character is an uppercase letter if (c >= 'A' && c = 'a' && c
@learner7539
@learner7539 Жыл бұрын
Mam this is different program.
@mongatongacomedy4102
@mongatongacomedy4102 Жыл бұрын
Size is very small
@pihusinghal3167
@pihusinghal3167 Жыл бұрын
Thank you ma'am
@biswajeetpatra8464
@biswajeetpatra8464 Жыл бұрын
Mam I have a doubt What is the code generated by a JIT compiler?
@LeafClasses
@LeafClasses Жыл бұрын
​@@biswajeetpatra8464 it is known as native machine code
@bimlasharma486
@bimlasharma486 8 ай бұрын
Best teacher ever, just got my result got 90+ thank you so much ma'am 😊😊
@LeafClasses
@LeafClasses 8 ай бұрын
Glad to know that. Many congratulations dear!!
@Fateh6002
@Fateh6002 Жыл бұрын
Yes mam this method is easy
@ranusingh476
@ranusingh476 Жыл бұрын
Mam please make simultaneously both three revision series and four programs a week till computer exam please it will be very helpful
@AbhishekVerma-i4d
@AbhishekVerma-i4d 11 ай бұрын
Define a class to accept a String and print the number of digits, alphabets and special characters in the string. Example: S = "KAPILDEV@83" Output: Number of digits -2' Number of Alphabets - 8 Number of Special characters - 1
@learner7539
@learner7539 Жыл бұрын
Ma'am pls bring on more ma'am plssss
@rashmilale1787
@rashmilale1787 Жыл бұрын
Can we use Character.isUpperCase and Character.isLowerCase functions
@LeafClasses
@LeafClasses Жыл бұрын
Yes
@AMANKRSINGH-vi3fy
@AMANKRSINGH-vi3fy Жыл бұрын
Thank you mam, it makes our concepts Cristal clear..
@iffatajaz2796
@iffatajaz2796 Жыл бұрын
It is not visible.Letters are so small
@vaan.ya28
@vaan.ya28 Жыл бұрын
Ma'am we like this method
@vedansh279
@vedansh279 Жыл бұрын
alphabetical order of the strings in an array [Bubble sort technique]. One video on this topic .
@aishwaryagupta2109
@aishwaryagupta2109 Жыл бұрын
Mam please make video for class 10 th icse computer exam
@4anshveersingh5jasmine75
@4anshveersingh5jasmine75 Жыл бұрын
Mam this was the best way to make us understand programs . We are able to understand programs in better way now and try to make more videos as possible as our boards are from next week
@vikasgupta796
@vikasgupta796 Жыл бұрын
Q. The name of the method is addTwo which receives one int argument add 2 to it and returns that result return i+2; Mam if I write above statement as : int s= i+2; return s; Is it correct?
@arnavanandicseaim90
@arnavanandicseaim90 Жыл бұрын
Ya bro
@kumarrajveer7888
@kumarrajveer7888 Жыл бұрын
Thank you mam, please solve the previous year important programs 🙏🙏
@shashankshekharmishra3117
@shashankshekharmishra3117 Жыл бұрын
Ma'am we can use .ToUpperCase and .ToLowerCase ?
@LeafClasses
@LeafClasses Жыл бұрын
Yes
@Missionneetwithme
@Missionneetwithme Жыл бұрын
7:06 why you have used (char) Agr use nahi karenge to kya hoga
@lubabafatimaa
@lubabafatimaa Жыл бұрын
Ma'am Can you make a program on magic string. Magic string is a string which has two consecutive letters such that they are alphabetically Example DEHLI here DE and HI are making it a magic string
@rimachandra9435
@rimachandra9435 Жыл бұрын
The old method was better btw pls pot more program videos
@TECHNICALGAMINGBANDE
@TECHNICALGAMINGBANDE Жыл бұрын
Mam plz make videos on the important questions which could most probably come from ARRAYS and STRINGS. Please mam
@anvisingh3627
@anvisingh3627 Жыл бұрын
Maam plz aap vo program ko smja dijye jo exam m aa sakte jiski portability hai
@avirup_adhya
@avirup_adhya Жыл бұрын
Mam what about the revision series? Will that continue? Suggestion:- It would be best if you could upload some sample papers in your own channel so we can evalute ourselves
@वेदांत-ड8ष
@वेदांत-ड8ष Жыл бұрын
WAP A PROGRAM TO REVERSE THE WORDS IN A STRING WITHOUT REVERSING EACH CHARACTER EXAMPLE : HELLO MA'AM HOW ARE YOU OUTPUT: YOU ARE HOW MA'AM HELLO solution for this!
@anprajain7209
@anprajain7209 Жыл бұрын
Mam this video was very helpful. Mam next time can you make video on this program ⬇ WAP to accept N no. of words from the user and display a count of no. of words which contains odd no. of vowels.Also display the words which start with vowels.Accept the value of N from user.
@sanjaykumarsingh3388
@sanjaykumarsingh3388 Жыл бұрын
Mam can we do program like this String s= sc.nextLine (); char ch ; String l; for( int a= 0; a < = s.length ;a++) { ch= s.charAt (a); If( ch.is UpperCase ()== true) ch= ch.to lower case (); else if (ch.isLowerCase()== true ) ch = ch.toUpperCase (); Else Ch = ch; l += ch; } S.O.Pln( l); } }
@LeafClasses
@LeafClasses Жыл бұрын
Yes, absolutely correct. Please note that loop should execute till < s. length() not
@sanjaykumarsingh3388
@sanjaykumarsingh3388 Жыл бұрын
old way of teaching is quite good than this one
@blessrai3518
@blessrai3518 Жыл бұрын
No miss
@ok-uq2ky
@ok-uq2ky Жыл бұрын
Mam can u please post more videos or give pdfs for practice as exams are approaching also this method was easy to understand thank you ❤
@kinglucifer7347
@kinglucifer7347 Жыл бұрын
Just telling you the review This method is not so good There is difficulty in Viewing the input. It would be much better if you would try on Any other method. Btw thnks for efforts🌼❤ And
@zxcvfdhgbaknksnakc
@zxcvfdhgbaknksnakc Жыл бұрын
class Main { public static void main(String args[]) { int array_variable [] = new int[10]; for (int i = 0; i < 10; ++i) { array_variable[i] = i; System.out.print(array_variable[i] + " "); i++; } } } mam plz dry run this this was there in one of my practise papers . it is a little difficukt, I am not understanding
@aimbotarmy6342
@aimbotarmy6342 Жыл бұрын
Maam for string what are the video which i need to watch!!
@kinglucifer7347
@kinglucifer7347 Жыл бұрын
Mam in 7:12 Can we use toupperCase function to convert it in uppercase? Pls replyyyyy mammmm
@LeafClasses
@LeafClasses Жыл бұрын
Yes, you may use any logic that gives the correct and desired output for any set of input.
1% vs 100% #beatbox #tiktok
01:10
BeatboxJCOP
Рет қаралды 67 МЛН
Новый год 2025 на ТНТ "ComedyVision!" @ComedyClubRussia
1:16:27
1% vs 100% #beatbox #tiktok
01:10
BeatboxJCOP
Рет қаралды 67 МЛН