studyskymate
Information at a glance | Blog by Dinesh Kumar
Pages - Menu
(Move to ...)
Home
Core Java Index
Java Practice
MDP
SQL
MG-CEIT Calendar 2020
Contact Us
MG-CEIT website
Quiz
Car Booking Site
Core Java Assessment -1
IIT Kharagpur Courses
▼
Pages
(Move to ...)
Home
Core Java
ePariksha
jQuery
Car2Go
JavaScript
Java Interview
JSP
Hibernate
CDAC Certificates
Contact Us
▼
Thursday, January 4, 2024
Graph QL Simple working example
›
Here's a simple working tutorial on creating a GraphQL server using Node.js and Express, with a basic query and mutation. We'll be u...
Saturday, November 4, 2023
Sorting on the basis of multiple fields
›
function sortObjects(arr) { arr.sort(function(a, b) { if (a.adviserid < b.adviserid) { return -1; } else if (a.adviseri...
Wednesday, August 2, 2023
Decorator Design Pattern
›
Decorator Design Pattern in Java T he Decorator design pattern is a structural pattern that allows behavior to be added to an individual obj...
Sunday, July 9, 2023
Java (JVM) Memory Model - Switches
›
VM Switch VM Switch Description -Xms For setting the initial heap size when JVM starts -Xmx For setting the maximum heap size. -Xmn For se...
Wednesday, July 14, 2021
Consumer Example in Java 8
›
Consumer Example in Java 8 forEach in Iterable.java interface which uses Consumer: default void forEach(Consumer<? super T > ...
Tuesday, January 12, 2021
Docker: Important Docker Commands Help
›
Docker: Important Docker Commands Help Dockerfile: FROM adoptopenjdk/openjdk11:latest EXPOSE 8080 ADD "target/docker-demo-0.0.1-SNAPSHO...
Wednesday, November 25, 2020
Leet Code Problems Solutions
›
Intersection of Two Arrays I Given two arrays, write a function to compute their intersection. Example 1: Input: nums1 = [1,2,2,1] , nums2 =...
‹
›
Home
View web version