What will be the output of the following C++ code?

#include <iostream> #include <string> using namespace std; int main(int argc, char const *argv[]) { char s1[6] = “Hello”; char s2[6] = “World”; char s3[12] = s1 + ” ” + s2; cout<<s3; return 0; } a) Hello b) World c) Error d) Hello World

 What is virtual inheritance in C++?

a) C++ technique to enhance multiple inheritance b) C++ technique to ensure that a private member of the base class can be accessed somehow c) C++ technique to avoid multiple inheritances of classes d) C++ technique to avoid multiple copies of the base class into children/derived class

What is C++?

a) C++ is an object oriented programming language b) C++ is a procedural programming language c) C++ supports both procedural and object oriented programming language d) C++ is a functional programming language