Answer: c) Language Specification and Module DesignExplanation:Language Specification and Module Design are the main component/components of the User Interface.Q11. OOP stands for ...Object-Oriented Programming Object-Oriented Process Both a and b None of these...
23. Which of these are selection statements in Java? a) break b) continue c) for() d) if() View Answer24. What will be the output of the following Java program?class recursion { int func (int n) { int result; if (n == 1) return 1; result = func (n - 1); return resu...
c) Private members of a class can be inherited and accessed d) Inheritance is one of the features of OOP View Answer 3. What will be the output of the following Python code? advertisement a) Derived_Demo’s __init__() invoked Derived_Demo's __new__() invoked Demo's __init__()...
15. A function in PHP which starts with __ (double underscore) is known as ___ a) Default Function b) User Defined Function c) Inbuilt Function d) Magic Function View Answer 16. How many functions does PHP offer for searching and modifying strings using Perl-compatible regular expressions....