Ask a Question  | Answer a Question!  | 

 Submitting your question... 
 
 
ResFinder - Thousands of Practice Papers
Can anyone pls... Explain me selection and and bubble sort program with the help of dry run  | 
  | 
| asked by Mokshil Shah (phoenix80) 7 years ago  | 
2  | 
If you want to practice output prediction question, here's the link --->
https://drive.google.com/folderview?id=1-2xrFu4I-iZaHlK_g288VuNvI8ZM9zqQ
I hope this will help :D
All the best!  | 
  | 
| asked by J (jatin_01) 7 years ago  | 
6  | 
Is it necessary to use public for function prototype questions
ex:can we write float sum(int x) instead of public float sum(int x)  | 
  | 
| asked by Jeff mckinley (chende) 7 years ago  | 
2  | 
Hope rises like a phoenix from the ashes of shattered dreams.  | 
  | 
| asked by Pranav Ajinkya (narutorocks7) 7 years ago  | 
6  | 
Is this the correct format of writing a number program using method? , if not send me the format Thank you... 
import java.util.*;
class Niv
{
    public static void main(String args [])
    {
        Scanner in = new Scanner(System.in);
        System.out.println("Enter a number");
        int n=in.nextInt();
        int num=n;
        int sum=sumOfDigits(n);
        
        if(num%sum==0)
        System.out.println(num+" is a Niven number");
        else
         System.out.println(num+" is not a given number");
          
         
        }
        
        
        public static int sumOfDigits(int g)
        {
            int sum=0;
            while(g>0)
            {
            int rem;
            rem=g%10;
            sum=sum+rem;
            g=g/10;
        }
        return sum;
        
        
        
    }
} | 
  | 
| asked by Uttam Soren (uttamsoren1735) 7 years ago  | 
1  | 
Anyone have together with biology notes...pls share with me drive link or mai me..(CH:reproduction, nervous system and genetics..)
..pls  | 
  | 
| asked by Devansh Tripathi (drdevansh) 7 years ago  | 
2  | 
Why is an object called a static data member??  | 
  | 
| asked by Aayush Joshi (aayushjoshi) 7 years ago  | 
1  | 
can anyone tell me the problem with this snippet as I am not getting my output.
Purpose:
to enter 10 names of cities and their populations:
import java.util.Scanner;
class cit_pop
{
    void main()
    {
        Scanner in=new Scanner(System.in);
        System.out.println("Please enter the names of 10 cities and their populations:");
        int p[]=new int[10];
        String c[]=new String[10];
        for(int i=0;i<10;i++)
        {
            System.out.println("Please enter the names of cities and their populations:");
            
            c[i]=in.nextLine();
            p[i]=in.nextInt();
        } | 
  | 
| asked by Ashutosh Dash (ashutosh_dash) 7 years ago  | 
4  | 
 + 1 more questions by ashutosh_dash    
in a menu driven program, should default case be added?  | 
  | 
 
| asked by Ashutosh Dash (ashutosh_dash) 7 years ago  |  
2  |  
  | 
anyone who can upload physical education specimen paper 2018...  | 
  | 
| asked by Ayaan Mansuri (crq7) 7 years ago  | 
2  | 
can we use recursion?  | 
  | 
| asked by Hatake Kakashi (jatintara) 7 years ago  | 
3  |