ITITest

  • Home
  • Tutorials
    • Tutorial
      • JavaScript
        • Chapter 1 : (Intruduction , data type,variables and operators)
        • Chapter-2 If-Else(Decision Control Statement)
        • Chapter-3 Switch-Case(Selection Statement)
        • Chapter-4 Loop Statements (while, do-while and for loop)
      • CSS
    • Video Tutorial
      • Apprenticeship Videos for Candidate
      • Official Videos
      • Visual Basic For Application Tutorials
  • Exam
  • Custom Exam
  • Download



  • Write a program to print Hello world five times using any loop?    
  • Write a program to print 1-10 using while loop?    
  • Write a program to print 1-100 using while loop?    
  • Write a program to print 1-100 using for loop?    
  • Write a program to print 1-100 even numbers using while loop?    
  • Write a program to print 1-100 even numbers using do-while loop?    
  • Write a program to print 1-100 odd numbers using for loop?    
  • Write a program to print 1-100 odd numbers using while loop?    
  • Write program to print numbers which are divisible by 5 and 11 upto 500?    
  • Write program to print numbers which are divisible by 3,6 and 9 upto 500 using any loop?    
  • Write a program to display the number in reverse order?    
  • Write a program to print 10 mutilples or table of given number?    
  • Write a program to obtain factorial of given number?    
  • Write a program to find GCD(Greatest Common divisor) of any two numbers?    
  • Write a program to find HCF (Highest Common Factor) of two numbers?    
  • Write a program to find LCM of any two numbers?    
  • Write a program to find LCM of any two numbers using HCF?    
  • Write a program to check whether a number is a Strong Number or not?    
  • Write a program to check whether a given number is an armstrong number or not ?    
  • Write a program to print Armstrong number upto 1000 ?    
  • Write a program to check given number is palindrome or not?    
  • Write a program to print palindrome numbers upto 1000 ?    
  • Write a program to find the given number perfect number or not ?    
  • Write a program to find the perfect numbers within a given number of range ?    
  • Write a program to check given number is prime or not ?    
  • Write a program to print prime numbers 1 to 100 using loop ?    
  • Write a program to find out the sum of an A.P. (Arithmetic Progression) series in javaScript ?    
  • Write a program to find the Sum of GP (Geomatric Progression) series in javaScript ?    
  • Write a program to find the sum of first 10 natural numbers?    
  • Write a program to Display n natural numbers and their sum and their sum?    
  • Write a program to a program to display the n terms of square natural number and their sum ?    
  • Write a program to display the n terms of odd natural number and their sum ?    
  • Write a program to display the n terms of even natural number and their sum ?    
  • Write a program to display the n terms of harmonic series and their sum ?    
  • Write a program to find the sum of the series [ x - x^3 + x^5 + ......] in javaScript ?    
  • Write a program to find the sum of the series 1 +11 + 111 + 1111 + .. n terms in javaScript ?    
  • Write a program to display the first n terms of Fibonacci series in javaScript ?    
  • Write a program to display binary euivalents of decimal upto 20 in javaScript ?    
  • Write a program to display display binary euivalents of decimal upto 20 in javaScript?    
  • Write a program to display octal euivalents of decimal upto 20 in javaScript?    
  • Write a program to display Hexadecimal euivalents of decimal upto 20 in javaScript?    
  • Write a program to display binary, octal and hexadecimal euivalents of decimal upto 20 in javaScript?    
  • Write a program to display the pattern like right angle triangle using an asterisk. The pattern like
    *
    **
    ***
    ****
    *****
    in javaScript?    
  • Write a program to display the pattern like right angle triangle using an asterisk. The pattern like
    *****
    ****
    ***
    **
    *
    in javaScript?    
  • Write a program to display the pattern like right angle triangle using an asterisk. The pattern like
           *
         **
       ***
     ****
    *****
    in javaScript?    
  • Write a program to display the pattern like right angle triangle using an asterisk. The pattern like
    *****
    *****
    *****
    *****
    *****
    in javaScript?    
  • Write a program to display the pattern like right angle triangle using an asterisk. The pattern like
           *
         ***
       *****
     *******
    *********
    in javaScript?    
  • Write a program to display the below pattern using an asterisk. The pattern like
        *
       ***
      *****
     *******
    *********
    in javaScript?    
  • Write a program to display the below pattern using an asterisk. The pattern like
              1
           2 3 2
         3 4 5 4 3
      4 5 6 7 6 5 4
    5 6 7 8 9 8 7 6 5
    in javaScript?    
  • Write a program to display the below pattern using an asterisk. The pattern like
    *********
     *******
       *****
         ***
           *
  • Write a program to display the below pattern using an asterisk. The pattern like
    * * * * * 
    * * * * 
    * * * 
    * * 
    * 
  • Write a program to display the below pattern using numbers. The pattern like
    1 2 3 4 5 
    1 2 3 4 
    1 2 3 
    1 2 
    1 
  • Write a program to display the below pattern using numbers. The pattern like
           *
         *  *
       *      *
     *          *
    *********
  • Write a program to display the below pattern using numbers. The pattern like
    1
    1 2
    1 2 3
    1 2 3 4
    1 2 3 4 5
  • Write a program to display the below pattern using numbers. The pattern like
    *
    **
    ***
    ****
    *****
    ****
    ***
    **
    *
  • Write a program to display the below pattern using numbers. The pattern like
             *
           **
          ***
        ****
      *****
        ****
          ***
           **
             *
  • Write a program to display the below pattern using numbers. The pattern like
            *
           ***
         *****
        *******
      *********
        *******
         *****
           ***
            *
  • Write a program to display the below pattern using numbers(Flyod's Triangle). The pattern like
    1
    2 3
    4 5 6
    7 8 9 10
  • Write a program to display the below pattern using numbers(Pascal Triangle). The pattern like
           1
         1  1
        1  2  1
      1  3  3  1
     1  4  6  4  1

Try It

© Copyright ITITest. All Rights Reserved