admin

How to print any pattern in java (easy way).

There are multiple ways for how to print pattern in Java,some are tough which are for professionals and some are…

2 years ago

How to Achieve a physique like Baki Hanma

How to Achieve a physique like Baki Hanma. To achieve a physique like Baki Hanma, a fictional character known for…

2 years ago

Building a v-taper for teenagers.

Building a V-taper for teenagers with a lean body involves focusing on exercises that target not only the back but…

2 years ago

Gaining weight for teenagers.

Gaining weight for teenagers can be just as challenging as losing weight is for others. While many people struggle with…

2 years ago

TOP 10 ANDROID MULTIPLAYER GAMES (UNDER 500MB 2023)

TOP 10 ANDROID MULTIPLAYER GAMES UNDER 500MB.(2023) Clash Royale Clash Royale is a real-time multiplayer game where players collect and…

2 years ago

TOP 10 GOOD PAYING JOBS WITH BIOLOGY AFTER 12th

TOP 10 GOOD PAYING JOBS WITH BIOLOGY AFTER 12th. After completing 12th grade with a focus on biology, several lucrative…

2 years ago

Top 5 programming language to learn in 2024

Top 5 programming language to learn in 2024 Programming is the topmost skill to learn all the new technologies and…

3 years ago

Write a java program to take string as an input and check whether it is Palindrome or not.

class PQR{ public static void main(String k) { int l=k.length(); String m=""; //empty for(int i=l-1;i>=0;i--) { m=m+(k.charAt(i)); } if(m.compareTo(k)==0) {…

3 years ago

Write a java program to take a character as input, find its assci code and then reverse it and print corresponding character. And check whether it’s an vowel or not.

import java.util.*; class Reverse_AssciCode { public static void main() { Scanner Sc=new Scanner(System.in); System.out.println("Enter the Character"); char c=Sc.nextLine().charAt(0); int ca=(int)c;…

3 years ago