KZ
bin
Негізгі бет
Қазірдің өзінде танымал
Тікелей эфир
Ұнаған бейнелер
Қайтадан қараңыз
Жазылымдар
Кіру
Тіркелу
Ең жақсы KZbin
Фильм және анимация
Автокөліктер мен көлік құралдары
Музыка
Үй жануарлары мен аңдар
Спорт
Ойындар
Комедия
Ойын-сауық
Тәжірибелік нұсқаулар және стиль
Ғылым және технология
Жазылу
ASHISH SINGH
Welcome to my education KZbin channel! Here, you will find videos on a wide range of educational topics, from math and science to history , CurrentAffairs , Programming , Computers etc . I also create videos on study tips and productivity hacks.
My goal is to help students learn and succeed. I believe that everyone has the potential to learn, and I want to make education accessible and engaging for everyone.
My videos are designed to be both informative and entertaining. I use a variety of teaching methods, including lectures, demonstrations, and real-world examples. I also use humor and storytelling to make my videos more engaging.
If you are a student who is struggling in school, or if you are simply looking for a way to learn new things, I hope you will find my channel helpful. Please subscribe to my channel and like my videos to show your support!
12:20
CustomerManagementProject || Java || Spring Boot||Custome Exception ,@RestControllerAdvice || PART 5
14 күн бұрын
8:38
Customer Management Project || Java || Spring Boot || Postman || PART 4
14 күн бұрын
17:33
Spring Boot || Customer Management Project || Part 3 || CRUD || PutMapping Vs PatchMapping
21 күн бұрын
16:43
Spring Boot || Customer Management Project || Part 2 || CRUD || PutMapping || ResponseEntity
28 күн бұрын
26:18
Customer Management Project || Java || Spring Boot || Postman || PART 1
28 күн бұрын
4:01
Get the details of highest paid employee in the organization? || Java 8 || Coding ||DSA || Interview
28 күн бұрын
2:52
What is the average age of male and female employees || Java 8 || Coding ||DSA || Interview
Ай бұрын
3:40
Java8 || Part 2 || Coding || Stream API || Java Interview Question
Ай бұрын
7:19
Java8 || Stream API || Coding Question || Interview Most Asked || Part 1
Ай бұрын
12:49
PrimeNumber || Java Coding || DSA || Interview Question
Ай бұрын
4:38
Spring MVC || Hibernate CRUD Project || How to import project from github
Ай бұрын
5:14
Finding the maximum and minimum form the given array || Java || DSA || Coding ||
Ай бұрын
11:47
EvenAndOddNumber || DSA || JAVA CODING || INTERVIEW
Ай бұрын
19:10
Armstrong Number In Java || Java Coding || LeetCode || Interview || SpringBoot #tranding #love
Ай бұрын
5:38
Servlet || Spring || Java || Coding || Maven || Tomcat Server || web.xml ||
2 ай бұрын
3:13
SumOfString || Java Coding
2 ай бұрын
6:21
Finding Second Max from Array
2 ай бұрын
4:35
OccuranceOfCharacter In String In java
3 ай бұрын
4:48
Swap two numbers without using third variable in java
3 ай бұрын
5:58
Count The Number Of Digits of a given number using do while & String
3 ай бұрын
2:10
Facts about arithmetic exception in java || #java #coding #exceptionhandling #computerprogram
3 ай бұрын
3:10
ArraySort in java without use of any inbuilt method
3 ай бұрын
1:43
String To Int conversion || java || coding
3 ай бұрын
0:34
Convert int to String in java
3 ай бұрын
7:29
Factorial || Java programing || coding
3 ай бұрын
4:44
AREA OF CIRCLE || JAVA || CODING QUESTION || USING MATH CLASS
3 ай бұрын
6:47
Java8 || Interview Coding Question || Infosys || count the digit || concat two list
3 ай бұрын
1:26
Print Numbers from 1 to 100 Without a Loop in Java | Java Programming
3 ай бұрын
6:09
How to Calculate the Power of a Number in Java | Java Programming Tutorial
3 ай бұрын
Пікірлер
@bundelkhandibro4420
21 күн бұрын
Deepu ko bhi shikha deo
@ashishsingh8222
21 күн бұрын
@@bundelkhandibro4420 bilkul
@Gautamkumar-kh9ge
25 күн бұрын
Kaha ka he vedio
@ashishsingh8222
25 күн бұрын
@@Gautamkumar-kh9ge gwalior
@BismaMalik-m6c
Ай бұрын
Bhai thoda or accha photo click kr skte the
@ashishsingh8222
Ай бұрын
How bro ?
@ashishsingh8222
Ай бұрын
github.com/SinghAshsih/Spring-MVC-CURD-WITH-HIBERNATE.git
@pdsinghkushwah1244
Ай бұрын
Thanks Bhai
@ashishsingh8222
Ай бұрын
package com.youtube; import java.util.InputMismatchException; import java.util.Scanner; public class ArmstrongNumber2 { public static void main(String[] args) { Scanner sc = new Scanner(System.in); try { System.out.println("Please input your number : "); int num = sc.nextInt(); // int digits = findTheNumberOfDigits(num); String str = Integer.toString(num); int lenght = str.length(); System.out.println(num + " : No of digits in it : " + lenght); isArmstrongngNumber(num, lenght); } catch (InputMismatchException e) { System.out.println("Please enter only numbers !"); } finally { sc.close(); } } private static void isArmstrongngNumber(int num, int power) { // TODO Auto-generated method stub int sum = 0; int temp = num; while (temp > 0) { int lastDigit = temp % 10; sum = sum + (int) Math.pow(lastDigit, power); temp /= 10; } if (sum == num) { System.out.println("Yes it is Armstrong"); } else { System.out.println("No, it is not armstrong"); } } // private static int findTheNumberOfDigits(int num) { // // TODO Auto-generated method stub // int count = 0; // int temp = num; // while (temp > 0) { // count++; // temp /= 10; // } // // return count; // } }
@abhisheksinghkushwah6689
2 ай бұрын
Super Be Continue Bro
@ashishsingh8222
2 ай бұрын
Thank you for appreciation
@ashishsingh8222
2 ай бұрын
<project xmlns="maven.apache.org/POM/4.0.0" xmlns:xsi="www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="maven.apache.org/POM/4.0.0 maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>FirstServletApp</groupId> <artifactId>FirstServletApp</artifactId> <version>0.0.1-SNAPSHOT</version> <packaging>war</packaging> <build> <plugins> <plugin> <artifactId>maven-war-plugin</artifactId> <version>3.2.3</version> </plugin> <plugin> <artifactId>maven-compiler-plugin</artifactId> <version>3.8.1</version> <configuration> <release>17</release> </configuration> </plugin> </plugins> </build> <dependencies> <!-- mvnrepository.com/artifact/javax.servlet/servlet-api --> <dependency> <groupId>javax.servlet</groupId> <artifactId>servlet-api</artifactId> <version>3.0-alpha-1</version> <scope>provided</scope> </dependency> </dependencies> </project>
@ashishsingh8222
2 ай бұрын
<?xml version="1.0" encoding="UTF-8"?> <web-app xmlns:xsi="www.w3.org/2001/XMLSchema-instance" xmlns="xmlns.jcp.org/xml/ns/javaee" xsi:schemaLocation="xmlns.jcp.org/xml/ns/javaee xmlns.jcp.org/xml/ns/javaee/web-app_4_0.xsd" id="WebApp_ID" version="4.0"> <display-name>FirstServletApp</display-name> <servlet> <servlet-name>first</servlet-name> <servlet-class>com.servlet.MyServlet</servlet-class> </servlet> <servlet-mapping> <servlet-name>first</servlet-name> <url-pattern>/message</url-pattern> </servlet-mapping> </web-app>
@ashishsingh8222
2 ай бұрын
package com.servlet; import java.io.IOException; import java.io.PrintWriter; import javax.servlet.ServletException; import javax.servlet.http.HttpServlet; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; public class MyServlet extends HttpServlet { /** * */ private static final long serialVersionUID = 1L; @Override protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException { // TODO Auto-generated method stub resp.setContentType("text/html"); PrintWriter pw = resp.getWriter(); pw.print("Hello World !"); } }
@RadheKrishna-xo5qi
2 ай бұрын
Radhe Radhe 🙏🙏
@ashishsingh8222
2 ай бұрын
@@RadheKrishna-xo5qi Radhe Radhe 🙏 🙏
@kaustubhdixit14
2 ай бұрын
❤️❤️❤️
@ragineeshakya-um7qr
3 ай бұрын
Bhaiya aap jo smjhana chahte h usme voice ka prayog kre to chije jyada ache se smjh aayegi, baki aapki kosis achi hai 🙏
@ashishsingh8222
3 ай бұрын
ok I will do it you got the question or not ? And thank you for appreciating me and watching my videos
@Gautamkumar-kh9ge
3 ай бұрын
❤
@Gautamkumar-kh9ge
3 ай бұрын
😊😊😊
@ashishsingh8222
5 ай бұрын
For Code github.com/SinghAshsih/SpringBoot_CRUD.git
@mohitsuree1901
6 ай бұрын
🔥🔥🔥🔥
@mohitsuree1901
7 ай бұрын
Je baat 🔥
@mohitsuree1901
7 ай бұрын
🎉🎉🎉
@mohitsuree1901
7 ай бұрын
🔥🔥🔥
@mohitsuree1901
7 ай бұрын
Yeah boiii !!
@anuragsingh8375
7 ай бұрын
JAY SHREE RAAM SITARAAM ❤❤
@ashishsingh8222
7 ай бұрын
Jay shree ram
@mohitsuree1901
7 ай бұрын
🎉🎉🎉🎉
@ManojYadav-vh2ky
7 ай бұрын
❤🎉🎉🎉🎉🎉
@mohitsuree1901
7 ай бұрын
😅😅
@mohitsuree1901
7 ай бұрын
😎🫡😎
@bundelkhandibro4420
7 ай бұрын
Vloging suru kr di kya
@ashishsingh8222
7 ай бұрын
Na bhai
@ashishsingh8222
7 ай бұрын
Article 352 deals with national emergency
@mohitsuree1901
7 ай бұрын
🤩🤩🤩😎😎😎
@boostfear7158
Жыл бұрын
Amazing content
@ashishsingh8222
Жыл бұрын
Thank you 🙏
@mohitsuree1901
Жыл бұрын
🎉🎉🎉
@jktgh
Жыл бұрын
Very good.
@jktgh
Жыл бұрын
Good.
@ashishsingh8222
Жыл бұрын
Thank you very much
@nayanseth667
Жыл бұрын
Bhai apna youtuber😅
@ashishsingh8222
Жыл бұрын
Thank you very much 😁
@anshurajawat1253
Жыл бұрын
Good