Ads block

Showing posts with label Unit 4. Show all posts
Showing posts with label Unit 4. Show all posts
Explain Method overloading.
By
Jeevan Sai
10 Marks
·
OPPS WITH JAVA
·
Unit 4
Method Overloading With method overloading , multiple methods can have the same name with different parameters: Example int myMethod ( int x ) float myM…
Read more »
Define array. And explain about single dimensional array with an example.
By
Jeevan Sai
10 Marks
·
OPPS WITH JAVA
·
Unit 4
Java Arrays Normally, an array is a collection of similar type of elements which has contiguous memory location. Java array is an object which contains elem…
Read more »
Write a Java program for read and print array.
By
Jeevan Sai
5 Marks
·
OPPS WITH JAVA
·
Unit 4
How to print array in Java Java array is a data structure where we can store the elements of the same data type. The elements of an array are stored in a con…
Read more »
Write a java program to sorting given n numbers.
By
Jeevan Sai
5 Marks
·
OPPS WITH JAVA
·
Unit 4
SortArrayExample1.java import java.util.Arrays; public class SortArrayExample1 { public static void main(String[] args) { //defining a…
Read more »
Explain about Constructor with an example.
By
Jeevan Sai
5 Marks
·
OPPS WITH JAVA
·
Unit 4
What is a Constructor? A constructor in Java is similar to a method that is invoked when an object of the class is created. Java Constructor class Main { …
Read more »
Explain class and object with example.
By
Jeevan Sai
5 Marks
·
OPPS WITH JAVA
·
Unit 4
What is Class in Java? Class are a blueprint or a set of instructions to build a specific type of object. It is a basic concept of Object-Oriented Programming…
Read more »
Explain Statements of Inventory Menu.
By
Jeevan Sai
Unit 4
Inventory Reports and Statements The transactions entered in Tally.ERP 9 are immediately posted to the respective ledgers, books and registers. The inventory…
Read more »
Explain Job costing in Tally?
By
Jeevan Sai
Unit 4
Job Costing Job costing is a form of specific order costing, which applies to a job undertaken according to customer requirements and specifications. Tally.…
Read more »
SEARCH
LATEST
3-latest-65px
SECCIONS
- 10 Marks (14)
- 5 Marks (20)
- OPPS WITH JAVA (34)
- QUESTION BANK (1)
- Unit 1 (13)
- Unit 2 (10)
- Unit 3 (12)
- Unit 4 (9)
- Unit 5 (6)
Search This Blog
Powered by Blogger.
Blog Archive
- August 2021 (1)
- June 2021 (55)
*Java Constructor* class Main { private String name; Main() { name = "Programiz"; } public static void main(String[...
