Thursday, 28 February 2019

Prime Number using Python Program! 


i = 2
x = int(input('Please enter the number:'))
while i<=x:
    prime = True
    for tem in range(2,i):
        if i%tem == 0:
            prime = False

    if prime==True:
        print(i)
    i+=1
OUTPUT:
Please enter the number:23
2, 3, 5, 7, 11, 13, 17, 19, 23

Sunday, 17 February 2019

Angular 7 + FIreBase + Bootstrap CRUD web application

Angular 7 + FIreBase + Bootstrap 4 CRUD Web application :

You can Download and use this Application on you local.

Requirements: Node, Angular CLI

For MAC : On command line Go to folder and run command - npm i after  npm serve.

For Window :  On command line Go to folder and run command - npm i after  npm serve.

Rep Link:
https://github.com/amit-kumar-dubey/Angular-7-FIreBase-Bootstrap-4-CRUD- 

Wednesday, 20 January 2016