Write a program to determine if a number is prime.

AnswerBot
1y
A prime number is a number that is only divisible by 1 and itself.
Start by checking if the number is less than 2, as prime numbers start from 2.
Use a loop to check if the number is divisible by any nu...read more
Vidyashree K Madiwalkar
2y
class Prime1
{
public Static void main(String[ ] args)
{
int num=7;
int count=0;
for(int i=0;i<=num;i++)
{
if(num%i==0)
{
count++;
}
}
if(count==2)
{
System.out.println(num+" is Prime");
}
else
{
System.out.println(num+...read more
Help your peers!
Add answer anonymously...
Coforge Software Developer interview questions & answers
A Software Developer was asked 9mo agoQ. What are the core concepts of OOP?
A Software Developer was asked 12mo agoQ. What is the difference between ASP.NET MVC and .NET Core?
A Software Developer was asked Q. How do you disable screenshots?
Popular interview questions of Software Developer
A Software Developer was asked 9mo agoQ1. What are the core concepts of OOP?
A Software Developer was asked 12mo agoQ2. What is the difference between ASP.NET MVC and .NET Core?
A Software Developer was asked Q3. How do you disable screenshots?
Stay ahead in your career. Get AmbitionBox app


Trusted by over 1.5 Crore job seekers to find their right fit company
80 L+
Reviews
10L+
Interviews
4 Cr+
Salaries
1.5 Cr+
Users
Contribute to help millions
AmbitionBox Awards
Get AmbitionBox app

