What will be the output of the following Python code?class tester:def __init__(self, id):self.id = str(id)id="165">>>temp = tester(12)>>>print(temp.id)

What is output of below code?int main(){char name[]="sookshmas";int len;int size;len = strlen(name);size = size_of(name);printf("%d,%d",len,size);return 0;}