Mahesh Technologies

Mahesh Technologies Mahesh Technologies providing wide range of online training classes. Our features:
Expert Trainers(Working in various Companies)! Weekend Classes also available!

Mahesh Technologies is one of the best online training center that offer online training for various IT courses and works with a mission Learn From Anywhere Anytime across the globe.We h Mahesh Technologies is one of the best online training center that offer online training for various IT courses and works with a mission Learn From Anywhere Anytime across the globe.We have the best faculties who

are Real Time Employees, highly skilled professionals and also certified in their subjects and have years of experience in training field. Teaching With Real time scenarios! Clear voice & Class room feeling! Support by Trainers post training also! Online Training- no travel required! Your Education Where you are……….! Learn Anywhere Anytime! We give ONE-TO-ONE online training through skype and ONE-TO-MANY training through web conference with an expert Trainer ready to provide you training at your time and availability.

09/08/2018

Greetings from Java E Training,

Advanced Java(JDBC, Servlets, JSP and JSTL) Online Training New Batch(Free Demo) starting from 14th AUG at 7.30 AM IST(i.e. 13th AUG 7 PM PST, 8 PM MST, 9 PM CST, 10 PM EST)

Please contact below for free Demo, Course fee, Syllabus, Timelines Etc
Mobile:+91 9640 400 300(INDIA)
Skype: mahesh.javaetraining
Email: [email protected]
Gtalk: [email protected]

10/07/2018

Greetings from Java E Training,

Java Online Training New Batch(Free Demo) starting from 16th FEB at 7.30 AM IST(i.e. 25th JAN 7 PM PST, 8 PM MST, 9 PM CST, 10 PM EST)

Here is the trainer details:
Our trainer name is Mahesh, He has around 5 years of Training and development experience in Java, JEE technologies related frameworks, He is Java SE 6 Programmer Certified Professional.

Training Methodology: Starts from the very basic till the latest, for the beginners we focus on the thorough understanding of JAVA language fundamentals and Software Engineering fundamentals, before moving to next Advanced level most freshers makes a breakthrough in their career.

Courses Offered as part of Java Online Training:
Core Java
Advanced Java(JDBC, Servlets, JSP and JSTL)
JMS
Spring
Hibernate
Web Services(SOAP and REST)
Design patterns
Real time tools which we normally use it while developing the Java applications like; SVN,Maven,Junit,Log4j..

Our Salient Features:
Training Provided by real-time faculties with real-time scenarios.
24/7 Access to the training material.
Every session will be recorded and access provided for the lifetime.

Please contact below for free Demo, Course fee, Syllabus, Timelines Etc
Mobile:+91 9640 400 300(INDIA)
Skype: mahesh.javaetraining
Email: [email protected]
Gtalk: [email protected]

13/02/2018

What is the output for the below code ?
public class Test{
int _$;
int $7;
int do;
public static void main(String argv[]){
Test test = new Test();
test.$7=7;
test.do=9;
System.out.println(test.$7);
System.out.println(test.do);
System.out.println(test._$);
}
}
Options are
A.7 9 0
B.7 0 0
C.Compile error - $7 is not valid identifier.
D.Compile error - do is not valid identifier.

10/02/2018

What is the output for the below code ?
1. public class Test {
2. int i=8;
3. int j=9;
4. public static void main(String[] args){
5. add();
6. }
7. public static void add(){
8. int k = i+j;
9. System.out.println(k);
10. }
11. }
Options are
A.17
B.0
C.Compilation fails with an error at line 5
D.Compilation fails with an error at line 8

Hi all...Here we provide DOT NET and JAVA job Support with highly experienced persons. If any one interested or for any ...
27/01/2016

Hi all...
Here we provide DOT NET and JAVA job Support with highly experienced persons.
If any one interested or for any quires you can contact us @ below details..

for .NET support
K. Naveen
9290245396
Gmail:- [email protected]

for JAVA support
G. Mahesh
9640400300
Gmail:- [email protected]

09/01/2016

Greetings from Mahesh Technologies,

Java Online Training New Batch(Free Demo) starting from 27th JAN at 7.30 AM IST(i.e. 26th JAN 6PM PST, 7 PM MST, 8 PM CST, 9 PM EST)

