LearnWithAnkit's profile picture. "A dedicated Software Engineer, passionate about creating innovative tech solutions."
MERN Stack Developer | Data Science | Generative AI

Ankit Anand

@LearnWithAnkit

"A dedicated Software Engineer, passionate about creating innovative tech solutions." MERN Stack Developer | Data Science | Generative AI

🌟 Open to Work 🌟 Looking for opportunities as a Software Developer | Full-Stack | Frontend | Backend Developer. Excited to contribute, learn & build impactful products! Let’s connect 🤝 #opentowork #hiring #SoftwareDeveloper #TechJobs Below is my Resume👇

LearnWithAnkit's tweet image. 🌟 Open to Work 🌟

Looking for opportunities as a Software Developer | Full-Stack | Frontend | Backend Developer.

Excited to contribute, learn & build impactful products!

Let’s connect 🤝
#opentowork  #hiring  #SoftwareDeveloper  #TechJobs 
Below is my Resume👇

Hey Everyone, Let's understand some basic Introduction of React.js. #Reactjs #Coding #webdevelopment #100DaysOfCode #Engineering

LearnWithAnkit's tweet image. Hey Everyone,
Let's understand some basic Introduction of React.js.
#Reactjs #Coding #webdevelopment #100DaysOfCode #Engineering

#100DaysOfCode #CodingJourney #dream #letsconnect Control Flow Question:- Write a program to print a hollow square star pattern with diagonals. Input : Enter number of rows: 5 Output : ***** ** ** * * * ** ** *****

LearnWithAnkit's tweet image. #100DaysOfCode #CodingJourney #dream #letsconnect           
Control Flow Question:-
  
Write a program to print a hollow square star pattern with diagonals.
Input : 
Enter number of rows: 5
Output :
*****
** **
* * *
** **
*****

#100DaysOfCode #CodingJourney #dream #letsconnect Control Flow Question:- Write a program to print a hollow square star(*) pattern series of N rows. Input : n=5 Output : ***** * * * * * * *****

LearnWithAnkit's tweet image. #100DaysOfCode #CodingJourney #dream #letsconnect          
 Control Flow Question:-

Write a program to print a hollow square star(*) pattern series of N rows.
Input :
n=5
Output :
*****
*     *
*     *
*     *
*****

#100DaysOfCode #CodingJourney #dream #letsconnect Control Flow Question:- Write a program to print a square star(*) pattern series of N rows. Input: n= 5 Output: ***** ***** ***** ***** *****

LearnWithAnkit's tweet image. #100DaysOfCode #CodingJourney #dream #letsconnect         
 Control Flow Question:-

Write a program to print a square star(*) pattern series of N rows.
Input:
n= 5
Output:
*****
*****
*****
*****
*****

#100DaysOfCode #CodingJourney #dream #letsconnect Control Flow Question:- Write a program to print all strong numbers between 1 to n where n is the input given by the user. Input n=1000 Output 1, 2, 145

LearnWithAnkit's tweet image. #100DaysOfCode #CodingJourney #dream #letsconnect         
Control Flow Question:-

Write a program to print all strong numbers between 1 to n where n is the input given by the user.
Input
n=1000
Output
1, 2, 145

#100DaysOfCode #CodingJourney #dream #letsconnect Control Flow Question:- Write a program to input a number from the user and check whether the given number is a strong number or not. Input: n= 145 Output: 145 is STRONG NUMBER

LearnWithAnkit's tweet image. #100DaysOfCode #CodingJourney #dream #letsconnect       
 Control Flow Question:-
Write a program to input a number from the user and check whether the given number is a strong number or not.
Input:
n= 145
Output:
145 is STRONG NUMBER

#100DaysOfCode #CodingJourney #dream #letsconnect Control Flow Question:- Write a program to find all Perfect numbers between 1 to n where n is the input given by the user. Input: n=100 Output: Perfect numbers between 1 to 100: 6, 28

LearnWithAnkit's tweet image. #100DaysOfCode #CodingJourney #dream #letsconnect       
Control Flow Question:-
Write a program to find all Perfect numbers between 1 to n where n is the input given by the user.

Input:
 n=100
Output:
Perfect numbers between 1 to 100: 6, 28

#100DaysOfCode #CodingJourney #dream #letsconnect Control Flow Question:- Write a program to input a number and check whether the number is a Perfect number or not. Input : Input a number: 6 Output : 6 is PERFECT NUMBER

LearnWithAnkit's tweet image. #100DaysOfCode #CodingJourney #dream #letsconnect       

