It2EDU

Wednesday, November 30, 2016








Amazing Mathematics





1 x 8 +1 = 9


12 x 8 + 2 = 98


123 x 8 + 3 = 987


1234 x 8 + 4 = 9876


12345 x 8 +5 = 98765


123456 x 8 + 6 = 987654


1234567 x 8 + 7 =9876543


12345678 x 8 + 8 =98765432


123456789 x 8 + 9 =987654321








1 x 9 + 2 =11


12 x 9 + 3 = 111


123 x 9 + 4 =1111


1234 x 9 +5= 11111


12345 x 9 +6=111111


123456 x9 +7 = 1111111


1234567 x 9 +8 =11111111


12345678 x 9 +9 =111111111


123456789 x 9 +10 =1111111111





9 x 9 + 7 = 88


98 x 9 + 6 = 888


987 x 9 + 5 = 8888


9876 x 9 + 4 = 88888


98765 x 9 + 3 =888888


987654 x 9 + 2 =8888888


9876543 x 9 + 1 =88888888


98765432 x 9 + 0 = 888888888





1 x 1 = 1


11 x 11 = 121


111 x 111 = 12321


1111 x 1111 = 1234321


11111 x 11111 = 123454321


111111 x 111111 = 12345654321


1111111 x 1111111 = 1234567654321


11111111 x 11111111 = 123456787654321


111111111 x 111111111 = 12345678987654321
































Assistant Executive
Engineers in Endowment Dept:


Government of Andhrapradesh is hiring Assistant Executive
Engineers in Endowment department on contract basis. The contract period is 5 years.
The selected candidates are working in various temples located in
Andhrapradesh. 





Details of the Posts:


Assistant Executive Engineers Civil – 31


Assistant Executive Engineers Electrical – 9





Qualification: At least 60% marks in civil or electrical
engineering.





Age Limit: Maximum 36 years as on 01.06.2016





Selection process: Based on written test.





Exam Center: Hyderabad





Last date to apply: 15 December 2016.





Eligible candidates can send their applications in
prescribed form (available on www.escihyd.org)
along with Registration Fee of Rs. 500/- in favour of "IE (I) -
Engineering Staff College of India", payable at Hyderabad to the following
address so as to reach on or before 15.12.2016.




See the detailed notification click here




Convener,

Services for Recruitment,

Water Resources Development Division,

Engineering Staff College of India,

Old Bombay Road, Gachibowli, Hyderabad - 5000 032.


Applications are available in the web site: www.escihyd.org





Assistant Professors – NCERT:





The National Council of Educational Research and Training is
about to hire 240 eligible candidates for Teaching posts. For
filling up these vacancies it has invited the NCERT Recruitment 2017 online application form from the eligible
candidates in between the dates 26th November to 25th December 2016
and after the successful online applicants, the candidates need to submit the
hard copy of the NCERT Teacher Vacancy 2017 Application Form to the
given address along with all necessary documents on or before 10th January.




Professors -35




Associate Professors – 71


Assistant Professor – 131





Required Qualification:


For Associate Professor and Professor:
Candidates should have good academic record with a Ph.D. Degree in the
concerned/allied/relevant discipline or equivalent with 08 years teaching
and/or research experience.


For Assistant Professor:
Candidates should have good academic record with 55% marks in Master’s Degree
in relevant subject and should have qualified National Eligibility Test (NET)
in the relevant subject.  





See the detailed notification click here





Apply online here.














 











Friday, November 25, 2016



Project Staff Jobs in Center for Materials for Electronics Technology (C- MET)




C- MET is an autonomous scientific society under department of Electronic &Technology, Ministry of Communication and Information technology.



Job Details:



Project Staff -2 vacancies.



Required Education :  MSC in Physics/Electronics/Instrumentation/Chemistry/Material Science or

                                  BE or B Tech in Electronics/Instrumentation/Metallurgy.

Selection Process   : Based on Interview.



Last Date to apply : December 14, 2016.



C-MET also hiring consultants on contract basis. last date to apply December 7, 2016.



For more details visit www.cmet.gov.in



