The Joint Seat Allocation Authority (JoSAA) 2021 has been set up by the Ministry of Education [erstwhile Ministry of Human Resources Development (MHRD)] to manage and regulate the joint seat allocation for admissions to 114 institutes for the academic year 2021-22. This includes 23 IITs, 31 NITs, IIEST Shibpur, 26 IIITs and 33 Other-Government Funded Technical Institutes (Other-GFTIs). Admission to all the academic programs offered by these Institutes will be made through a single platform.
Question 1 Correct Mark 1.00 out of 1.00 Flag question Question text ___ and _____ are the access specifiers that can be applied to top level Class. Select one or more: public protected default private Feedback Your answer is correct. The correct answers are: default, public Question 2 Correct Mark 1.00 out of 1.00 Flag question Question text class Sample{ private double num = 100; private int square(int a){ return a*a; } } public class Test{ public static void main(String args[]){ Sample obj = new Sample(); System.out.println(obj.num); System.out.println(obj.square(10)); } } Select one: Compile time error Run time error Executes but no output 100 Feedback Your answer is correct. The correct answer is: Compile time error Question 3 Correct Mark 1.00 out of 1.00 Flag question Question text Choose the ...
Comments
Post a Comment