Control Flow Question:-
Write a program to input a number and check whether the number is a Perfect number or not.
Input :
Input a number: 6
Output :
6 is PERFECT NUMBER

#100DaysOfCode #CodingJourney #dream #letsconnect Control Flow Question:- Write a program to print all Armstrong numbers between 1 to n where n is the input given by the user. Input: n= 1000 Output: 1, 2, 3, 4, 5, 6, 7, 8, 9, 370, 371, 407

LearnWithAnkit's tweet image. #100DaysOfCode #CodingJourney #dream #letsconnect       
Control Flow Question:-

Write a program to print all Armstrong numbers between 1 to n where n is the input given by the user.
Input:
n= 1000
Output:
1, 2, 3, 4, 5, 6, 7, 8, 9, 370, 371, 407

#100DaysOfCode #CodingJourney #dream #letsconnect Control Flow Question:- Write a program to input a number from the user and check whether the given number is an Armstrong number or not. Input Enter the number: 371 Output 371 is armstrong number

LearnWithAnkit's tweet image. #100DaysOfCode #CodingJourney #dream #letsconnect        
Control Flow Question:-
Write a program to input a number from the user and check whether the given number is an Armstrong number or not.

Input
Enter the number: 371
Output
371 is armstrong number

#100DaysOfCode #CodingJourney #dream #letsconnect Control Flow Question:- Write a program to input two numbers from the user and find HCF ( also called as GCD (Greatest Common Divisor)). Input:- num1: 12 num2: 30 Output:- GCD is 6

LearnWithAnkit's tweet image. #100DaysOfCode #CodingJourney #dream #letsconnect       
Control Flow Question:-

Write a program to input two numbers from the user and find HCF ( also called as GCD (Greatest Common Divisor)).
Input:-
num1: 12
num2: 30
Output:-
GCD is 6

#100DaysOfCode #CodingJourney #dream #letsconnect Control Flow Question:- Write a program to input two numbers from user and find LCM. Input: num1: 5 num2: 10 Output: LCM = 10

LearnWithAnkit's tweet image. #100DaysOfCode #CodingJourney #dream #letsconnect      
Control Flow Question:-

Write a program to input two numbers from user and find LCM.
Input:
num1: 5
num2: 10
Output:
LCM = 10

#100DaysOfCode #CodingJourney #dream #letsconnect Control Flow Question:- Write a program to input a number from user and find Prime factors of the given number. Input: num = 10 Output: Prime factors of 10: 2, 5

LearnWithAnkit's tweet image. #100DaysOfCode #CodingJourney #dream #letsconnect     
Control Flow Question:-

Write a program to input a number from user and find Prime factors of the given number.
Input:
num = 10
Output:
Prime factors of 10: 2, 5

#WebDevelopment #MERN #Coding Let's learn What is Programming?

LearnWithAnkit's tweet image. #WebDevelopment #MERN #Coding 
Let's learn

What is Programming?

#100DaysOfCode #CodingJourney #dream #letsconnect Control Flow Question:- Write a program to print all Prime numbers between 1 to n. Input: end = 20 Output: Prime numbers between 1-20: 2, 3, 5, 7, 13, 17, 19

LearnWithAnkit's tweet image. #100DaysOfCode #CodingJourney #dream #letsconnect    
Control Flow Question:-

Write a program to print all Prime numbers between 1 to n.
Input:
end = 20
Output:
Prime numbers between 1-20: 2, 3, 5, 7, 13, 17, 19

#100DaysOfCode #CodingJourney #dream #letsconnect Control Flow Question:- Write a program to input a number and check whether the number is prime number or not. Input: num = 17 Output: 17 is a prime number.

LearnWithAnkit's tweet image. #100DaysOfCode #CodingJourney #dream  #letsconnect   
Control Flow Question:-

Write a program to input a number and check whether the number is prime number or not.
Input:
num = 17
Output:
17 is a prime number.

#100DaysOfCode #CodingJourney #dreamjob #letsconnect Control Flow Question:- Write a Program to input a number from user and find all factors of the given number. Input: num = 12 Output: Factors of 12: 1, 2, 3, 4, 6, 12

LearnWithAnkit's tweet image. #100DaysOfCode #CodingJourney #dreamjob #letsconnect 
Control Flow Question:-

Write a Program to input a number from user and find all factors of the given number.
Input:
num = 12
Output:
Factors of 12: 1, 2, 3, 4, 6, 12

Loading...

Something went wrong.


Something went wrong.