Welcome to FlizzIndia Here we have Latest Some Interesting Facts about English Grammar. As we all know that english is one of the most important part of our life as well as for Competitive Exams English is must to crack Read More …
Blog
Top 100 Most Important GK Questions for Competitive Exams
Top 100 GK Questions and Answers 2017 For Competitive Exams 1. Mahatma Gandhi International Centre (MGIC) was recently inaugurated at which of the following country? A. Nepal B. Sri Lanka C. Bangladesh D. Myanmar Answer : B 2. Union Human Read More …
Abbreviations of Computer Related Acronyms | Full Form
*HTTP – Hyper Text Transfer Protocol. * HTTPS – Hyper Text Transfer Protocol Secure. * IP – Internet Protocol. * URL – Uniform Resource Locator. * USB – Universal Serial Bus. * VIRUS – Vital Information Resource Under Seized. * Read More …
C Program to find Factorial of a Number
#include<stdio.h> #include<conio.h> void main() { clrscr(); int i,fact=1,n; printf(“enter the number”); scanf(“%d”,&n); for(i=1;i<=n;i++) { fact=fact*i; } printf(“the factorial of thee number is %d”,fact); getch(); }
LIST OF MAJOR OIL REFINERIES in INDIA | GK for Competitive Exams
1. Indian Oil Corporation Limited : Bihar : Barauni 2. Indian Oil Corporation Limited : Gujarat : Koyali 3. Indian Oil Corporation Limited : West Bengal : Haldia 4. Indian Oil Corporation Limited : Uttar Pradesh : Mathura 5. Indian Read More …
C Program to Print Table of any Number
#include<stdio.h> #include<conio.h> void main () { clrscr(); int i,n,c; printf(“Enter the number”); scanf(“%d”, &n); for(i=1;i<=10;i++){ c=n*i; printf(“%dX%d=%d \n”,n,i,c ); } getch(); }
C Program to Print Fibonacci Series | O Level Examination
#include<conio.h> #include<stdio.h> void main() { int prev,next,sum,n,i; prev=next=1; for(i=1;i<=10;i++) { printf(“%d,\t”,prev); sum=prev+next; prev=next; next=sum; } getch(); }
C Program to design Stop Watch (Clock)
#include<stdio.h> #include<conio.h> #include<dos.h> void main(){ int i,j,k; for(i=0;i<=24;i++){ for (j=0;j<=60;j++){ for(k=0;k<=60;k++){ printf(“%d:%d:%d”,i,j,k); delay(1000); clrscr(); } } } getch(); }
Possessive Nouns English Grammar for Competitive Exams
The possessive form is used with nouns referring to people, groups of people, countries, and animals. It shows a relationship of belonging between one thing and another. To form the possessive, add apostrophe + s to the noun. Possessive nouns Read More …
Present Perfect Continuous Tense English Grammar in Hindi Present Tense
Present Perfect Continous is used to indicate that some action in the current time has been going on for some time and is not yet over. Present Perfect Continous (सतत् पूर्ण वर्तमान) उन कार्यों के बारे में बताता है जो Read More …