Here is the trainer details:
Our trainer name is Mahesh, He has around 5 years of Training and development experience in Java, JEE technologies related frame works, He is Java SE 6 Programmer Certified Professional.

Training Methodology: Starts from the very basic till the latest, for the beginners we focus on thorough understanding of JAVA language fundamentals and Software Engineering fundamentals, before moving to next Advanced level most freshers makes a break through in there career .

Courses Offered as part of Java Online Training:
Core Java
Advanced Java(JDBC, Servlets, JSP and JSTL)
Struts
EJB 3
JMS
Spring
Hibernate
Web Services(SOAP and REST)
Design patterns
Real time tools which we normally use it while developing the Java applications like; SVN,Maven,Junit,Log4j..

Our Salient Features:
Training Provided by real time faculties with real time scenarios.
24/7 Access to the training material.
Every session will be recorded and access provided for lifetime.
Resume preparation,mock interviews.

Please contact below for free Demo, Course fee, Syllabus, Timelines Etc
Mobile: +1 7035 963 390(US), +91 9640 400 300(INDIA)
Skype: mahesh.javaetraining
Email: [email protected]
Gtalk: [email protected]
Website: http://maheshtechnologies.com

15/10/2015

What is the output for the below code ?
1. public class Test {
2. public static void main(String[] args){
3. int i = 010;
4. int j = 07;
5. System.out.println(i);
6. System.out.println(j);
7. }
8. }

Options are
A.8 7
B.10 7
C.Compilation fails with an error at line 3
D.Compilation fails with an error at line 5

13/10/2015

What is the output for the below code ?

public class Test{
int _$;
int $7;
int do;
public static void main(String argv[]){
Test test = new Test();
test.$7=7;
test.do=9;
System.out.println(test.$7);
System.out.println(test.do);
System.out.println(test._$);
}
}
Options are
A.7 9 0
B.7 0 0
C.Compile error - $7 is not valid identifier.
D.Compile error - do is not valid identifier.

04/10/2015

Register on Naukri.com and Find Jobs in India. Free Registration. Submit your Resume Online and Search & Apply to jobs in India, Delhi, Mumbai, Bangalore. Jobs in IT, Sales, Marketing, Finance, Jobs for Professionals and Executives. Offering the Best Career Options.

21/06/2015

What will be the output of the program?

package foo;
import java.util.Vector; /* Line 2 */
private class MyVector extends Vector
{
int i = 1; /* Line 5 */
public MyVector()
{
i = 2;
}
}
public class MyNewVector extends MyVector
{
public MyNewVector ()
{
i = 4; /* Line 15 */
}
public static void main (String args [])
{
MyVector v = new MyNewVector(); /* Line 19 */
}
}

A. Compilation will succeed.
B. Compilation will fail at line 3.
C. Compilation will fail at line 5.
D. Compilation will fail at line 15.

08/12/2014

Solve This Question:-

21. class Money {
22. private String country = "Canada";
23. public String getC() { return country; }
24. }
25. class Yen extends Money {
26. public String getC() { return super.country; }
27. }
28. public class Euro extends Money {
29. public String getC(int x) { return super.getC(); }
30. public static void main(String[] args) {
31. System.out.print(new Yen().getC() + " " + new Euro().getC());
32. }
33. }
What is the result?
A. Canada
B. null Canada
C. Canada null
D. Canada Canada
E. Compilation fails due to an error on line 26.
F. Compilation fails due to an error on line 29.

28/11/2014

Today's quesion:-

11. abstract class Vehicle { public int speed() { return 0; }
12. class Car extends Vehicle { public int speed() { return 60; }
13. class RaceCar extends Car { public int speed() { return 150; }..
21. RaceCar racer = new RaceCar();
22. Car car = new RaceCar();
23. Vehicle vehicle = new RaceCar();
24. System.out.println(racer.speed() + ", " + car.speed()
25. + ", " + vehicle.speed());

What is the result?

A. 0, 0, 0
B. 150, 60, 0
C. Compilation fails.
D. 150, 150, 150
E. An exception is thrown at runtime.

Address

Hyderabad

Alerts

Be the first to know and let us send you an email when Mahesh Technologies posts news and promotions. Your email address will not be used for any other purpose, and you can unsubscribe at any time.

Contact The Business

Send a message to Mahesh Technologies:

Share