FAQs On Computer Fundamentals – I
Frequently Asked Questions On Computer Fundamentals, Database, Networking, OS, DFS (Compilation) You can Use Linkedin Credentials to Download. This Computer Basics Quick Reference provides an overview...
View ArticleMulti Choice Questions On C and C++ Part 1
Question 1 Identify the correct statement a. Programmer can use comments to include short explanations within the source code itself. b. All lines beginning with two slash signs are considered...
View ArticleMulti Choice Questions On C and C++ Part 2
Question 1: cin extraction stops execution as soon as it finds any blank space character a. true b. false Question 2: Observe the following statements and decide what do they do. string...
View ArticleExceptions in Java
An exception is an abnormal condition that arises in a code sequence at run-time. Exception is a run-time error. Exceptions are Java objects. All exceptions are derived from java.lang.Throwable class....
View ArticleOperators, Expressions and Control Structures in Java
Operators Binary arithmetic operators +, -, *, /, % operate on any data type except boolean. Unary +, -, ++, – Comparison operators Equality Relational...
View ArticleJava Notes – 1
· Unary Postfix operators and all binary operators (except assignment operators) have left to right assoiciativity. · All unary operators (except postfix operators), assignment operators, ternary...
View ArticleFrequently Asked Questions in Java Part-7
Question: What is the difference between notify and notify All methods ? Answer: A call to notify causes at most one thread waiting on the same object to be notified (i.e., the object that calls notify...
View Article