Q What speed of a satellite is increased by x percentage it will escape from its orbit where the value of x is.(a)11.2%(b)41.4%(c)27.5%(d)34.4%class classy:def __init__(self, id):self.id = str(id)id="625"t= classy(10)print(t.id)
#include <stdio.h>int main(){char a[50]={"Beyond Knowing"};char *ptr;ptr=a;ptr+=7;printf("%s",ptr);return 0;}