
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
AmitDiwan has Published 10744 Articles

AmitDiwan
604 Views
In this tutorial, we will learn how to install Ocenaudio for Windows. Before beginning with the installation, let us first understand what is Ocenaudio. Ocenaudio is a versatile, quick, and easy-to-use audio editor. For those who need to easily alter and analyse audio recordings, this software is perfect. The most ... Read More

AmitDiwan
248 Views
In this tutorial, we will learn how to install GoldWave Audio Editing Software on Windows. Before beginning with the installation, let us first understand what is GoldWave. GoldWave is a Digital Audio Editing Software to record, restore, convert and analyze. A highly regarded, expert digital audio editor named GoldWave can ... Read More

AmitDiwan
2K+ Views
In this tutorial, we will learn how to install and use Greenshot on Windows. Before beginning with the installation, let us first understand what is Greenshot. Greenshot is a lightweight screenshot software utility for Windows. Greenshot is a useful tool for project managers, software engineers, technical writers, testers, and anybody ... Read More

AmitDiwan
466 Views
The JavaScript BOM Window screen contains the information about the client’s screen.The BOM window screen properties are −PropertiesDescriptionscreen.widthReturn the user screen width in pixels.screen.heightReturn the user screen height in pixels.screen.availWidthReturns the user screen width in pixels without taking into account the interface features.screen.availHeightReturns the user screen height in pixels without ... Read More

AmitDiwan
1K+ Views
Yes, it is possible to append to innerHTML without destroying descendants event listeners. Let us see an example. First, we will create two functions with JavaScript. Here’s the demoFunc() − function demoFunc() { alert("Hello"); } The function demoFunc() above will display an alert box and a ... Read More

AmitDiwan
3K+ Views
We can Use the canvas.toDataURL() to capture HTML canvas as different file formats, such as gif, png, jpg, webp, etc. Capture HTML Canvas as png Example Herein, after using canvas.DataURL(), set the type to image/png to allow saving the image as PNG − ... Read More

AmitDiwan
13K+ Views
To add images in the select list, set the img text for the image in the tag, which is enclosed in a div − Python In the ... Read More

AmitDiwan
10K+ Views
We will set the vertical scroll using the overflow-y property − overflow-y: auto; We will hide the horizontal scroll using the overflow-x property − overflow-x: hidden; Example Let us see an example − Display table ... Read More

AmitDiwan
1K+ Views
A flex container is always the parent and a flex item is always the child. The scope of a flex formatting context is limited to a parent/child relationship. Descendants of a flex container beyond the children are not part of flex layout and will not accept flex properties. There are ... Read More

AmitDiwan
133 Views
To fix this use, we need to use the overflow property and set it on the outer parent div. We have an inner child div and an outer parent div − The outer parent div is set with the ... Read More