This channel is my personal space where I share whatever I know about technology, coding, and computer science ConcepT. My goal is to make complex topics simple for everyone ~ mcaZz
⚠️ Disclaimer:
Everything I share here is definitely purely for the educational purposes & For the love of my learning
I do not support piracy in any way.
If I ever talk about paid software or games,
it's only to understand the tech behind it.
Please support the respective developers by purchasing their software. They work hard to create the tools and games we love 💕
MCA ZZ
What is the output of the following Java code?
class A {
public void show() {
System.out.println("A");
}
}
class B extends A {
public void show() {
System.out.println("B");
}
}
public class Main {
public static void main(String[] args) {
A a = new B();
a.show();
}
}
8 months ago | [YT] | 1
View 0 replies
MCA ZZ
Remember Always 🌟
1- Control yourself not others
2- Expect nothing appreciate everything
3- Do your best and trust the process
4- Learn to react less
5- Stop telling people everything
6- Choose your friend's wisely
1 year ago | [YT] | 1
View 0 replies
MCA ZZ
CURIOUS -- HOW TO SEND COMPLETE FOLDER TO WHATSAPP https://www.youtube.com/watch?v=-ruJ7...
1 year ago | [YT] | 1
View 0 replies
MCA ZZ
Consider a system that uses 5 bits for representing signed integers in 2’s complement format. In this system, two integers A and B are represented as A=01010 and B=11010. Which one of the following operations will result in either an arithmetic overflow or an arithmetic underflow?
CHECKOUT https://www.youtube.com/watch?v=YG2jp...
1 year ago | [YT] | 1
View 0 replies