Forwarded from CAMPUS DRIVE - Placement Jobs & Materials
AppliedAICourse - Applied Machine Learning Course [30 GB]https://drive.google.com/drive/mobile/folders/1g1RoiOX8Rwwq71OH59hwBl26JbX0mDd4
Share & Support the channel ✌️🏻
Telegram: @campusdrive
Programming languages: Java founder James Gosling reveals more on Java and Android | ZDNet
https://www.zdnet.com/google-amp/article/programming-languages-java-founder-james-gosling-reveals-more-on-java-and-android/
https://www.zdnet.com/google-amp/article/programming-languages-java-founder-james-gosling-reveals-more-on-java-and-android/
ZDNet
Programming languages: Java founder James Gosling reveals more on Java and Android | ZDNet
James Gosling explains his motivations for creating programming language Java.
5 Best Data Analytics tools for 2020 | TechGig
https://content.techgig.com/5-best-data-analytics-tools-for-2020/articleshow/78388879.cms
https://content.techgig.com/5-best-data-analytics-tools-for-2020/articleshow/78388879.cms
TechGig
5 Best Data Analytics tools for 2020
Data Science and Analytics is among the hottest and most sought after tech skill of 2020. Since most of the modern-day businesses are data-driven, data analysis
The Flavors of Object-Oriented Programming (in JavaScript)
https://css-tricks.com/the-flavors-of-object-oriented-programming-in-javascript/
https://css-tricks.com/the-flavors-of-object-oriented-programming-in-javascript/
CSS-Tricks
The Flavors of Object-Oriented Programming (in JavaScript) | CSS-Tricks
In my research, I've found there are four approaches to Object-Oriented Programming in JavaScript. Which methods should I use? Which one is "the best" way? Here I'll present my findings along with information that may help you decide which is right for you.
class output {
public static void main(String args[])
{ double a,b,c; a=3.0/0; b=0/4.0; c=0/0.0 ; System.out.println(a); System.out.println(b); System.out.println(c); } What will be the output?
public static void main(String args[])
{ double a,b,c; a=3.0/0; b=0/4.0; c=0/0.0 ; System.out.println(a); System.out.println(b); System.out.println(c); } What will be the output?
Anonymous Quiz
18%
Infinity
32%
0.0
23%
NaN
27%
all of the mentioned
class A
{
A()
{
System.out .println("Code");
}
A(String name)
{
this();
System.out.println("CodeQuotient : " + name);
}
}
public class Main extends A
{
Main()
{
System.out.println("Quotient");
}
Main(String name)
{
this();
System.out.println("CodeQuotient : " + name);
}
public static void main(String[] args)
{
Main b = new Main("Girdhar");
}
}
What will be the output?
{
A()
{
System.out .println("Code");
}
A(String name)
{
this();
System.out.println("CodeQuotient : " + name);
}
}
public class Main extends A
{
Main()
{
System.out.println("Quotient");
}
Main(String name)
{
this();
System.out.println("CodeQuotient : " + name);
}
public static void main(String[] args)
{
Main b = new Main("Girdhar");
}
}
What will be the output?