what is object oriental programing?
Answer / nirmal kumar tailor
Object means instance of the class.
object oriented means you can access all the class member
with the help of class object so this is called object
oriented language.
| Is This Answer Correct ? | 4 Yes | 1 No |
An interactive c program to read basic salary of 15 persons. each person gets 25% of basic as HRA, 15%of basic as conveyance allowances, 10%of basic as entertainment allowances.The total salary is calculated by adding basic+HRA+CA+EA.Calculate how many out of 15 get salary above 10,000.Rs also print the salary of each employee
1. What will be the output of the following programs. a) #include <stdio.h> Main() { Int x=4; While(x==1) { X=x-1; Printf(ā%dā,x); --x; } }
Write a program to compute the similarity between two strings - The program should get the two strings as input - Then it will output one single number which is the percentage of similarity between the two strings
Write a program to find whether the given number is prime or not?
What are enumerated types?
a=5 a=a++/++a
Can we declare variable anywhere in c?
what is used instead of pointers in java than c?
how could explain about job profile
main() { int i=5; printf("%d",++i + i); } output is 10 ------------------------ main() { int i=5; printf("%d",i++ + i); }output is 12 why it is so? give appropiate reason....
Write a program or provide a pseudo code to flip the 2nd bit of the 32 bit number ! (Phone Screen)
How does variable declaration affect memory?