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: 471 | 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: 10 | Attempts: 82 | Last updated: Mar 17, 2025
-
Sample QuestionStructured programming known as?
Questions: 20 | Attempts: 284 | 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: 7 | Attempts: 88 | Last updated: Mar 20, 2025
-
Sample QuestionClass can have only one object.
Questions: 10 | Attempts: 567 | Last updated: Mar 21, 2025
-
Sample QuestionWhich of these was Smalltalk first released as?
Questions: 10 | Attempts: 1426 | Last updated: May 8, 2025
-
Sample QuestionWhich of these is not covered in the OOPs quiz test?
Questions: 10 | Attempts: 366 | Last updated: Mar 22, 2025
-
Sample QuestionThe most generalized class and also said to be a root class?
Questions: 10 | Attempts: 8582 | 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: 731 | Last updated: Mar 21, 2025
-
Sample QuestionPolymorphism enables you to:
Questions: 15 | Attempts: 74 | Last updated: Mar 22, 2025
-
Sample QuestionWhen a default constructor is explicitly defined by the programmer the default constructor provided by the compiler is overridden
Questions: 20 | Attempts: 287 | Last updated: Mar 17, 2025
-
Sample QuestionWhich is a reserved word in the Java programming language?
Advertisement