Application Direct Link: click here (http://www.cmet.gov.in/jobs).




Project Support Staff In C-DAC Hyderabad




CDAC is hiring project support staff for Hyderabad location. C-DAC established its Hyderabad Centre in the year 1999 to work in
Research, Development and Training activities embracing the latest
Hardware & Software Technologies. The centre is a Knowledge Centre
with the components of Knowledge Creation, Knowledge Dissemination and
Knowledge Application to grow in the areas of Research &
Development, Training and Business respectively. The R & D areas of
the centre are e-Security, Embedded Systems, Ubiquitous Computing,
e-Learning and ICT for Rural Development.



Job Details:



Project Engineers : 7 vacancies.



Required Education: First Class in BE/ BTech/MCA or Post Graduation in Computer science /IT/Electronics



Project Support Staff: 2 vacancies.



Required Education: Degree with minimum 50% of marks in related subject with three experience.

                                                        or

                                  PG in related subject.



Last date to apply: December 10, 2016



Applications are available in official website : www.cdac.in Clikc here

























Monday, November 21, 2016


1) String is mutable or immutable in java?



Ans: In java all string are immutable. ( a mutable string can be changed but immutable string cannot be changed).



2) StringBuffer is thread safe or not?



Ans: A StringBuffer is thread safe because it is synchronized. StringBuffer object is mutable.



3)What is StringTokenizer?



Ans: StringTokenizer is a class in java.util package this allows the string into tokens (pieces).



4)What is StringBuffer?



Ans: The StringBuffer is a class provided by java which is used to represent characters that can be modified.



5)What is StringBuilder?



Ans: StringBuilder is class in java introduced in java5. It allows you to expand the number of characters that it encapsulates it you can specify a value for the maximum number of characters that it can hold. if you need to concatenate a large number of strings, appending to a StringBuilder object is more efficient.



6) What is String in java?



Ans: String is a class in Java and available in java.lang package.String is immutable and final in Java and JVM uses String Constant Pool to store all the String objects.



7) What is the operator is used to compare two strings?



Ans:  equals() or equalsIgnoreCase() method should be used to compare two string objects in Java.



8) How to create String objects in java?



Ans: Creating string objects in java is of two types.

          1.String s1 = new String("java");

          2. String s1="java";



9). What does intern() method do in Java?



Ans: String object created by new() operator is by default not added in String pool as opposed to String literal the intern() method allows putting string object into pool.



10) What is the difference when String is gets created using literal or new() operator ?



Ans: When we create string with new() its
created in heap and not added into string pool while String created
using literal are created in String pool itself which exists in Perm
area of heap.















  

Sunday, November 20, 2016







               ANDHRA PRADESH PUBLIC SERVICE COMMISSION

                                          HYDERABAD


                                    NOTIFICATION NO.18/2016, Dt. 08/11/2016


           GROUP-II SERVICES                                      GENERAL RECRUITMENT





Applications are invited
On-line for recruitment to the posts of Group-II Services.





The proforma Application will be available on  Commission’s Website ww.psc.ap.gov.in from 11/11/2016 to10/12/2016 (Note:10/12/2016
is the last date for payment of fee up- to 11:59
mid night).







Before
applying for the post, an applicant shall register his/her bio-data particulars
through One Time Profile Registration (OTPR)
on the Commission Website viz.,
www.psc.ap.gov.in. Once applicant registers his/her particulars, a User ID is generated
and sent to his/her registered mobile
number and email ID. Applicants need to apply for the post using the OTPR User
ID through Commission’s website.





Apply here for Generate OTPR





Online application submission  click here (Direct link)





 The
Commission conducts Screening test in Off- Line mode in case applicants exceed
25,000 in number and likely to be held on 26/02/2017FN.





The
main examination in On-Line mode for candidates selected in screening test will
be held through computer based test on 20/05/2017
FN & AN and 21/05/2017 FN





The objective
type question papers are to be answered on computer system. Instructions
regarding this computer based recruitment test are detailed in the Annexure -
III.




