April 1, 2016 0 Welcome to your Yipee Technology Online Aptitude Test Name Email Phone Number 1. Find the output of following c code. #include int main(){ printf("C\question\bank"); return 0; Cquestionbank cuestioank cuestionank cquestioank 2. Which of the following statements is true? An exception can be thrown by throw keyword explicitly An exception can be thrown by throws keyword explicitly. 3. SQL: How many objects will be created in the following code? String s1="Welcome"; String s2="Welcome"; String s3="Welcome"; One Zero Two Three 4. What will be output if you will compile and execute the following c code? void main(){ int i=10; static int x=i; if(x==i) printf("Equal"); else if(x>i) printf("Greater than"); else printf("Less than"); } Equal Compiler error Less than Greater than None of above 5. Java: Which methods can access to private attributes of a class? Only classes available in the same package. Only Static methods of the same class Only methods those defined in the same class Only instances of the same class 6. Consider c code #define power(a) #a int main(){ printf("%d",*power(432)); return 0; } What will be printed? None of these 432 16 *”432” 52 7. Consider c++ code given bellow and give output using namespace std; main(){ short unsigned int i = 0; cout<<i--; Compiler Error 0 65535 1 8. What is the correct way to create a function in PHP? function myFunction() create myFunction() new_function myFunction() 9. Consider c code int main(){ printf("%d",sizeof(3.8)); return 0; } Which of the following is true? 10 Compiler Error None of these 8 4 10. A technique for direct search is Linear Search Tree Search Hashing Binary Search 11. How do you create an array in PHP? $cars = array("Volvo", "BMW", "Toyota"); $cars = array["Volvo", "BMW", "Toyota"]; $cars = "Volvo", "BMW", "Toyota"; 12. Consider c++ code given bellow and give output class abc { void f(); void g(); int x; }; main() { cout<<sizeof(abc)<<endl; Compiler Error 4 8 12 13. #include void main(){ char *ptr=“abcd” char ch; ch = ++*ptr++; cout<<ch; } Output? c a d b 14. What is return type of malloc() function? void void* int int* 15. If I don't provide any arguments on the command line, then the String array of main method will be empty or null or both? both null and empty it is empty, but not null It is null, but not empty depends on jre 16. Where Triggers are not allowed in MySQL database? none After Delete Before Insert Before Update 17. Size of void pointer is 4 byte 1 byte 2 byte 8 byte 18. What is use of \r in c? places cursor at the end of line used to insert a tab places cursor at the start of line used to insert a vertical tab 19. Include files must have the file extension ".inc" False True 20. How do you get information from a form that is submitted using the "get" method? Request.QueryString; Request.Form; $_GET[]; 21. PHP can be run on Microsoft Windows IIS(Internet Information Server): True False 22. What is the correct way to include the file "time.inc" in PHP? include file="time.inc"; include:"time.inc"; include "time.inc"; include file="time.inc" 23. What does PHP stand for? Private Home Page Personal Hypertext Processor PHP: Hypertext Preprocessor 24. Is there any difference between primary key and unique with NOT NULL condition? Depends on DBA Yes No 25. The PHP syntax is most similar to: Perl and C JavaScript VBScript 26. What will be printed if this is written in main() printf("%.0f", 2.89); 3 2.89 2.890000 2 27. What is the output of this C code? void foo(float *); int main(){ int i = 10, *p = &i; foo(&i); } void foo(float *p) { printf("%f\n", *p); } Undefined behaviour 10.000000 0.000000 Compile time error 28. When using the POST method, variables are displayed in the URL: True False 29. Answer True or False: main is keyword in Java. True False 30. Which of the following statements is false about objects? Objects do not permit encapsulation An instance of a class is an object Object is the super class of all other classes Objects can access both static and instance data Be sure to click Submit Quiz to see your results! Time's up