Reading Time: 1 minutesGuess the Number in Python Guess the Number in Python Python code for the famous game Guess the Number. Ask the player to guess a number between 1 and 100 […]
lakshayarora7
Why choose Python?
Reading Time: 6 minutesWhy choose Python? Why choose Python? If you are wondering why to learn Python, well, here's why: Easiest-to-learn & Most-enjoyable-to-use: Python is arguably the easiest-to-learn programming language, and the most […]
Python: Ternary Operator/Conditional Expression - x if condition else y
Reading Time: 1 minutesTernary Operator/Conditional Expression in Python Ternary Operator/Conditional Expression in Python A Ternary Operation involves 2 operators and 3 operands. Python offers a shorthand for if-then-else constructs using its ternary operator […]
Python: File Buffering
Reading Time: 3 minutesFile Buffering in Python File Buffering in Python: In the builtin open() function, there is an optional argument, called buffering. This argument is used to specify the file's desired buffer […]
Outlook: Close all open mails in 1 click without closing Outlook
Reading Time: 1 minutesClosing all open mails in Outlook in 1 click Closing all open mails in Outlook in 1 click: Many times we face the situation in which multiple open mails keep […]
Outlook: Recover Permanently Deleted Mails
Reading Time: 1 minutesRecovering Permanently Deleted Mails in Outlook: Many times it happens that we delete some of our important mails by using SHIFT+DELETE, and thus mails are even not present in our […]
SQL Optimizer Hints
Reading Time: 1 minutesSQL Optimizer Hints - Quick tips and description on frequently used SQL Hints: SQL Optimizer Hints /*+ ALL_ROWS */: The ALL_ROWS hint explicitly chooses the cost-based approach to optimize a […]
SQL Tuning Tips
Reading Time: 2 minutesSQL Tuning Tips SQL Tuning Tips Quick tips for SQL tuning tips: Do not modify indexed columns with functions such as RTRIM, TO_CHAR, UPPER, TRUNC as this will prevent the […]
SQL Tips & Tricks
Reading Time: 1 minutesSQL Tips & Tricks SQL Tips & Tricks Below are few details which will add value to your SQL knowledge. Count(*) vs Count(1) COUNT(SomeColumn) will only return the count of […]
Run Unix Process in Background
Reading Time: 1 minutesRun Unix Process in Background Run Unix Process in Background Sometimes during running jobs or commands which needs long time and you will want to run the command and "exit" […]



