Learn coding shorts

You're welcome. This channel provides knowledge of computer programming and CS/ IT subjects beneficial for all learners 🎯💯

Give your support & subscribe the channel for more updates.



Learn coding shorts

When a pop() operation is called on an empty queue, what is the condition called?

1 year ago | [YT] | 2

Learn coding shorts

#Quiz Q-> 1

#include <stdio.h>

int main() {

int a = 3, b = 5;

int t = a;

a = b;

b = t;

printf("%d %d", a, b);

return 0;

}

1 year ago | [YT] | 1

Learn coding shorts

Which operator a pointer object of a class uses to access its data members and member functions?

1 year ago | [YT] | 1

Learn coding shorts

What is meant by multiple
inheritance?

1 year ago | [YT] | 25

Learn coding shorts

Q. Write a C program to find out the sum all even elements from an array.


https://youtu.be/dM3se564GG4?si=-DsTH...

1 year ago | [YT] | 1

Learn coding shorts

The data members and functions of a class in C++ are by default ?

1 year ago | [YT] | 1

Learn coding shorts

In c++ how many parameters does a default constructor require ? #cpp

1 year ago | [YT] | 11

Learn coding shorts

What happens if a user forgets to define a constructor inside a class ?

1 year ago | [YT] | 5

Learn coding shorts

What is the correct way to perform inheritance in C++?

1 year ago | [YT] | 2