how long do you take to finish an assignment? mine is due 7th Nov 11:59pm
Constructor
public Vehicle () {
maxLoad=14.5;
}
// default constructor
public Vehicle ()
{
}
public Vehicle (int a, int b)
{
//////
}
Call method form main method
Vehicle x= new Vehicle ( );
x.setMaxLoad(14.5);
Question1: According to Syntax in above, specify class name and its modifier?Question1: According to Syntax in above, specify class name and its modifier?write a program to initialize the value as 20 & display the value on the monitor?
Create a library management system wherein any library member should be able to search books by their title or its author.
Problem 01: Write a for loop which will print the following numbers:
100
90
80
.
.
.
Problem 02: Write a for loop which will print summation of all the numbers which are divied by 3 and 5 between 30-120.
Write a program in C to display the multiplication table of a given integer. Go to the editor
Test Data :
Input the number (Table to be calculated) : 15
Expected Output :
15 X 1 = 15
...
...
15 X 10 = 150
Write a program in C to display the cube of the number up to given an integer. Go to the editor
Test Data :
Input number of terms : 5
Expected Output :
Number is : 1 and cube of the 1 is :1
Number is : 2 and cube of the 2 is :8
Number is : 3 and cube of the 3 is :27
Number is : 4 and cube of the 4 is :64
Number is : 5 and cube of the 5 is :125
What is the process to create increment and decrement statement in C? Describe the difference between = and == symbols in C programming? Describe the header file and its usage in C programming?
How to declare array in c? Briefly explain the different types of array with simple example.