Skip to main content

Logical Coding

  Logical Coding Program
--------------------------------------------------------------------------------
Hi. I am prince Kumar today I am going to introduce how to become a good logical programmer.

It's very simple so please follow my strategy to become a good logical programmer. So I am going to teach you step-by-step.

step-1: Fast of all You have to know anyone programming language.
              like-c,c++,java,php,.net,c#

              
Logical Coding
Logical Coding

step-2: You have an idea about math. because all the logical program depends on math only.

 So, You have an idea like calculations and basic Bord mass rule.

step-3: We have to practice basic Question related to 
 Operator and Conditional statement because all the logical Question depends upon the if, else, loop, switch,+,-,*,/,%, and so many like those things.

So, I am going to suggest you practice basic and advance level Questions also.


step-4: After that, you automatically realize I can do any kind of the question because of your basic confidence. then you start the online doing question are available on the website.

  Like Website is:

  1. HackerRank
  2. HackerEarth
  3. TopCoder
  4. GeeksforGeeks
  5. java  T Point
Like that so many platforms are available to test your skill of programming.



step-5: Keep is habit continually than one day you become a good logical programmer.
 Then you can learn an advance book for solving the real-life problem Question.

  You have to prefer a book like:
   1.Data Structures 
   2.Think in java
   3. Algorithm design pattern
   4. And finally doing this continues.



This is My Story:
    
     I am prince Kumar. When I was in college 2nd year at that time I don't know even what is logical programming. After then I started my doing logical programming at that time I only remember the code and logic than I am able to write the code.

But after someday my teacher told me if you remember the code and logic than you never become a good programmer. That time I realize. if you want to become a good programmer than stop remembering the code and logic. your mind should be dynamically to understand the requirement than apply to generate the logic for this particular requirement.

Like that, I am doing every day so after someday, I feel I don't want to remember the code just think about your logic and requirements. 

Now a day I have good confidence. I am able to write any kind of logic and program very easily. also, a simple way because of my basic knowledge is very good.


      
So, In this Section, I am going to cover all the logical program on this page.


  1. Write a program to print the String character lower to upper and upper to lower

    


Comments

Popular posts from this blog

#Logic How to convert String Characters lower to upper and upper to low...

How to convert String Characters.  lower to upper and upper to lower How to Convert all the String character Upper and lower . If String character is lower than convert Upper If it is Upper than you have to convert a lower. I am going to introduce it is a very simple and easy way. String Conversion is very easy through the toUpperCase() and toLowerCase(); Method But I am going to do this Question without using the Inbuilt method in the class. You have to do this Only For logical coding Question. So, Finally, I am going to do this Question step-by-step if you want to watch videos than you can watch. In these videos, I discuss this question in a very simple and easy way. You have to take one class with the main method.                class Test{                 public static void main(){                    //your logic ...

Top 97 logical coding Question | for Freshers for getting a job in MNC Company | by er prince kumar

            Top 97 logical coding Question  for Freshers  If you do this you will become good logical programmers Write a Java program to perform input/output of all basic data types. Write a Java program to enter two numbers and find their sum. Write a Java program to enter two numbers and perform all arithmetic operations. Write a Java program to enter the length and breadth of a rectangle and find its perimeter. Write a Java program to enter the length and breadth of a rectangle and find its area. Write a Java program to enter the radius of a circle and find its diameter, circumference, and area. Write a Java program to enter the length in centimeter and convert it into meter and kilometer. Write a Java program to enter the temperature in Celsius and convert it into Fahrenheit. Write a Java program to enter the temperature in Fahrenheit and convert to Celsius Write a Java program to convert days into years, weeks and days....

Java objective question for written Test | Java written test objective question

                               Java objective question All the best important question ------------------------------------------------------------------------ 1. Answer: Illegal combination of final and abstract class 2. Answer: 4 3. Answer:    error: bad operand types for binary operator '=='                 System.out.println("Helo"+10==10); 4. Answer:   error: integer number too large                 System.out.println(08); Q5. ====  class Nit { public static void main(String[] args) { m1(2); } public static void m1(int i) { if (i >= 0) { m1(i - 1); } System.out.println(" " + i); }} output:  -1  0  1  2 ================================== Q.2 ------ ...