You might be the one who gets messages from your friends with a link to various websites, and ask us to answer the questions. If the one who sent you is your dear mate or your girl, and imagine you get a very low score. One of such website is QZingo. Have you ever wished to get a high score to stand in the first of the list, Then here is a trick I found after learning how the website's code works. 1) just paste the QId ( asters in the URL. example, URL : http://www.qzingo.com/quiz/****** ) 2) Fill in your name. 3) Enter your score you desire of. (non-negative numbers.. can even try a very large number :P ) click on submit. That's it. https://anvesh1212.github.io/QZingo-Hack/ How the trick works : When you take a look at the source code of the webpage, you can see all the questions in a JSON type. you can also find the Answers for chosen questions in a array named "aids". you can also see a lot of Java...
Week 1 a) C program to find sum of individual digits of a number #include<stdio.h> int main() { int n,t,sum=0,rem; printf("enter the number:"); scanf("%d",&n); t=n; while(t!=0) { rem=t%10; sum=sum+rem; t=t/10; } printf("sum of the digits:%d",sum); } OUTPUT b) fibinacci sequence first n numbers #include<stdio.h> main() { int n,first=0,second=1,next,c; printf("enter the no of terms of the sequence:"); scanf("%d",&n); for(c=0;c<n;c++) { if(c<=1) next=c; else { next=first+second; first=second; second=next; } printf("%d\n",next); } return 0; } OUTPUT c) C program to generate prime numbers between 1 and n #include<stdio.h> int main() { int n, i = 3, count, c; printf("Enter the number of prime numbers required\n"); scanf("%d",&n); if ( n >= 1 ) { ...