#Day 12 of learning Java
Today I worked on Java problems ensuring that my basics are strong .
I solved questions such as:
1. Convert °F to°C
2. Sum of even digits and odd digits of an integer
And related MCQs
#LearnInPublic#Java
#Day 11 of learning Java
Today I revisited java programming basics
1. Basic I/O
2. Variables and Data types
3. Opeators and Control statements
Today, I solved 4 questions implementing these topics
#LearnInPublic#Java
#Day 10 of learning Java
Today I solved Java programs implementing the concept of #Arrays
1. Second Largest Element
2. Rotate an array by k
3. Non decreasing array
4. Equilibrium Index
#LearnInPublic#Java
#Day 9 of learning Java
Today I solved Java programs implementing the concept of #recursion. Questions such as:
1. Check Palindrome (recursive)
2.Factorial Numbers Not Greater Than N
3.Print Fibonacci Series
4.Find X raised to power N
5.Find K-th Element
#LearnInPublic#Java
#Day 8 of learning JAVA
Hi, JAVA update:
Today I continued learning the #OOPS concept in java looking in depth on the 4 pillars of the OOPS.
Also I looked into the concept of #recursion on a high level.
#learninginpublic#Java
Hello,
Date : 01/09/2024
JAVA Update:
Today I solved the following problems:
1. Total Salary
2. Quadrant of the coordinate point
3. Sum of even & odd
4. Factorial of a Number
5. N-th Fibonacci Number
#LearnInPublic#java#javaroadmap
Hello,
Date : 30/08/2024
JAVA Update:
Today I learnt: Arrays and Strings
Problems I solved today:
1. Largest Element in the Array
2.Convert String
3.Check Sorted Array
4.Left Rotate an Array by One
#Java#LearnInPublic#CodingChallenge
4.Interfaces
An interface in Java is a user-defined prototype which includes all your data just like a class, but the methods declared in the interface are all abstract. That is, it contains only definition and signature and no body.
#datatypes#java#nonpremitive#learninpublic
Non-Primitive Data Type(1/2):
1. Arrays : contain values of a given data type, allow for indexed access to the values
2.Strings : Represents a sequence of characters.
3.Classes: user-defined prototype. It has fields (variables), properties, and methods.
#LearnInPublic#java
Hello,
Date : 29/08/2024
JAVA Update:
Today I learnt:
1. Opearators
2. If-Else & Loops
3. Functions
Problems I solved today:
1. Sum of Even Numbers till N
2.Fahrenheit to Celsius
3.Power of a number
#LearnInPublic#java
Hello,
Date : 28/08/2024
JAVA Update:
Today I learned:
1. Variables: local, static, instance variables
2. Input and output: Scanner class
Problems I solved today:
1. Area of rectangle
2. Name and Age
3. Simple Interest
#LearnInPublic#java
Primitive Data Type(3/3):
vii) float: 32-bit single-precision floating point, [range: 3.4e-038 and 3.4e+038]. The value should end with an “f.”
viii) double: 64-bit double-precision floating point. [range: 1.7e−308 and 1.7e+308]. The value should end with a "d".
#Java
Primitive Data Type(2/3):
v) int: 4 Bytes or 32-bit signed 2's complement int, [range: -2147483648 and 2147483647]
vi) long: 8 bytes or 64-bit signed 2's complement int,[range: -2^63 to (2^63)-1]
#learninpublic#primitivedatatypes#Java