Skip to main content

Posts

Showing posts with the label How to become a java developer in java

How to become software engineer || What is software engineer | programmer

What are a software engineer and programmer    Actually, The person having knowledge about computer and programming language then we can say that those people are software engineers and programmers. Basic Terminology of Technology Software:  The software is nothing but an "automatic machine" you already know about it google, Facebook, Instagram, youtube all these are software it will give 24/7 hours service every day. It does not stop. programmer: The people having those are developing the software and those peoples having a good command of programming language like c,c++, java... e.t.c so we can say that those peoples are programmers.                                                           How to become good software engineer  My journey start when I was in college that time I decide only I have ...

How to increase interest in Coding and programming

              How to increase  interest in Coding and programming About- If you try to learn your mind is not working properly then how can I increased the interest in this programming area. In my point of view if you know how to increase the programming in this section then do this work.       Every time does interesting programming like logical games.  Make sure that You have to realize I am a developer.  Don't give up do everyday logical coding.     Finally, I am going to impress you to write one logical code like playing page type code so you enjoy it. programming depends on your interest if you do more than you earn more.  coding part: import  import java.util.Scanner; class Game { public static void main(String[] args) throws InterruptedException { Scanner sc=new Scanner(System.in); System.out.print("Enter your name:"); String name=sc.nextLine(); System.out.pr...

#logicalcoding Write a program to print 1 to 100 number in java | Logic...

Write a program to print 1 to 100 number in java. If you want to become a part of step-by-step to become a logical programmer. Then this video and website for you. So join this website and my youtube channel and become a part of this event. I am going to discuss Java programming in java. become a java logical programmer in java. Software having knowledge about this logic and standard coding practice of these videos. How to become a logical programmer series. Question 3: Write a program to print 1 to 100 number in java. Take one value from the user and print the 1 to n number natural number in java. Code:     import java.util.Scanner; class Numberp  { public static void main(String[] args)  { Scanner sc=new Scanner(System.in); //System.out.println("Enter the Number:");don't used int n=sc.nextInt(); //Validate -ve,+ve,0 if(n<1){ System.out.println("Please enter Valid Number"); System.exit(0); } for(int i=1;i<=n...