Ask a Question  | Answer a Question!  | 

 Submitting your question... 
 
 
ResFinder - Thousands of Practice Papers
Anyone who wants to practice intense programs along with systematic grading and code testing for each program,go here:
codingbat.com/java  | 
  | 
| asked by Thulluminati (asthetic31) 9 years ago  | 
1  | 
Anyone planning to buy REDMI NOTE 3............????  | 
  | 
| asked by Ankit Fadia (tanmay_dani) 9 years ago  | 
2  | 
Computer Application tips for remembering programs and others ?  | 
  | 
| asked by Rw45 (rw45) 9 years ago  | 
2  | 
What is the difference between printing a variable normally and printing a variable using an OBJECT? If any.  | 
  | 
| asked by Shreyas Js (shreyasj) 9 years ago  | 
0  | 
ICSE Prelims 2016 : Computer Applications (Akash International Residential Public School, Bangalore) 
please answer question four  | 
  | 
| asked by Kushagra Kushagra
 (kushagra2014) 9 years ago  | 
1  | 
 + 1 more questions by kushagra2014    
what will be the output of this program
class Pattern01
{
    public static void main()
    {
        for(int i=1; i<=5; i++)
        {
            for(int j=1; j<=i; j++)
            {
                System.out.print(j);
            }
            for(int k=5; k>i; k--)
            {
                System.out.print(i);
            }
            System.out.println();
        }
    }
} | 
  | 
 
| asked by Kushagra Kushagra
 (kushagra2014) 9 years ago  |  
2  |  
  | 
Is Programming based on CONSTRUCTOR OVERLOADING there in our Syllabus?  | 
  | 
| asked by Ritik Sharma (rsharma96) 9 years ago  | 
1  | 
DO mention this point of difference :
Class is logical existence since no memory space is allocated when t's created.
Object is physical existence since memory space is allocated when it's created.  | 
  | 
| asked by Sdfg Sdfg
 (sdfg) 9 years ago  | 
2  | 
 + 1 more questions by sdfg    
Definition of object : An object is a unique entity which contains data members and member functions defined in the class together in an object oriented programming language.  | 
  | 
 
| asked by Sdfg Sdfg
 (sdfg) 9 years ago  |  
0  |  
  | 
Give the output:
int a =5,b=3
a) int c=a+b*7/2;
b) float c=a-b/2*9/4;
c) boolean=5+3>10&&10*2/5;  | 
  | 
| asked by Abhi (bitun) 9 years ago  | 
2  |