Thank you sir, I have zero knowledge in coding. very easy understandable. 😀👍🤝
@sdetpavan Жыл бұрын
Glad to hear that
@swatizkitchen33263 ай бұрын
Thanks you so much sir your teaching is just excellent! you make every thing easy Thanks...
@sdetpavan3 ай бұрын
Welcoome
@haoluvr2 ай бұрын
wow... thank you so much for this! ❤
@sdetpavan2 ай бұрын
You're welcome
@hemmishra11022 жыл бұрын
public class PrintEvenOddNumbersFromArray { public static void main(String[] args) { String odd=""; String eve=""; int arr[]={1,2,3,4,5}; for(int i=0;i
@yamunashushma18343 жыл бұрын
Sir instead of using !=0 we use ==1 in odd numbers if statement
@abdus_samad8903 жыл бұрын
No, I think you can't write ==1 for odd numbers because in some conditions the remainder may come other than 1 and it will be an odd number but the line will only execute only if remainder is equal to 1.so, it is better to write ! =0 so that whatever the remainder will be other than 0 it will be an odd.
@arabindamohanty21904 жыл бұрын
Excellent 👌
@sdetpavan2 жыл бұрын
Thanks
@NordicPlan7603 жыл бұрын
Thank you, now it "clicked" for me :)!
@prasannachukka66434 жыл бұрын
sir plz do on video about printing pattern
@ezequielbecerrilgonzalez69462 жыл бұрын
I need same program but allow user to enter 10 numbers, and how may it print in descendent values
@jnp91553 жыл бұрын
i have encountered this question in interview and i was not able to give the answer so i was rejected. please guide all type of basic program task question which will be asked in interview.
@manaschoudhary2079 Жыл бұрын
In which company they this asked this question
@askhere3732 жыл бұрын
Thanks a lot sir
@sdetpavan2 жыл бұрын
Welcome
@gauri9923 жыл бұрын
Thankyou sir ur the best
@sdetpavan2 жыл бұрын
Welcome
@godlike82813 жыл бұрын
what if the pattern is different like {3,2,1,5,6,4}? Will it still get the odd and even numbers in any oreder?
@himanshuchauhan40092 жыл бұрын
yes it will
@suryakantnulkar9492 жыл бұрын
In my interview they asked the below Question,can I get answer for this .... How can we extract number from each digit and we need digit as a even or odd number
@smrutichandrasekaran4090 Жыл бұрын
Hey I have a doubt ?????
@abedalraoufzeidan14612 жыл бұрын
do we need two for loops for this
@msgudaduramath49802 жыл бұрын
I think no we can get The odd numbers within only one for loop by writing else statement
@SurajSingh-sy9kr2 жыл бұрын
helpful video sir
@sdetpavan2 жыл бұрын
Thanks
@Phyvb4 жыл бұрын
Thank you, this really helps alot
@sdetpavan2 жыл бұрын
Welcome
@CaptureSyncVentures2 жыл бұрын
What if you want to print the array to the console with only the even numbers?
@hiddled77392 жыл бұрын
Good day sir! What if the numbers were not given at all? how can we do that
@poojak3522 жыл бұрын
Why it's not showing duplicate local variable i
@ddgaming200 Жыл бұрын
Can anybody solve thi in O(n) means only using one loop
@elnurjalilovi60744 жыл бұрын
thank you so much bro
@sdetpavan2 жыл бұрын
Welcome
@gagan8281 Жыл бұрын
Sir can we use i
@daiyaan4400 Жыл бұрын
we wont be using it here cause the loop will run for (a.length-1) which means from 1 to 5...it wont be taking the last value at all. comparing it with index that it will run from (0 to n-2) for the given loop. i hope it is clear to you :)
@swayamprakashbhuyan3 жыл бұрын
Commenting for better reach
@pratheepkumar42185 жыл бұрын
Hi Praveen , how to do a pattern program.
@motivationmotivational39884 жыл бұрын
public class Even_Odd_from_Array { public static void main(String args[]) { int a[] = {2,3,4,5,6,7,8,9}; List even = new ArrayList(); List odd = new ArrayList(); for(int i = 0;i
@neelmoradiya1389 Жыл бұрын
🇮🇳🇮🇳🙏🙏👍👍
@akshaybachhav55602 жыл бұрын
i tried this way public static void main(String[] args) { int a[] = {1,2,3,4,5,6,7,8,9,10}; String even = ""; String odd = ""; for(int i = 0; i