Pinned Repositories
-Sum-of-Natural-Numbers
ArrayList.java
I add elements to an ArrayList by using add() method, this method has couple of variations, which we can use based on the requirement. For example: If we want to add the element at the end of the List then simply do it like this:
Button-Click-Event
When the TOGGLE button is clicked, the webpage sends a Toggle request message to the device via ‘gpio-raspberry-control’ channel
C-Program-to-Check-Leap-Year
Convert-Octal-to-Decimal.c
Coursera-machine-learning-ex2
Programming Assignment: Logistic Regression
COURSERA-MACHINE-LEARNING-WEEK-5-SOLUTIONS---Programming-Assignment-Neural-Network-Learning-solution
Java-Program-to-Display-Fibonacci-Series
Mathematics-for-Machine-Learning-Multivariate-Calculus-Fitting-the-distribution-of-heights-data
Programming-Assignment-K-Means-Clustering-and-PCA-Machine-Learning-WEEK-8
EngineerInd's Repositories
EngineerInd/ArrayList.java
I add elements to an ArrayList by using add() method, this method has couple of variations, which we can use based on the requirement. For example: If we want to add the element at the end of the List then simply do it like this:
EngineerInd/cakephp
EngineerInd/calculator
html code
EngineerInd/Code-With-Harry-Java
Restart it
EngineerInd/code-with-harry-java-questions
Practice Questions on Arrays in Java
EngineerInd/Coursera-Python-for-everybody-solutions
Python for everybody assignment 2.2, 2.3, 3.1, 3.3, 4.2, 4.6, 5.2
EngineerInd/Data-Type-In-Java
Primitive Data Types (Intrinsic &) Non-Primitive Data Types (Derived)
EngineerInd/Fibonacci-program-in-Ruby
The task is to develop a program that prints Fibonacci series in Ruby Programming Language. Before getting into the logic to build Fibonacci series, let us understand what exactly a Fibonacci series means. Fibonacci series is nothing but a series of numbers in which the current number is the sum of the previous two numbers. e.g. The Fibonacci series up to 10 is: 1, 1, 2, 3, 5, 8, 13, 21, 34, 55
EngineerInd/forEach
In Java 8, we have a newly introduced forEach method to iterate over collections and Streams in Java. In this guide, we will learn how to use forEach() and forEachOrdered() methods to loop a particular collection and stream.
EngineerInd/forEach-to-iterate-a-List
In this example, we are iterating an ArrayList using forEach() method. Inside forEach we are using a lambda expression to print each element of the list.
EngineerInd/GATE-2012-CODING
What will be the output of the following C program segment?
EngineerInd/GATE2012---Q2
Consider the following C program
EngineerInd/GATE2012-Q3.C
3. What output will be generated by the given code d\segment if: Line 1 is replaced by “auto int a = 1;” Line 2 is replaced by “register int a = 2;”
EngineerInd/github-education-
EngineerInd/GREAT-PYTHON
COMPLETE PYTHON
EngineerInd/How-to-make-deep-copy-work-in-dictionary-in-Python
EngineerInd/interchange.py
Python program to interchange first and last elements in a list
EngineerInd/Java-Practice-Problems
Practice Set
EngineerInd/JavaEaxmple.java
Change an element in ArrayList
EngineerInd/Literals-in-Java
101 – Integer literal 10.1f – float literal 10.1 – double literal (default type for decimals) ‘A’ – character literal true – Boolean literal “Harry” – String literal
EngineerInd/Malaria-Detection
malaria detection using neural network in matlab
EngineerInd/Multiply-given-two-integers
The first line of the input contains two numbers separated by a space
EngineerInd/Print-the-larger-number.
Given two integer numbers as input, print the larger number.
EngineerInd/proc-and-a-lambda
Both procs and lambdas are stored blocks but syntax and behavior differs slightly.
EngineerInd/Question-42-GATE-2013
GATE | GATE CS 2013 | Question 42
EngineerInd/Read-the-integer-number-as-input
Write a program in python to read the integer number as input and print the same.
EngineerInd/Ruby---Strings
String object in Ruby holds and manipulates an arbitrary sequence of one or more bytes, typically representing characters that represent human language.
EngineerInd/scientist
EngineerInd/snippet
What is the output of the following code snippet?
EngineerInd/swap
swap two number in c