Java Hyd Team
746 subscribers
986 photos
39 videos
670 files
690 links
https://teamhydteam.my.canva.site/

Can visit us on our website 😊
Still working on it 😊
Download Telegram
Please answer carefully don't miss the common interview question It must be asked at least once in any level of interview
Abstract class Interface
1) Abstract class can have abstract and non-abstract methods. Interface can have only abstract methods. Since Java 8, it can have default and static methods also.
2) Abstract class doesn't support multiple inheritance. Interface supports multiple inheritance.
3) Abstract class can have final, non-final, static and non-static variables. Interface has only static and final variables.
4) Abstract class can provide the implementation of interface. Interface can't provide the implementation of abstract class.
5) The abstract keyword is used to declare abstract class. The interface keyword is used to declare interface.
6) An abstract class can extend another Java class and implement multiple Java interfaces. An interface can extend another Java interface only.
7) An abstract class can be extended using keyword "extends". An interface can be implemented using keyword "implements".
8) A Java abstract class can have class members like private, protected, etc. Members of a Java interface are public by default.
9)Example:
public abstract class Shape{
public abstract void draw();
} Example:
public interface Drawable{
void draw();
}
Example of abstract class and interface in Java
Let's see a simple example where we are using interface and abstract class both.

//Creating interface that has 4 methods
interface A{
void a();//bydefault, public and abstract
void b();
void c();
void d();
}

//Creating abstract class that provides the implementation of one method of A interface
abstract class B implements A{
public void c(){System.out.println("I am C");}
}

//Creating subclass of abstract class, now we need to provide the implementation of rest of the methods
class M extends B{
public void a(){System.out.println("I am a");}
public void b(){System.out.println("I am b");}
public void d(){System.out.println("I am d");}
}

//Creating a test class that calls the methods of A interface
class Test5{
public static void main(String args[]){
A a=new M();
a.a();
a.b();
a.c();
a.d();
}}
Java Hyd Team pinned «How to achieve 100% abstraction??»
Java Hyd Team
How to achieve 100% abstraction??
Must answer guy's 😊 don't miss it
Whatever i do share here in channel is for hardcore interview questions
Java Hyd Team
How to achieve 100% abstraction??
If I do not get a response surely this is the last time you will get updates about jobs , interview questions, or even in class concept clearing
Whoever you are i don't give a damn i will never respond so do respond on that poll
The game is rigged, but that doesn't mean you shouldn't play.

Learn the rules, network like hell, and make moves.
Java Hyd Team
The game is rigged, but that doesn't mean you shouldn't play. Learn the rules, network like hell, and make moves.
This is for those who think only few members are getting the opportunity to get a job we are not privileged for the job or interview we do learn n implement things for the job if you can beat 8rounds of interview you can also join let me know i will personally send your resume with a good remark of yours on HR mind
Java Hyd Team
How to achieve 100% abstraction??
14 people saw this poll out of 14 only 3 voted and rest 11 things we are privileged to get a job think wisely before uttering a single word we are ready to push you to next level but you guys have to come ahead then only we can offer you the best
Who the hell will provide you videos for each concept, hand written notes with diagram and everything possible that we can do


You might think that we have a good connection with people but definitely we made that happen they know what we deliver what we are pushing if someone is having issues with me let me know please don't tell to someone your image will only be down for me n literally i don't care because that creates some red mark on your profile only don't be nibba nibbi here those day's gone be professional
We are not here to entertain we are here to push you all to the next level of organisation with a good package with a attitude to reject something that you don't want if you want us to push you please be active else message me in person I will remove everyone because I have a team to care for n that'also is good if i can push 10 members of my team i can push rest 112 members also take it as an opportunity not as something school ki baatein
What we want you all to be you will remember for almost 5 years from now 😊
You can ask any of my teammates who followed me they have a great change in concepts and coding skills if they will give level easy questions also 95% of members can't do those questions
No More updates here 😊 have a great time ahead you are all super good
join this i will update every program here asap by sunday
This media is not supported in your browser
VIEW IN TELEGRAM
▲illustration of data processing from raw to end user▲

its step by step process how data flows from data source.

• data source: data source is simply the source of the data.

•data loaders: data loader is a application for the bulk import or export of data.

•data lake: a data lake is a centralized repository designed to store, process, and secure large amounts of structured, semi structured, and unstructured data.

• data visualization: data visualization is a way to represent information graphically, highlighting patterns and trends in data.

• ml development: machine learning deals with the issue of how to build computer programs that improve their performance at some tasks through experience.
graphic credit: semantix (data platform)
this infographics delivers highly valuable information to understand the flow of data.
tags-
#data #engineering #analytics #science #intelligence #visualization #machinelearning #bigdata #dataengineering #computing #datascience #dataanalytics #datamining #ai #ml #learning