AKSHARA CSIT
AKSHARA CSIT
  • 141
  • 353 041
Writing Hello World Java Program with compilation and execution
This video explains how to write a simple hello world Java program and also explains how to compile and execute the java program.
It also explains the java portability feature , write one execute anywhere.
zhlédnutí: 18

Video

Motivation and Evolution of Object Oriented Programming
zhlédnutí 24Před dnem
This video explains about the motivations to develop Object Oriented Programming and the evolution of Object Oriented Programming.
Interfaces in java with Example Program
zhlédnutí 10Před 21 dnem
This video explains about What is Interfaces and advantages of interfaces with example java program
Abstract Classes Explained with Java Program
zhlédnutí 7Před 21 dnem
This video explains about Abstract Classes, What are the uses or benefits of abstract classes.
Super Keyword with example program in java
zhlédnutí 78Před 4 měsíci
this video explains about Super Keyword uses with example program in java
Inheritance with example program in java
zhlédnutí 81Před 4 měsíci
This video explains about Inheritance in java with example
Composition with example program in Java
zhlédnutí 54Před 4 měsíci
This video explains Composition in Java(Has-a Relationship)
Passing arguments by Reference - Call by Reference
zhlédnutí 29Před 4 měsíci
This video explain about Passing arguments by Reference to methods( Call by Reference) in java language and in C
Passing Objects as parameters to methods/Constructors - Copy Constructor
zhlédnutí 40Před 4 měsíci
this video explain Passing Objects as parameters to methods/constructors - Copy Constructor
Argument Passing in Java - Call by Value(primitive types)
zhlédnutí 21Před 4 měsíci
This video explain about call by value argument passing in java with example
Introduction to Methods in Java
zhlédnutí 33Před 5 měsíci
Introduction to Methods in Java
Encapsulation with example program in Java
zhlédnutí 69Před 5 měsíci
This video Explains about OOP concept Encapsulation in java
Array of Objects
zhlédnutí 32Před 5 měsíci
This video explain about Array of Objects in java
Introduction to Arrays in Java
zhlédnutí 15Před 5 měsíci
This video explain about arrays in java with example program, how to declare , how to instantiate and how to initialize arrays in java language.
Static Keyword in Java
zhlédnutí 31Před 5 měsíci
This video explains about Static keyword in java, explain about static variables, static block and static methods
This() to call overloaded constructors
zhlédnutí 77Před 5 měsíci
This() to call overloaded constructors
This Keyword in Java
zhlédnutí 74Před 5 měsíci
This Keyword in Java
Constructors in Java
zhlédnutí 102Před 5 měsíci
Constructors in Java
Classes and Objects
zhlédnutí 157Před 5 měsíci
Classes and Objects
Double Linked List - insertion at tail
zhlédnutí 94Před rokem
Double Linked List - insertion at tail
Double Linked List - insertion at head
zhlédnutí 56Před rokem
Double Linked List - insertion at head
instructions for assignment
zhlédnutí 118Před rokem
instructions for assignment
DA_Lec07 - Normal Distribution
zhlédnutí 82Před rokem
DA_Lec07 - Normal Distribution
DA_Lec06 - Introduction to Probability PMF PDF CDF
zhlédnutí 87Před 2 lety
DA_Lec06 - Introduction to Probability PMF PDF CDF
DA_Lec05 - Descriptive Analytics
zhlédnutí 79Před 2 lety
DA_Lec05 - Descriptive Analytics
DA_Lec04 - Measurement Scales
zhlédnutí 80Před 2 lety
DA_Lec04 - Measurement Scales
DA_Lec03 - Data Types
zhlédnutí 85Před 2 lety
DA_Lec03 - Data Types
DA Lec02- Data Analytics Types
zhlédnutí 136Před 2 lety
DA Lec02- Data Analytics Types
DA Lec01- Course Overview
zhlédnutí 205Před 2 lety
DA Lec01- Course Overview
Binary Search Tree(BST) Deletion with program
zhlédnutí 290Před 2 lety
Binary Search Tree(BST) Deletion with program

