top of page
Coding Solutions is a great section for every coder. You can get answers to your programming questions here by the Team ATC. You can even ask for the answer to competitive programming language questions as well. First, search your question here, and if not found. Then, ask your question to Ask The Code members, and you will get your answer in no time from the members of this Indian Developer Community. Happy Coding.
Search
Java Program to find Factorial of a number - Ask The Code
For those of you who may not now, a factorial is a product of multiplying from 1 until the number. Now, you must make a program that...more
Team ATC
Jan 30, 20211 min read
Â
Â
Â
Certain digit in Java | Ask The Code
Display certain digit in Java | AskTheCode Problem: How many of a certain digit is present on a given number...Read more
Team ATC
Jan 14, 20211 min read
Â
Â
Â
Java Program to count frequency of a digit | Ask The Code
Program to count frequency of a digit using Java...How many of a certain digit is present on a given number...See the code
Team ATC
Jan 14, 20211 min read
Â
Â
Â
Looping Strings in Java using while loop | Ask The Code
Basic Java Programming |CodeChum Java Solutions-AskTheCode...Looping strings works like playing a broken record...while loop...Read more...
Team ATC
Jan 13, 20211 min read
Â
Â
Â
Problem: 'Is It You, Cody?' in Java | AskTheCode
Problems related to Strings in Java - Ask The Code Is It You, Cody? Can you identify if Cody's name is spelled right? If so, then...more...
Team ATC
Jan 13, 20211 min read
Â
Â
Â
Problem Solving: The Fizz Buzz Game in Java | AskTheCode
Problem Solving in Java-|Ask The Code...The FizzBuzz Game Let's play a game of Fizz Buzz! It works just like the popular childhood...More...
Team ATC
Jan 13, 20211 min read
Â
Â
Â
Product of digits of a two digit number in Java | AskTheCode
How to find product of digits of a two digit number in Java | AskTheCode import java.util.Scanner; class productOfDigitsOfNumber{ ...
Team ATC
Nov 27, 20201 min read
Â
Â
Â
Print digits of a number separately in Java | AskTheCode
How to print the digits of a number separately in java | AskTheCode import java.util.Scanner; class printNumberSeparately{ public static voi
Team ATC
Nov 27, 20201 min read
Â
Â
Â


#Problem Solving2 in Java | AskTheCode
Problem in Java | Problem Solving | AskTheCode public class countHydraHead{ public static void main(String[] args) { int cut; for (cut = 1
Team ATC
Nov 26, 20201 min read
Â
Â
Â
Taxi Meter in Java | AskTheCode
Taxi Meter question in Java...CodeChum solutions...middle of the night...just finished your shift...take you anywhere...get answer code here
Team ATC
Nov 26, 20201 min read
Â
Â
Â
Program to check perfect square in java
Simple Java program to check whether a number is perfect square or not. We take input from the user then do the square root of it. More...
Team ATC
Nov 12, 20201 min read
Â
Â
Â


Problem Solving in Java #1
You found an exciting summer job for five weeks in Java. It pays $15.50 per hour. AskTheCode...total tax you...14%.After paying...10% of...
Team ATC
Oct 29, 20201 min read
Â
Â
Â
What are static methods and static variables?
Random Post | #AskTheCode They are methods and variables shared by all the objects in a class. Their static nature is a character of the...
Team ATC
Sep 26, 20201 min read
Â
Â
Â
Is it possible to restrict Inheritance in Java?
Random Post | #AskTheCode Yes, it is. You can restrict Inheritance by: a. Using the final keyword. b. Making the method final. c. Using...
Team ATC
Sep 26, 20201 min read
Â
Â
Â
What is the difference between Overloading and Overriding?
Random Post | #AskTheCode When you have two methods of the same name but having different properties, the case is called Overloading. On...
Team ATC
Sep 26, 20201 min read
Â
Â
Â
What are JVM, JDK, and JRE?
Random Post | #AskTheCode • JVM (Java Virtual Machine) offers the runtime environment for codes to be executed. • JRE (Java Runtime...
Team ATC
Sep 26, 20201 min read
Â
Â
Â
Java Currency Formatter | HackerRank
Random Post | #AskTheCode import java.util.*; import java.text.*; public class Solution { public static void main(String[] args) {...
Team ATC
Sep 20, 20201 min read
Â
Â
Â
Java Static Initializer Block | HackerRank
Random Post | #AskTheCode import java.io.*; import java.util.*; import java.text.*; import java.math.*; import java.util.regex.*; public...
Team ATC
Sep 20, 20201 min read
Â
Â
Â
Java End-of-file | HACKERRANK
Asked: Anonymously | Category: JAVA import java.io.*; import java.util.*; import java.text.*; import java.math.*; import...
Team ATC
Sep 16, 20201 min read
Â
Â
Â
Java Date and Time | HACKERRANK
Asked: Anonymously | Category: JAVA import java.time.LocalDate; class Result { public static String findDay(int month, int day, int year)...
Team ATC
Sep 16, 20201 min read
Â
Â
Â
bottom of page