This below blog post will help you to find the current date and time in JavaScript and we are also
Continue readingHow to Create a Branch in Remote Git Repository
In any Version Management, Branching is a efficient way to manage code version management application like git, svn. In development
Continue readingHow to Clear cache in Laravel 5
Several times we have faced an issue that we make any changes to the Laravel application are not reflecting on
Continue readingSQL Server :- STUFF AND FOR XML PATH for String Concatenation
STUFF AND FOR XML PATH in SQL Server :- We can use XmlPath(”) to concatenate multiple column data into single
Continue readingConcatenate text from multiple rows into a single string in SQL server?
suppose there is a table entrepreneur in a database holding names, with multiple rows like below:- For Example:- Company_Id
Continue readingSQL SERVER – How to Identifying TempDB is growing abnormally in SQL SERVER
Recently I have observed that the size of the TempDB is growing rapidly then I tried to identify which queries
Continue readingSetting PowerShell Execution Policy
Recently when I tried to execute powershell script files to a production environment I got this error: “cannot be loaded
Continue readingCaesar Cipher Encryption and Decryption In Java
Caesar Cipher:- Caesar cipher is one of the earliest known and simplest ciphers. It is a type of replacement cipher in which each
Continue readingJava Program to Calculate Determinant of a Matrix
import java.io.BufferedReader; import java.io.InputStreamReader; import java.util.*; public class Main { // A Function to read array elements from user and
Continue readingC++ Program to calculate Determinant of a Matrix
C++ Program to calculate Determinant of a Matrix #include<iostream> #include<math.h> using namespace std; int matrix_determinant( int matrx[10][10], int n) {
Continue reading