What is JavaScript?JavaScript is a very powerful client-side scripting language(will discuss later). JavaScript is used mainly for enhancing the interaction of a user with the webpage(page opened in the browser). In other words, you can make your webpage more lively and interactive, with the help of JavaScript.JavaScript was developed by...
Sunday, August 28, 2022
What is JavaScript, NodeJs, ReactJs, TypeScript?
Posted by Zuhair Ahmed on August 28, 2022 with No comments
Tuesday, August 16, 2022
Manual edit for Windows right click context menu
Posted by Zuhair Ahmed on August 16, 2022 with No comments
Edit Right Click Menu for DesktopHKEY_CLASSES_ROOT\Directory\Background\shellHKEY_CLASSES_ROOT\Directory\Background\shellex\ContextMenuHandlers Edit Right Click Menu for FoldersHKEY_CLASSES_ROOT\Folder\shellex\ContextMenuHandlers\HKEY_CLASSES_ROOT\Directory\shellEdit Right Click Menu for FilesHKEY_CLASSES_ROOT\*\shellex\ContextMenuHandl...
Thursday, May 26, 2022
Calculate easy way (My created easy problem- Codeforces Style)
Posted by Zuhair Ahmed on May 26, 2022 with No comments
Solution: #include<iostream>using namespace std;int main(){ int n,p; cin>>n>>p; if(n>p) { while(n%10!=0) { n++; p--; ...
Thursday, May 19, 2022
How to reverse a string (with Codeforces Example)
Posted by Zuhair Ahmed on May 19, 2022 with No comments
The algorithm will first have to reverse the string and check with the second string. We can do this both in library function and also by using a loop.So the solution of first image is given below:#include<bits/stdc++.h>#include<string>using namespace std;int main(){ string s,t; cin>>s>>t; ...