Channel Avatar

anooptube @UCtJfJISN8I-O31cjAy7tJ0Q@youtube.com

6.5K subscribers - no pronouns :c

Hello, welcome to my Channel AnoopTube...! This is a Malayal


Welcoem to posts!!

in the future - u will be able to do some more stuff here,,,!! like pat catgirl- i mean um yeah... for now u can only see others's posts :c

anooptube
Posted 2 weeks ago

Flutter development videos iniyum cheyyano?

0 - 0

anooptube
Posted 7 months ago

Python Number Patterns Video coming..... today 07.00 PM
https://youtu.be/P89mWRPp87I

6 - 1

anooptube
Posted 7 months ago

What is the output of the following C++ code snippet?
#include <iostream>
int main() {
int arr[] = {1, 2, 3, 4, 5};
int *p = arr + 3;
std::cout << *p;
}

26 - 4

anooptube
Posted 7 months ago

In C++, what is the effect of the following code snippet on memory?
#include <iostream>

int main() {
int *p = new int(9999);
delete p;
int *q = new int(57);
*q = 10000;
std::cout << "p = " << p << std::endl;
std::cout << "q = " << q << std::endl;

std::cout << *p << std::endl;
std::cout << *q << std::endl;

delete q;

return 0;
}

11 - 5

anooptube
Posted 7 months ago

In C++, which of the following correctly deallocates memory allocated for an integer pointer p?

18 - 0

anooptube
Posted 7 months ago

Which of the following statements about references is true?

10 - 5

anooptube
Posted 7 months ago

What is a dangling pointer?

21 - 6

anooptube
Posted 7 months ago

How do you dynamically allocate an array of 10 integers in C++?

30 - 24

anooptube
Posted 7 months ago

Which of the following statements about constructors and destructors in C++ is true?

33 - 0

anooptube
Posted 7 months ago

Which OOP concept allows the same operation to be carried out differently depending on the object?

48 - 0