Fibonacci Series : 0 0 1 1 2 3 5 8 13 21 34 Program To Print Fibonacci Series in Java Language in two ways First is with the help of for loop and another one is with the help Read More …
Author: flizzindia
Top 10 CBSE Schools in Dehradun (India)
1.The Asian School Address- “Asian Acres“, Vasant Vihar (Indira Nagar), Dehra Dun – 248006, Uttaranchal – INDIA Contact no- 91-135 – 2761859 Email– info@theasianschool.net, theasianschool@gmail.com Website– www.theasianschool.net 2. The Doon International School Address- Pari Mahal’ 32- Curzon Road, Dehra Dun-248001 INDIA Contact no- 0135-2658491/ 2656088 Fax- 0135-2655392 Read More …
Compiler vs Interpreter : Difference Between Compiler and Interpreter
Compiler vs Interpreter No Compiler Interpreter 1 Compiler Takes Entire program as input Interpreter Takes Single instruction as input . 2 Intermediate Object Code isGenerated No Intermediate Object Code is Generated 3 Conditional Control Statements are Executes faster Conditional Control Statements Read More …
LIST OF IMPORTANT DAYS FOR COMPETITIVE EXAMS AND SSC IBPS
JANUARY : 1) 12th January- National Youth day (Birthday of Vivekananda). 2) 15th January- Army day. 3) 24th Jan- National Girl Child Day. 4) 25th January- National tourism day/ Voters day 5) 30th January- National Martyrs day and World anti Read More …
Some Interesting Facts about English grammar Unknown facts
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 …
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(); }