Computer Science
›
Software Development
›
Paradigms & Methodologies
›
Object Oriented Programming
Advertisement
Advertisement
12th Grade Object Oriented Programming Quizzes, Questions & Answers
Think your child knows their 12th grade Object Oriented Programming? Read more
Challenge them with our fun and engaging Object Oriented Programming quizzes! Perfect for reinforcing classroom learning and discovering new facts about the world around them.
Read less
12th Grade
Top Trending Object Oriented Programming Quizzes
This Objective C & OOP Examination 2 assesses knowledge in Objective C syntax, memory management, and OOP principles. It tests skills in function pointers, NSString manipulations, memory address behaviors, array operations, type...
Questions: 15 | Attempts: 469 | Last updated: Mar 21, 2025
-
Sample Question 1Which is the correct syntax to declare a function pointer named "foo" returning an integer and having an integer as argument?
-
Sample Question 2What can you assume when calling the "stringWithString:" method on a "NSString" object?
-
Sample Question 3What can you say about the memory addresses that will be printed by the following program? #import <Cocoa/Cocoa.h> int main( void ) { NSAutoreleasePool * pool; NSString * s1; NSString * s2; NSString * s3; NSString * s4; pool = [ [ NSAutoreleasePool alloc ] init ]; s1 = @"Hello world!"; s2 = @"Hello world!"; s3 = [ NSString stringWithString: @"Hello world!" ]; s4 = [ [ NSString alloc ] initWithString: @"Hello world!" ]; printf( "%p\n%p\n%p\n%p\n", s1, s2, s3, s4 ); [ s4 release ]; [ pool release ]; return 0; }
Recent Object Oriented Programming Quizzes
Questions: 20 | Attempts: 511 | Last updated: May 22, 2025
-
Sample QuestionWhich of the following concepts provides facility of using object of one class inside another class?
Questions: 20 | Attempts: 282 | Last updated: Mar 17, 2025
-
Sample QuestionWhat is the final value of x when the code int x; for(x=0; x<10; x++) {} is run?
Questions: 25 | Attempts: 115 | Last updated: Aug 22, 2025
-
Sample QuestionWhich of these package is used for graphical user interface?
Questions: 10 | Attempts: 125 | Last updated: Mar 18, 2025
-
Sample QuestionWhat was Objective-C for Apple back in the 1980s?
Questions: 10 | Attempts: 365 | Last updated: Mar 21, 2025
-
Sample QuestionWhat's the short form of object oriented analysis and design?
Questions: 10 | Attempts: 1421 | Last updated: May 8, 2025
-
Sample QuestionWhich of these is not covered in the OOPs quiz test?
Questions: 10 | Attempts: 8557 | Last updated: Aug 23, 2025
-
Sample QuestionIf class A is friend of class B and if class B is friend of class C, which of the following is true?
Questions: 25 | Attempts: 728 | Last updated: Mar 21, 2025
-
Sample QuestionPolymorphism enables you to:
Questions: 30 | Attempts: 7448 | Last updated: Sep 22, 2025
-
Sample QuestionConsider the following situation: a company realizes projects; each project is executed by a team of employees. Which would be a suitable conceptual UML diagram?
Advertisement