MrJazsohanisharma
Showing posts from 2022

TypeScript Tutorial

1. What is TypeScript? a. TypeScript is a syntactic superset of JavaScript which adds static typing. This basically means that TypeScript adds syntax on top of JavaScript, allowing developers to add types. b. Syntactic …

Google Browser Shortcuts

Shortcuts CRTL+W Close current tab CRTL+D Create bookmark CRTL+G, CRTL+F Search in page CRTL+T open new tab CRTL+R Reload page CRTL+H see history CRTL+J see download history CRTL+K Type anything in url to search CRTL+L selec…

MultiThreading in java

Multithreading Useful links: Read more about multithread What is multithreading: Multithreading is a concept of running multiple threads simultaneously. Reasons for using Multithreading in Java:  Read More Parallel Programming …

Pymetrics assessment test

Pymetrics test  What is Pymetrics test and how to prepare->  https://www.youtube.com/watch?v=Nz3VXx5pPyk&t=613s&ab_channel=PrimalCareer Pymetrics test games video ->  https://www.youtube.com/watch?v=lr_O2l_P6MY&…

SQL interview query

employee table CREATE TABLE public.employee (   id integer NOT NULL,   employee_name character varying(255),   salary double precision,   id_dept integer,   CONSTRAINT prim_id PRIMARY KEY (id),   CONSTRAINT department_id FOREIGN …

Roadmap for interview preparation for experiened java developer

For Backend Java EE JDK 7 OOPS Collection Threading Exception handling Java 8 Features Hibernate Spring Boot Design Pattern (optional) Algorithms  (optional) For Front-end: HTML CSS Bootstrap JavaScript jQuery Angular  Reactjs D…

JavaScript and JQuery cheatSheet

Check value is null or empty or undefined function isNullOrEmpty(value) {     if (typeof value !== "undefined" && value != "null" && value != null && value.trim() != "") {   …

Booststrap cheatSheet

Loader modal: < div id ="loaderModal" class ="modal fade" role ="dialog" style =" z-index : 1000000 ; &qu…

Basic Excel shortcuts and useful commands for developers

Current Time: CRTL+SHIFT+; Current Date: CRTL+; Total sum of a colum: ALT+= Select entrire row: SHIFT+space Select entrire column: CRTL+space  Hide column: CRTL+0  Hide Row: CRTL+9 Show/Hide formula: CRTL+~ New line in a cell: AL…

That is All