Java Codes Basic to Advance
2.03K subscribers
4 photos
2 videos
1 file
48 links
Download Telegram
when method return type is int wat will return
Anonymous Quiz
69%
int value
8%
no value
16%
default value
6%
object reference
when method return type is object what will return
Anonymous Quiz
35%
directly object will return
40%
object reference
26%
object values
Become coding expert by Codes channels and groups with Yt videos also

https://t.me/addlist/2UhsQW_cGzkxMzg1
👍1
1719780313813.pdf
254.6 KB
Java coding questions
👍1
Learn Telegram bot development using Nodejs telegraf library: https://www.youtube.com/playlist?list=PLjEYzWkdEvxvJ8lZacERw_NiUKbB7l_dx

1 more video added
Subscribe to get updates
Government ne google ki dadagiri ko khatm karne ke liye apna khud ka app store banaya hai 🔥😍

Playstore pe jo apps hain unhe 30% Playstore ko apni kamayi ka hissa dena padta hai

https://apps.mgov.gov.in/details?appid=270

Aap sabhi ye government playstore ko download kare Aur logo ko bhi share Kare

Government ne to apna Kam Kar diya ab hamari Bari.
👍1
1. भारतीय संविधान को लिखने का कार्य किसने किया था?
- भारतीय संविधान को प्रेम बिहारी नारायण रायज़ादा ने अंग्रेजी में और वसंत कृष्ण वैद्य ने हिंदी में हाथ से लिखा था।

2. संविधान सभा का अध्यक्ष कौन था?
- .....
More details join: https://t.me/SidsAnalysis/38

Join for daily intrusting knowledge
आप सभी को स्वतंत्रता दिवस की हार्दिक बधाई 🇮🇳🇮🇳
In these days rust is getting much popular

1) Because of it's speed of execution.
2) It's full controll on system memory
3) it's ownership model
4) And integration to other languages

So why wait let's join our rust channel
https://t.me/Rust_Codes_Pro
👍51
.
Jinke pass bhi Groups hain 10 members se 250 members tak ke vo mujhe de sakte hain

(Only telegram groups no newly created)
And don't comment here directly message me

Minimum Price 50 rupye maximum price can be 100 vary based on group

And in special group case it will be more

@Panditsiddharth
Or Call 6389680622
👍2
We have started new Channel.
Is channels me aapko 8000 se lekar 1lack+ salary ke jobs achive karne ke liye kya skills required hoti hain unke bare me batayenge.

Kya kya jaroori hota hai cv, experience, education and knowledge se lekar bahut kuchh

Har ek field jaise accounting, Software development se lekar Har tarah ke work ki skills.

To wait karne ki bajay join karlo👇

@NaukriSkills
Write a Java program to check if a number is a palindrome in Java?
import java.util.*;

public class quest3 {
// Write a Java program to check if a number is a palindrome in Java? ( 121 is a
// palindrome,321 is not) A number is called a palindrome if the number is equal
// to the reverse of a number e.g.,121 is a palindrome because the reverse of
// 121 is 121 itself. On the other hand,321 is not a palindrome because the
// reverse of 321 is 123, which is not equal to 321
public static void isPalindrome(int num) {
int orignalnum = num;
int palindrome = 0;
while (num > 0) {
int remind = num % 10;
num = num / 10;
palindrome = palindrome * 10 + remind;

}

System.out.print(palindrome == orignalnum);

}

public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
System.out.print("Enter any number: ");
int num = sc.nextInt();
isPalindrome(num);

}
}
Reverse Decreasing Star pattern of number n
******
*****
****
***
**
*

CODE :
 

public class pattern1 {

public static void reverseStar(int n) {
// reverse pattern
for (int i = n; i >= 0; i--) {
for (int j = 1; j <= i; j++) {
System.out.print("*");

}
System.out.println();

}

}

public static void main(String[] args) {
reverseStar(6);

}

}