Komentáře

  • @narahari3157
    @narahari3157 Před 2 dny

    How 2G is (0,4)

  • @adityasareen5638
    @adityasareen5638 Před 14 dny

    why didnt we consider dependents_of in the 1:N relationships?

    • @aksharacsit
      @aksharacsit Před 14 dny

      @@adityasareen5638 that is already covered while covering weak entity dependent. Please check from 4:50

  • @Sahnas_05
    @Sahnas_05 Před 26 dny

    Thanks Alot 🇱🇰❤️

  • @DharshiniSSecA
    @DharshiniSSecA Před měsícem

    Sir want full java topic videos please!❤

    • @aksharacsit
      @aksharacsit Před měsícem

      @@DharshiniSSecA ok I will try to add

    • @DharshiniSSecA
      @DharshiniSSecA Před měsícem

      @@aksharacsit Thankyou sir ,& my exams coming this month.kindly do as soon as possible sir!🙏

  • @thermaltechs
    @thermaltechs Před měsícem

    Thanks Brother, very nice

  • @arshyaseen4345
    @arshyaseen4345 Před měsícem

    loveeee<3

  • @learn_something_g
    @learn_something_g Před 2 měsíci

    What is the use of "element" variable?

    • @aksharacsit
      @aksharacsit Před 2 měsíci

      It just variable to hold the value of data part of priority queue node.

    • @learn_something_g
      @learn_something_g Před 2 měsíci

      @@aksharacsit Why we need "element" variable even we did not used for operation?

    • @aksharacsit
      @aksharacsit Před 2 měsíci

      @@learn_something_g in real world programming it would be some thin like employee , student or any other object. Those objects will be stored in datastructure based on priority by using priority queue. Here priority or next fields are used to build priority queue datastructure. But our ultimate goal is to handle data(objects like employee, students) to hold that objects we need element field. To make program simple we are not considering objects inplace of that we are using simple integer element. In our program we assigned element to the priority queue data field we are using that.

    • @learn_something_g
      @learn_something_g Před 2 měsíci

      @@aksharacsit Could you please make a video for explaining my doubt? I didn't understand what you said.

    • @aksharacsit
      @aksharacsit Před 2 měsíci

      @@learn_something_g I will try to make a video on that. But it may take time. In priority queue node 3 fields are there Data field ->it will hold the actual data(object information). This is the important one To assign value to priority queue node data field we used element nn->data= element; In the create node function Priority field ->while storing data into our data structure it decide order Next filed -,> to hold the next node value(here we are using linked list to implement priority queue.

  • @ENagamani-yl1ub
    @ENagamani-yl1ub Před 2 měsíci

    Thank u for wonderful video😊

  • @usamashakeel9747
    @usamashakeel9747 Před 3 měsíci

    So exellent If I have choice of 100 subscriber.I subscribe 100 time this chanel 🥰😊

  • @rijasohail577
    @rijasohail577 Před 3 měsíci

    Thankyou!

  • @DeepakGanesh-hg7tm
    @DeepakGanesh-hg7tm Před 3 měsíci

    omg

  • @mashaimjavaid1256
    @mashaimjavaid1256 Před 3 měsíci

    How to perform DES decryption can you provide a video for that also

  • @mashaimjavaid1256
    @mashaimjavaid1256 Před 3 měsíci

    Amazingly Explained keep it up 👍

  • @TimelessTales918
    @TimelessTales918 Před 3 měsíci

    The explanation of the math is too fast

  • @szymonfrydrych2444
    @szymonfrydrych2444 Před 3 měsíci

    Good tutorial ❤

  • @akashsivatejajayampu2444
    @akashsivatejajayampu2444 Před 4 měsíci

    Sir what about weak entity

    • @aksharacsit
      @aksharacsit Před 4 měsíci

      Weak entity starts at @ 4:15 minutes

  • @pratyushranjan150
    @pratyushranjan150 Před 4 měsíci

    thank you 🙌🙌🙌

  • @khalidmuzemil9020
    @khalidmuzemil9020 Před 4 měsíci

    sir I want to ask do we always ignore the derived attribute

    • @abduraheemhussein3872
      @abduraheemhussein3872 Před 4 měsíci

      In ER (Entity-Relationship) mappings, derived attributes are typically not included as separate attributes in the entity model. Derived attributes are calculated or derived from other attributes in the entity, and they do not represent stored data in the database. Instead of including derived attributes in the entity model, they often calculated on-the-fly when needed or stored in a separate table or view. Including derived attributes in the entity model can lead to redundancy and potential data inconsistency.

    • @aksharacsit
      @aksharacsit Před 4 měsíci

      Yes derived attributes will not be stored in database, but derived attribute values will be calculated based on already existing data. So in this relational mapping we will ignore derived attributes.

    • @khalidmuzemil9020
      @khalidmuzemil9020 Před 4 měsíci

      thank you

  • @khalidmuzemil9020
    @khalidmuzemil9020 Před 4 měsíci

    thank you very very very very very very much sir

  • @RahulChauhan-co3xg
    @RahulChauhan-co3xg Před 4 měsíci

    super Anna🔥🇮🇳

  • @blessy_clicks
    @blessy_clicks Před 4 měsíci

    Too perfect sir,awesome

  • @Mayank_Vij
    @Mayank_Vij Před 4 měsíci

    Please make videos on concurrency and recoverability techniques also

    • @aksharacsit
      @aksharacsit Před 4 měsíci

      I will do. Thank you for watching

  • @jiwaninabil4244
    @jiwaninabil4244 Před 4 měsíci

    how did you obtain s1 = 0.05 and s2 =0.11

    • @aksharacsit
      @aksharacsit Před 4 měsíci

      Here s1 and s2 are sample standard deviations. By using standard deviation formula for above data you can find

  • @MuhammadRizwan-ph7uv
    @MuhammadRizwan-ph7uv Před 4 měsíci

    Plz provide me the pdf from you teach plz sir

  • @anhquanpham8146
    @anhquanpham8146 Před 5 měsíci

    Very great video man, subscribed!

  • @tommytommy1355
    @tommytommy1355 Před 5 měsíci

    Thank you

  • @yatidesigns8873
    @yatidesigns8873 Před 5 měsíci

    thank you a lot! very good explentaion! helped me with a project!!!

  • @shyamjigupta9062
    @shyamjigupta9062 Před 5 měsíci

    Very nice complete tutorial .....

  • @indiajackson5959
    @indiajackson5959 Před 5 měsíci

    Great explanation

  • @1997DS
    @1997DS Před 5 měsíci

    First walk-through of a complete computation example in LSTM seen! Nice work and very helpful :)

  • @user-ut6jl7jm3s
    @user-ut6jl7jm3s Před 6 měsíci

    Do you have like this video but for other example? Library or hospital or something

  • @xsba7
    @xsba7 Před 6 měsíci

    Thank you so so so muchhhh, tomorrow's my exam and you've been really helpful with explaining

  • @user-dm1zy2qj5r
    @user-dm1zy2qj5r Před 6 měsíci

    Well helped

  • @abhivishwa112
    @abhivishwa112 Před 6 měsíci

    What a neat explanation!! Thank you 🙏

  • @ravi1212
    @ravi1212 Před 6 měsíci

    Thank You sir, now i can understand any ER diagram ❤

  • @likhithS2321
    @likhithS2321 Před 6 měsíci

    thank you sir! you saved me from the internals

  • @jeevanmv4529
    @jeevanmv4529 Před 7 měsíci

    🔥🔥🔥

  • @user-oj6qd8ie2x
    @user-oj6qd8ie2x Před 8 měsíci

    Thanks sir 👍

  • @5pointpulse-75
    @5pointpulse-75 Před 8 měsíci

    Thank you so much! ☺

  • @mahadsohail7205
    @mahadsohail7205 Před 8 měsíci

    Best explanation w.r.t (Ramez Elmasri, Fundamentals of Database Systems (7 th Edition)) book

  • @oshadhaedirisinghe1455
    @oshadhaedirisinghe1455 Před 8 měsíci

    Thank you

  • @serhattatas5123
    @serhattatas5123 Před 9 měsíci

    Great video dude ! 1000x Better than my prof.

  • @ngakanmadekrisnasedana7017
    @ngakanmadekrisnasedana7017 Před 9 měsíci

    how can you find the value of wf and bf?

    • @aksharacsit
      @aksharacsit Před 9 měsíci

      Initially wf and bf values will be randomly assigned they will be adjusted(learned) during training process based on output. Wf and bf are weight matrices like normal weights in neutral networks. They will be configured during training.

  • @anasaljumaili5518
    @anasaljumaili5518 Před 9 měsíci

    Great explanation

  • @rupatailichode6235
    @rupatailichode6235 Před 9 měsíci

    Good work

  • @zuhaibraza4353
    @zuhaibraza4353 Před 10 měsíci

    Loray Hindi bolo English ki maa behn ek karna lazmi hai

  • @silver_shades4971
    @silver_shades4971 Před 11 měsíci

    Thank you❤🙏

  • @PODOCAST-TUBE
    @PODOCAST-TUBE Před 11 měsíci

    Thank you sir

  • @nadranaj
    @nadranaj Před 11 měsíci

    great explanation with go illustrations and annotating

  • @sriramayeshwanth9789

    This is the best video for RNN. I have been going through many videos but was facing a hard time in understanding. Thanks a lot.