If the kinetic energy of a moving body becomes four times its initial kinetic energy,then the percentage of change in its momentum will be#include stdio.hint main(){char *variable = "sookshmas";}
Find the output of the code:-#include iostreamusing namespace std;typedef struct book{int piece;double price;}sb;int main(){sb book;book.piece = 5;book.price = 45;cout book.price " " book.pieceendl;return 0;}
class leftshift_operator{public static void main(String args[]){byte x = 64;int i;byte y;i = x 2;y = (byte) (x 2)System.out.print(i + " " + y);}}