1 Film Roll Vs SD card.
2 No LCD Display Vs LCD Display
3 No mega Pixels Vs Mega Pixels
4 Zero Optical zoom Vs Optical Zoom
5 No Picture Modes Vs Different Picture Modes
6 Limited Number of Pics per roll Vs unlimited number of pictures depending upon the size of a Card
7 Hassle of developing pictures Vs no hassle, simply transfer them to the pc/laptop
8 Limited features Vs multiple features
hope this helps
Lookup the isalpha() function in the C standard library, this function will check and return non-zero for alphabetic characters.
Answer:
1.ClassName and . operator
2. ClassName and [] operator
Explanation:
There are two ways to get the members of a class first one is by using dot(.) operator.
Example : with assumption that person is a class object and age is the member in it we can use it as:
person.age
Second way is to use [] operator with member as a string in it which is used by the compiler as key to get its value.
Example : person["age"]
Answer:
7
Explanation:
Because the q.length is a inbuilt function in the programming which used to get the length of the array. In the array, there are 7 values are store. Therefore, the size 7 store in the variable z.
For example:
int[] array={1,2};
int x = array.length;
the answer of above code is 2, because the elements present in the array is 2.