Loops in Java | Java Placement Full Course | Lecture 4

preview_player
Показать описание


Notes of this Lecture:
Рекомендации по теме
Комментарии
Автор

We are sorry for the poor audio quality, the camera mic was defective.

ApnaCollegeOfficial
Автор

Le me: Writing in notebook instead of coding in laptop😂

shivamff
Автор

Who all are studying without laptop 😅?

Roshni
Автор

thank you microsoft wali didi and your all team to give us such an amazing material video free of cost ...that is very helpful for me to lean java as a beginner

shamael_hashmi
Автор

Aapka Shikhane Ka Tarika Fluent Hindi Me Aur Ek Hi Baar me Samjh Bhi Aa Jata hai. Mera Doubt Aur Bhi Clear Ho Gaya Hai. Thank You Apna College

BirjuGame
Автор

Thank you to all the team for bringing such a amazing content free of cost for us..!❤🔥

aimal
Автор

Talented people study on the last day of the exam 😂😂😂
This is called real talent

divyanshublogger
Автор

I have a feeling...this is going to be legendary!
Thanks for providing everything for free.

relaxxx
Автор

Thank you so much!!! I was so worried about the loop statements but now all my doubts are clear. 💖 Thank you so much 'Apna college' for providing such with such great content, free of cost. Great explanation! Tysm! ❤️

arihantvlogz
Автор

thankyou so much pehli baar khud se 4 program ho gaye....kal tak 2 bhi dhang se nhi ho rahe me basics hi clear nahi huye the mere....but aapne clear kar microsoft wali DIDI

iconicheroes
Автор

Aap log bohot hi great work kr rhe ho 🙏🙏 thanks for java lecture .... everyone can easily learn this java lecture and also your teaching style is very well nd unique. di ...👌👌👌

raushanrawat
Автор

Bohot hi helpful hai .. beginners can learn from this easily.. though my basics are quite clear.. but still I have watched all your videos cause I loved it.. great work.. keep it up.. love you ms didi 😘 ❤ love you team apna college ❤ love you 3000

madhurima
Автор

You are more better than my college lectures ❤️ no youtuber nor lectures can make this kind of understandable videos. I'm sure this will help me in placements. Thank you 🙏Mam

chetanuppin
Автор

i am a 9th class student and i never liked java but when i started studying from this channel, the concepts made much sense and it was not boring anymore and i really started to like java....Thank u for providing such detailed info to be interesting and fun to learn

ppvixen
Автор

being from electrical background you made it so easy for me to learn basics of java that thanks a ton ...please update with more videos would love to watch them....😍😍

ttomar
Автор

thank you so much for revision the java and this is my second time revisions,
I am really enjoying this course,

abhishekjaiswal
Автор

I subscribe this channel just because of u as your teaching style is unique and easy to understand.
Your lectures help me a lot in learning automation tool (selenium with java).keep up the good work thanks a lot.

RajatSharma-npmk
Автор

Ma'am please don't stop this series.Please complete it.

Nachikxt
Автор

FOR table problem this method is more easy :- int n = sc.nextInt();
for(int i = n; i<=n*10; i = i+n){
System.out.println(i);
}

satishkumargupta
Автор

heres the code with the while loop the table question -


// make a full table for the user given number....
import java.util.*;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
String RED = "\033[1;31m";
System.out.println("how to much you want the table to be : ");
int size = sc.nextInt();
System.out.println("Enter the number you want the table of : ");
int input = sc.nextInt();
int y;
int i = 0;
while (i < size){
i++;
System.out.println( input + "x" + i + " = " + input*i);

}
}
}

onlyDevz