排序
Modulo or Remainder in java
Modulo or Remainder in java, Remainder: -->Modulo or Remainder Operator returns the remainder of the two numbers after division. -->If you are provided with two numbers, say ...
Number Series
Number Series, Task: 1 . Look at this series: 58, 52, 46, 40, 34, ... What number should come next? 26 28 30 32 Ans: The series is decreasing by 6 each time: 58 - 6 = 52 52 - 6 = 4...
Control flow statement
Control flow statement, Control flow Statement: -->Java compiler executes the code from top to bottom. The statements in the code are executed according to the order in which th...
Task
Task, Task 1: Task 1: Assignment - 0: static, non-static Create a class Called Theatre. Declare below global variables in it. 2.1. String movieName 2.2. int movie_time Add main met...
object & class creation
object & class creation, Object creation:(Behavior) Example: public class Bank //Class Creation { public static void main(String[] args) { Bank manager = new Bank(); //Object Creat...
Day 4 – Dec 23 –>java simple program
Day 4 - Dec 23 -->java simple program,Step by Step procedure: step 1: First type the code in text editor step 2: After typing the code press ctrl+s step 3: Pop up will click the do...
Day 12 Constructor in java:
Day 12 Constructor in java:,Constructor in java **Constructor will not have any return data type** **Constructor is usefull for initializing specific variables** **A constructor in...
How are programming languages created?
How are programming languages created?, 1. Preparation 1.1. ANTLR ANTLR is a tool that generates parsers from grammar definitions. It can handle various languages and provides a so...
Windows Talker (Part 4)
Windows Talker (Part 4), Windows Talker (4 Part Series) 1 Windows Talker 2 Windows Talker (Part 2) 3 Windows Talker (Part 3) 4 Windows Talker (Part 4) Hello to my 4th part of the s...
Generate QR Code in Python to transfer files from laptop to mobile
Generate QR Code in Python to transfer files from laptop to mobile,In my previous article I showed how you can transfer files from laptop to mobile with just a single command. Insp...