Learning and Teaching Coding

Let’s Learn coding together πŸ‘©πŸ»β€πŸ’» πŸ‘©πŸ»β€πŸ’» :))


In this YouTube channel, learners and coders can find and learn various programming languages and concepts. This YouTube channel specially designed to break down complex concepts into simple and easy to understand explanations way through videos. I will shared number of tutorials on various topics and examples in a simple way. Hope it might be helpful for learners and coders. Also I will shared number of cue cards for IELTS in a simple way. If you guys have any suggestion for this channel, please share your ideas with me I would like to know that 😊

Contents of this YouTube Channel:

πŸ‘‡πŸ‘‡πŸ‘‡

β€’ C
β€’ Java
β€’ English


Press the bell icon button πŸ”” for more new videos and updates.

LIKE | SHARE | SUBSCRIBE TO MY YOUTUBE
CHANNEL


Learning and Teaching Coding

Hello guys!!!

What is the output of the following code below?

comment your answer in comment box :)
=====================================

class Vehicle {

public void display_Info() {

System.out.println(β€œIt is a Vehicle...”);

}

}

class Car extends Vehicle {

public void display_Info() {

System.out.println(β€œIt is a car...”);

}

}

class Test {

public static void main(String[] args) {

Car c = new Car();

c.display_Info();

}

}

1 year ago (edited) | [YT] | 3

Learning and Teaching Coding

In which of the following languages is function overloading not possible?

1 year ago | [YT] | 2

Learning and Teaching Coding

How are "String" represented in memory in C language?

1 year ago | [YT] | 1

Learning and Teaching Coding

What is the output of the following code below?

#include<stdio.h>
void main() {
int sum = 2 + 8 / 2 + 6 * 3;
printf("%d", sum);
}

1 year ago | [YT] | 4

Learning and Teaching Coding

What is the output of the following code below?

#include <stdio.h>
void main() {
int a[] = {1, 2, 3, 4,5};
int sum = 0;
for(int i = 0; i < 4; i++) {
sum += a[i];
}
printf("%d", sum);
}

1 year ago | [YT] | 4

Learning and Teaching Coding

What does the following declaration indicate?

int x = 7;

1 year ago | [YT] | 6

Learning and Teaching Coding

What will be the output of the following code below?

#include <stdio.h>
void practice() {
int a = 5;
int result = a++ + ++a + a++ + ++a;
printf("%d", result);
}
int main() {
practice();
return 0;
}

1 year ago | [YT] | 5

Learning and Teaching Coding

The Turbo C implementation of C language supports which files???

1 year ago | [YT] | 4

Learning and Teaching Coding

Hello Guys!!! Let's check your knowledge in C language

What will the output of below code??

#include <stdio.h>
#include <conio.h>

void main() {
int a = 3, b = 5;
int t = a;
a = b;
b = t;
printf("%d %d", a, b);
getch();


}

1 year ago | [YT] | 4

Learning and Teaching Coding

Hello Guys!!! this one is little tricky

Select all valid methods of String class.

2 years ago | [YT] | 4