Skip to main content

Posts

Showing posts with the label FAQS

Admit Card Released | Gate 2022

The Graduate Aptitude Test in Engineering (GATE) is an examination that primarily tests the comprehensive understanding of various undergraduate subjects in engineering and science for admission into the Master's Program and Recruitment by some Public Sector Companies. GATE 2022 is conducted by the Indian Institute of Technology Kharagpur and six other Indian Institutes of Technology at Mumbai, Delhi, Guwahati, Kanpur, Chennai, Roorkee & Indian Institute of Science at Bengaluru on behalf of the National Coordination Board – GATE, The Department of Higher Education, Ministry of Education (MoE), Government of India.  Admit card download available from January 15, 2022. Candidates MUST be aware of fake information (videos, email, SMS, etc.) related to GATE 2022 Examination.  Candidates are requested to check for the latest announcements only on this website ( https://gate.iitkgp.ac.in ).

Exceptions to Eligibility | Jee Advance 2022

The Joint Admission Board of JEE (Advanced) in the first JAB meeting held on December 14, 2021, deliberated on the numerous representations received regarding the eligibility criteria and was of the view that the exceptional circumstances and hardships faced due to the COVID-19 pandemic required some relaxation to be given. These relaxations are special one-time measures only. The following exceptions to the general eligibility criteria were accordingly deliberated and approved. One-time measure for those who first appeared in class 12th (or equivalent) examination in 2020/2021 AND successfully registered for JEE (Advanced) 2021 but did NOT appear      Candidates who appeared in class 12th (or equivalent) examination for the first time in 2020 OR 2021 AND successfully registered for JEE (Advanced) 2021 but were absent in BOTH the papers, i.e., Paper 1 and Paper 2, of JEE (Advanced) 2021, are eligible to directly appear for JEE (Advanced) 2022 and do not need to fulfill Cr...

Classes and Objects | Accenture TFA

  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 ...