Python allows string slicing. What is the output of the code given below?s='acpbuzx ehicapo' print(s[3:5])
#include <iostream>using namespace std;int main(){int g = 8;int & aref = g;g++;cout << "Value is: " << aref;return 0;}
#include <iostream>using namespace std;int main(){int arr[] = {1, 2, 3, 4};int *g = (arr + 1);cout << *arr + 8;return 0;}
#include <stdio.h>#include <ctype.h>int main (){int i = 0;int cx = 0;char str[] = "Sook..., Beyond knowing!";while (str[i]){if (ispunct(str[i])) cx++;i++;}printf ("%d\n", cx);return 0;}
#include <iostream>#include <string>using namespace std;int main (){string mys;char mya[20]= "Kulkarni";mys = mya;cout << mys << '\n';return 0;}
#include <stdio.h>int main() {int x=10,y=20,z=5,i;i=x<y<z;printf("%d\n",i);return 0;}