MOCK
TEST facility would be provided to the applicants to acquaint themselves with
the computer based recruitment test. Applicant shall visit the website and
practice the answering pattern under MOCK TEST option available on main page of
website
www.psc.ap.gov.in





HALL TICKETS can be
downloaded 7 days before commencement of Examination.





All
desirous and eligible applicants shall apply ON-LINE after satisfying
themselves that they are eligible as per the terms and conditions of this
recruitment. Click here for Detailed notification.





 For any technical issues while applying please contact 





 Online submission and downloading
of Hall Tickets please contact 040- 29802633 


(Call Time: 10.30 A.M to 1.00 P.M
&& 1.30 P.M to 5.00 P.M) 


 or 


 mail to appschelpdesk@gmail.com





How to Apply:









(i) The Applicants have to
read the User manual for On-Line submission of application and then proceed
further. User manual is available at
www.psc.ap.gov.in





I STEP: The applicant has to fill the OTPR application to obtain ID Number.
While filling the same, the
candidates have to ensure that there are no mistakes in it. The Commission
bears no responsibility for the mistakes, if any, made by the candidates.





II STEP: The applicant has to fill and submit Application and Click on the Link
with Notification Number and Name,
OTPR ID Number and Date of Birth to proceed further.





Applicant has to verify the
details as obtained from OTPR database displayed on the screen. If any details
are to be changed, applicant should go back to the website and use the Modify
OTPR link. In addition to the details obtained from OTPR database, Notification
specific details such as Examination City opted, eligibility and accepting
declarations etc. are to be filled by the applicant. (Preview and Edit facility
is available to make changes) and SUBMIT the application form. An Application
Fee ID is generated and sent through the SMS/email after successful submission
of application form, which is to be used for payment of Fee.





III STEP:- Once the Application Fee ID is generated, select the payment of Fee
option for paying through either Net
banking / Credit Card / Debit Card.





IV STEP:-After payment of fee, the PDF Application will be generated which
contains the particulars furnished
by the applicant. The Application Fee ID No in the PDF Application form has to
be quoted for future reference/correspondence.





·                   
Applicant shall note that, the details available with OTPR database at
the time of submitting the application will be considered for the purpose of
this notification. If, any changes are made by the applicant to OTPR database
at a later date will not be considered for the purpose of this Notification.





·                   
Hand written/ Typed/ Photostat copies/ outside printed Application Form
will not be accepted and liable for rejection.





·                   
iii) For any Technical problems related to Online submission and
downloading of Hall Tickets please contact 040- 29802633 (Call Time: 10.30 A.M
to 1.00 P.M && 1.30 P.M to 5.00 P.M) or mail to appschelpdesk@gmail.com





Fee Details:









Applicant must pay Rs.
250/- (Rupees Two Hundred and Fifty Only) towards application processing fee
and Rs 80/- (Rupees Eighty only) towards Examination Fee.





However, the following categories of candidates are exempted from payment of examination fee of Rs.80/- only.





·       
SC, ST, BC, PH & Ex-Service Men.





·       
Families having Household Supply White Card issued by Civil Supplies
Department, A.P. Government. (Residents of Andhra Pradesh)





·       
Un-employed youth in the age group of 18 to 42* years as per G.O.Ms.No.439, G.A.(Ser.A) Dept., dated: 18/10/1996 should submit declaration at
an appropriate time to the
Commission.





·       
Applicants belonging to the categories mentioned above (except
Physically Handicapped Persons & Ex-Service Men) hailing from other States
are not entitled for exemption from payment of fee and not entitled for
claiming any kind of reservation.





b)  Mode of Payment of Fee:





i)              
The Fee mentioned in the above paragraph is to be paid On-Line using
Payment Gateway using Net Banking/ Credit card / Debit Card. The list of Banks providing service for the purpose of online
remittance of Fee will be appended separately.





ii)             
The fee once remitted shall not be refunded or adjusted under any
circumstances. Failure to pay the examination fee, application fee will entail
total rejection of application.


iii)        IPO's/ DD's are not accepted.





Any other details related to Group II services visit official site: https://www.psc.ap.gov.in/