Home
Blog
Blog - HOME
Technical
Search Engine Optimization
Data Structure
Image Processing
C Programming
.NET
SQL Server
TCS Preparation
Miscellaneous
Non Technical
Top 10
Life Lesson
Quotes
English Quotes
Bangla Quotes
Bangla to English Translations
Bangla Kobita
Bangla Whatsapp Story
Tutorials
Tutorial - HOME
CS Core Subjects
Computer Fundamentals
Data Structure Tutorials
DBMS Tutorials
SQL Tutorials
Programming Language
C Tutorials
Java Tutorials
C# Tutorials
R Tutorials
X++ Tutorials
PHP Tutorials
Python Tutorials
Web Design
HTML Tutorials
Bootstrap Tutorials
JavaScript Tutorials
Vue JS Tutorials
Programs
Programs - Java
Programs - C Language
Programs - Python Language
Programs - C# Language
Programs - R Programs
Programs - Data Structure
Programs - HTML Programs
Programs - JavaScript
Program - HOME
QnA
Chapter Wise - C Program Q and A
Chapter Wise - Java Q and A
Chapter Wise - C# Q and A
Chapter Wise - Data Structure Q and A
Chapter Wise HTML Q and A
Chapter Wise - JavaScript Q and A
Chapter Wise - SQL Q and A
Chapter Wise - DBMS Q and A
MCQ - English
Effective - English
MCQ - Python Language
MCQ - C Language
MCQ - Java Language
MCQ - DBMS
MCQ - PHP
MCQ - Data Structure
GK
GK - HOME
Basic GK
General Science
Honours and Awards
Inventions
World Organisations
Important Days
World Geography
Indian Geography
Indian History
Computer Awareness
MS excel, office etc.
Problems on Train
Video
Computer Awareness
C Program - Bangla
Microsoft Excel- Bangla
Login
Login - Dashboard
Login - Here
About
Advertisement
Terms and Conditions
Guest Post Rule
Menu
Login and Register
×
Go to Dashboard
Logged In Successfully!
×
×
Check your Email for the OTP
Login
Registration
Email
Password
Name
Email
Phone
Country Code
Afghanistan
Albania
Algeria
American Samoa
Andorra
Angola
Anguilla
Antarctica
Antigua and Barbuda
Argentina
Armenia
Aruba
Australia
Austria
Azerbaijan
Bahamas
Bahrain
Bangladesh
Barbados
Belarus
Belgium
Belize
Benin
Bermuda
Bhutan
Bolivia
Bosnia and Herzegovina
Botswana
Bouvet Island
Brazil
British Indian Ocean Territory
Brunei Darussalam
Bulgaria
Burkina Faso
Burundi
Cambodia
Cameroon
Canada
Cape Verde
Cayman Islands
Central African Republic
Chad
Chile
China
Christmas Island
Cocos (Keeling) Islands
Colombia
Comoros
Congo
Congo, the Democratic Republic of the
Cook Islands
Costa Rica
Cote D'Ivoire
Croatia
Cuba
Cyprus
Czech Republic
Denmark
Djibouti
Dominica
Dominican Republic
Ecuador
Egypt
El Salvador
Equatorial Guinea
Eritrea
Estonia
Ethiopia
Falkland Islands (Malvinas)
Faroe Islands
Fiji
Finland
France
French Guiana
French Polynesia
French Southern Territories
Gabon
Gambia
Georgia
Germany
Ghana
Gibraltar
Greece
Greenland
Grenada
Guadeloupe
Guam
Guatemala
Guinea
Guinea-Bissau
Guyana
Haiti
Heard Island and Mcdonald Islands
Holy See (Vatican City State)
Honduras
Hong Kong
Hungary
Iceland
India
Indonesia
Iran, Islamic Republic of
Iraq
Ireland
Israel
Italy
Jamaica
Japan
Jordan
Kazakhstan
Kenya
Kiribati
Korea, Democratic People's Republic of
Korea, Republic of
Kuwait
Kyrgyzstan
Lao People's Democratic Republic
Latvia
Lebanon
Lesotho
Liberia
Libyan Arab Jamahiriya
Liechtenstein
Lithuania
Luxembourg
Macao
Macedonia, the Former Yugoslav Republic of
Madagascar
Malawi
Malaysia
Maldives
Mali
Malta
Marshall Islands
Martinique
Mauritania
Mauritius
Mayotte
Mexico
Micronesia, Federated States of
Moldova, Republic of
Monaco
Mongolia
Montserrat
Morocco
Mozambique
Myanmar
Namibia
Nauru
Nepal
Netherlands
Netherlands Antilles
New Caledonia
New Zealand
Nicaragua
Niger
Nigeria
Niue
Norfolk Island
Northern Mariana Islands
Norway
Oman
Pakistan
Palau
Palestinian Territory, Occupied
Panama
Papua New Guinea
Paraguay
Peru
Philippines
Pitcairn
Poland
Portugal
Puerto Rico
Qatar
Reunion
Romania
Russian Federation
Rwanda
Saint Helena
Saint Kitts and Nevis
Saint Lucia
Saint Pierre and Miquelon
Saint Vincent and the Grenadines
Samoa
San Marino
Sao Tome and Principe
Saudi Arabia
Senegal
Serbia and Montenegro
Seychelles
Sierra Leone
Singapore
Slovakia
Slovenia
Solomon Islands
Somalia
South Africa
South Georgia and the South Sandwich Islands
Spain
Sri Lanka
Sudan
Suriname
Svalbard and Jan Mayen
Swaziland
Sweden
Switzerland
Syrian Arab Republic
Taiwan, Province of China
Tajikistan
Tanzania, United Republic of
Thailand
Timor-Leste
Togo
Tokelau
Tonga
Trinidad and Tobago
Tunisia
Turkey
Turkmenistan
Turks and Caicos Islands
Tuvalu
Uganda
Ukraine
United Arab Emirates
United Kingdom
United States
United States Minor Outlying Islands
Uruguay
Uzbekistan
Vanuatu
Venezuela
Viet Nam
Virgin Islands, British
Virgin Islands, U.s.
Wallis and Futuna
Western Sahara
Yemen
Zambia
Zimbabwe
Password
Fundamentals of Object-Oriented Programming
Questions and Answers
Open Subject List
Fundamentals of Object-Oriented Programming
Fundamentals of C Language
33
Overview of C Language
48
Data Types in C Language
8
Variable in C Language
37
Constant in C Language
7
Operators and Enums in C Language
31
Decision Making of C Language
7
Loop control in C Language
9
Array in C Language
8
String in C Language
9
Function in C Language
35
Pointer in C Language
32
Structure in C Language
8
Union in C Language
4
File Input/Output
10
Dynamic Memory Allocation
8
C Pre-processor
8
Control Flow in C Programming
2
String functions in C
4
Recursion in c
1
Read tutorials from
Fundamentals of Object-Oriented Programming
Question List:
1. What is computer?
2. List five major hardware components of a computer.
3. What unit is used to measure CPU speed?
4. What is a bit? What is a byte?
5. What is memory for? What does RAM stand for? Why is memory called RAM?
6. What unit is used to measure memory size?
7. What unit is used to measure disk size?
8. What is the primary difference between memory and a storage device?
9. What is a Java applet?
10. What programming language does Android use?
11. What is the Java language specification?
12. What is the statement to display the message "Hello world" in a message dialog box?
13. Why does the System class not need to be imported?
14. Are there any performance differences between the following two import statements?
import javax.swing.JOptionPane;
import javax.swing.*;
15. Reformat the following program according to the programming style and documentation guidelines. Use the end-of-line brace style.
16. Variables used in a switch statement can be used with which datatypes?
17. When parseInt() method can be used?
18. Why is String class considered immutable?
19. Why is StringBuffer called mutable?
20. What is the difference between StringBuffer and StringBuilder class?
21. Which package is used for pattern matching with regular expressions?
22. java.util.regex consists of which classes?
23. What is finalize() method?
24. What is an Exception?
25. What do you mean by Checked Exceptions?
26. Explain Runtime Exceptions?
27. Which are the two subclasses under Exception class?
28. When throws keyword is used?
29. When throw keyword is used?
30. How finally used under Exception Handling?
31. What things should be kept in mind while creating your own exceptions in Java?
32. Define Inheritance?
33. When super keyword is used?
34. What is Polymorphism?
35. What is Abstraction?
36. What is Abstract class?
37. When Abstract methods are used?
38. What is Encapsulation?
39. What is the primary benefit of Encapsulation?
40. Explain the usage of this() with constructors?
41. Explain the following line used under Java Program ? public static void main (String args[ ])
42. What is the difference between a Window and a Frame?
43. Which package has light weight components?
44. What is the difference between the paint() and repaint() methods?
45. What is the purpose of File class?
46. What is the difference between the Reader/Writer class hierarchy and the InputStream/OutputStream class hierarchy?
47. Which class should you use to obtain design information about an object?
48. What is the difference between static and non-static variables?
49. What is Serialization and deserialization?
50. What are use cases?
51. Explain the use of sublass in a Java program?
52. How to add menushortcut to menu item?
53. What is synchronization?
54. What is the Collections API?
55. What is the relationship between clipping and repainting under AWT?
56. What are ClassLoaders?
57. What will happen if static modifier is removed from the signature of the main method?
58. Can a top level class be private or protected?
59. Is it necessary that each try block must be followed by a catch block?
60. When a thread is created and started, what is its initial state?
61. What is the Locale class?
62. What are synchronized methods and synchronized statements?
63. What is runtime polymorphism or dynamic method dispatch?
64. What is Dynamic Binding(late binding)?
65. What are the advantages of ArrayList over arrays?
66. Why deletion in LinkedList is fast than ArrayList?
67. How do you decide when to use ArrayList and LinkedList?
68. What is a Values Collection View ?
69. What is dot operator?
70. Where and how can you use a private constructor?
71. What is type casting?
72. What is the difference between the >> and >>> operators?
73. Which method of the Component class is used to set the position and size of a component?
74. Define canvas?
75. Define Network Programming?
76. What is a Socket?
77. Advantages of Java Sockets?
78. Disadvantages of Java Sockets?
79. Which class is used by server applications to obtain a port and listen for client requests?
80. Which class represents the socket that both the client and server use to communicate with each other?
81. Why Generics are used in Java?
82. What environment variables do I need to set on my machine in order to be able to run Java programs?
83. If System.exit (0); is written at the end of the try block, will the finally block still execute?
84. When was C language developed?
Top