Skip to main content

Posts

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 ...

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 ------ ...

How to earn money online | without investing the money

" How to earn money  online " this is my personal experience. I am going to tell you how you can earn money online. I am not talking about those people who don't have passion, dedication, and education. I am going to talk about those people who want to become a good self employee and who want to earn money online. so, let's start now...         Earn money How you can earn money online ?   This question you have to ask with yourself which area/field you have the interest to become good. for example writing, reading, learning, coding, programming, dancing, singing, cooking, walking, teaching... like so many examples I have, I can so many things about this opportunity. take this anyone of this to become a good than making money online. I am going to teach you how you can do this very easily. How you can achieve this skill . In this world whatever you want to achieve you can achieve no one can stop you, but you have to promise yourself to do ...

Collection Interview Question || Top 10 interview Question in collection topic in java

                         Collection Interview Question  The collection  is a very important topic in the interview. interviewer asking so many questions about the collection. when I am giving interviews asking related to the topic. so I am referring to you please start questing about the collection topic. In this section, I am collecting lots of topmost important questions related to the collection topic. Why collection is important?                                                                                                           - > The collection is a framework it is not a concept the real use of collectin is available so ...

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...

#loop #typesofloop What is loop | How to use loop | Type of loop | comp...

What is loop | Types of loop | When should you choose loop | when you decide to good for loop | What is the need of loop. If you want to know about the loop than learn to hear. I am going to introduce the loop. Q1.What is loop  Ans: Loop is a technique to execute a block of statements multiple times. we can if you want to execute the statement multiple times then keep this statement inside the loop. through the loop, we can reduce the length of the program and the complexity of the code. types of loop. Types of the loop:    Basically, the loop is two types of 1.exit control loop and the other one is 2.entery control loop    1.Exit control loop-        The loop which is control after execution than goes for the exit control loop.        like- do-while loop          class A{                     public static void main...

Top 100 Logical Question in java | Written test exam question | Logical programming question paper in java to crack the written test exam.

                                  The written  test exam question     If you want to crack the written test exam like TCS , INFOSYS , and WIPRO than you want these questions. this question is very useful for you if you are in college. before any drive for MNC  company you are readily forgiven the exam of this company so, this is for you. This question is very useful for developing logical skills in the programming language. If you want to become a good logical and standard coder than definitely this video for you don't miss this question. As you know logic is the power of the world if you have logic you can solve and find the solution to any type of problem. So, just focus on the logic noting else.         List of Question :       1. Write a Java program to print 'Hello' on screen and then print your name on a separate line. ...