Naihati Computer Coaching Centre for Graduation & Class 11-12 Students

  • Home
  • India
  • Naihati
  • Naihati Computer Coaching Centre for Graduation & Class 11-12 Students

Naihati Computer Coaching Centre  for Graduation & Class 11-12 Students Computer Coaching for subjects C, JAVA, C #, DOT NET, Data Structure & Algo, Automata, Compiler Desi

12/10/2024

Heartfelt Tribute to Shri Ratan Tata

It took me time to come to terms with the news of Shri Ratan Tata's passing, and I’m still deeply shocked and saddened. As a former employee of Tata Consultancy Services (TCS), I feel a deep connection to the TATA family and the values they instilled in me.

I still remember my TCS interview back in 2015, when I was asked, "Why TCS?" Despite having prepared multiple answers, my mind went blank. Instead, I answered from my heart, and my response centered on the trust that the TATA name has built among Indians over decades. I told the panel that, even before fully understanding what TCS does, I wanted to be part of the company simply because of the values the TATA name represents. That’s the kind of impact a true philanthropist and visionary like Shri Ratan Tata had on me and countless others.

Shri Ratan Tata was not just a businessman; he was a beacon of generosity and simplicity, who donated 60% of his company’s profits to charity and lived a humble life despite the wealth he could have amassed. His contributions were never for personal gain but for the betterment of humanity.

We have lost an irreplaceable leader, a guiding light for millions. But his legacy, his kindness, and his impact will remain immortal.

Rest in peace, Shri Ratan Tata. You will continue to inspire generations to come.

असतो मा सद्गमय।
तमसो मा ज्योतिर्गमय।
मृत्योर्मा अमृतं गमय।।
-Brihadaranyaka Upanishad (1.3.28)

Translation:
Lead me from untruth to truth, from darkness to light, and from death to immortality.

15/07/2020

is looking for a .NET in to support and enhance our existing modules and drive product architecture and design of the SDLC. Sound like you? Reach out to me for a personal and check out our page for more info on the role.
https://bit.ly/2Zq2uxF

Job Opening
24/06/2020

Job Opening

Odessa is a U.S. company with offices in Philadelphia, USA and Bangalore, India. Our leasing solutions power a client base comprised of leading global financial institutions that operate across market segments. We transform bold ideas into breakthrough outcomes for clients that drive the economy thr...

16/04/2017

Download YouTube Video Without Using Any Software

16/04/2017

In this Video we'll learn how to download YouTube playlist at once without using any software. Link to YouTube Multi Downloader : http://youtubemultidownload...

True friendship is like sound health; the value of it is seldom known until it be lost.Happy Friendship Day...!!Friends ...
02/08/2015

True friendship is like sound health; the value of it is seldom known until it be lost.
Happy Friendship Day...!!
Friends are god's gift. Make Friends

30/07/2015

We have associated with starupcoding. Check this out at
https://www.facebook.com/startupcoding

Startupcoding is started up to you to start coding and learn, understand the basic concepts in an easy manner through blog and YouTube.

19/07/2015

Many guys are posting advertisements on this page. I humbly request all of them please not to post any type of advertisements here.

14/04/2015

Explanation of System.out. println():


To understand this concept better look this example first.


public class ExpPrintln {
public static void main(String[] args){
int length = Test.str.length();
System.out.println("Length : " + length);
}
}

class Test {
static String str = "startupcoding";
}


Now focus on the line Test.str.length();
Test --> It is a class.
str --> It is a static variable/object present in Test class of type String.
length() --> It is a method present in String class.
The System class is written in Java Compiler as something close as below. Compare this class with Test class we have written :

class System {
static PrintStream out;
/*
...........Statements..........
*/
}

Now compare Test.str.length(); with System.out.println(); :

System --> It is a class present in java.lang package.
out --> It is a static variable/object present in System class of type PrintStream.
println() --> this is a method present in PrintStream class.

=================================================
This is all about System.out.println();. If you have any further query feel free to comment below.
Share this if you like it.

13/04/2015

Today's Java Trick:
Ques: To print "Hello World" in java we normally used very famous method i.e. --> System.out.println("Hello World");
My question is print the same "Hello World" without using semicolon(;).

Ans:
CODE WITH USING SEMICOLON:
============================
public class HelloWorld{

public static void main(String []args){
System.out.println("Hello World");
}
}

CODE WITHOUT USING SEMICOLON:
===============================
public class HelloWorld{

public static void main(String []args){
if(System.out.printf("Hello World") == null) {}
// NO SEMICOLON IS HERE
}
}

EXPLANATION:
=============
Method signature for println() is
public void println(String x) {}
it returns nothing. But we have another function that we have used in C "printf()" and the method signature of this printf() in java is public PrintStream printf(String format, Object... args) {} . So it returns an object of PrintStream and in the code we put it in if condition. As it always returns an object so if condition will always returns false but we are able to print the desired output "Hello World" without using semicolon. :)

Address

Naihati
743165

Alerts

Be the first to know and let us send you an email when Naihati Computer Coaching Centre for Graduation & Class 11-12 Students 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 Naihati Computer Coaching Centre for Graduation & Class 11-12 Students:

Share