Article Categories
- All Categories
-
Data Structure
-
Networking
-
RDBMS
-
Operating System
-
Java
-
MS Excel
-
iOS
-
HTML
-
CSS
-
Android
-
Python
-
C Programming
-
C++
-
C#
-
MongoDB
-
MySQL
-
Javascript
-
PHP
-
Economics & Finance
Articles on Trending Technologies
Technical articles with clear explanations and examples
How to Choose the Best Resource for UPSC Study Material?
Introduction Candidates preparing for UPSC Civil Services Exam always want to know from where they can get the best study material for the preparation. Though there are many sources from which they can collect the information, the opinion of the expert matters in its context. That's why in today's article, we are providing you with a complete picture of how to select the best resource for the preparation. So let's start- What Is UPSC Study Material, And Where Can I Find It? UPSC study material refers to the resources and materials required to prepare for the Civil Services Examination ...
Read MoreDo Topics Repeat in UPSC?
Introduction Candidates who have applied for the UPSC prelims and mains exams must have noticed that topics are repeated many a time under the CSE exam. Sometimes they encounter repeated questions and repeated issues. But they do not know realistically and factually whether topics are repeated in the CSE exam. That's why today we are focusing on this topic to provide better information for the aspirants. If you are interested, then stay with us till the end of today's article, because we will be providing you with valuable information. So let's start- Do Topics Repeat in UPSC? Yes, topics ...
Read MoreMS Office Alternatives
What is MS Office? Microsoft developed the Microsoft Office suite in 1988. The suite consists of various applications which are as follows − MS Word MS Excel MS PowerPoint MS OneNote MS Outlook MS Access These tools are used to make presentations, forms, tables, etc. Currently, MS Office 2016 version is being used for all purposes. Cost of MS Office The cost of MS Office Home and Business 2021 is Rs. 27, 999. Why there is a need for MS Office Alternatives? MS Office suite includes a lot of useful applications but the cost is very high for ...
Read MoreCurrent Affairs: Everything You Need to Know While Preparing for UPSC
Introduction Any candidate who is preparing for UPSC knows the importance of current affairs in the examination, and that's why to stay updated with what is happening all across the globe, candidates always follow newspapers and online websites. But most of them do not know which are the best websites to follow. If you also want to know this, then stay with us in today's article, because we are going to tell you which are the best websites for current affairs under UPSC. So let's start- Why Are Current Affairs an Important Part of UPSC Preparation? Current affairs are an ...
Read MoreCan I Clear UPSC in 150 days?
Introduction Aspirants preparing for UPSC often get intimidated by the syllabus and feel that it will take them years to cover the entire syllabus properly. But to make it simpler for the candidates, we, today have come up with a topic i.e., "Can I clear UPSC in 150 days?" If you are willing to know how this can be possible, then stay with us till the end of today's article because today we will provide you with a clear insight and important facts related to the topic. So let's start- Can I Clear UPSC in 150 Days? Clearing UPSC in ...
Read MoreFabric.js Circle centeredScaling Property
Fabric.js is a powerful JavaScript library that enables you to create and manipulate canvas objects with ease. The centeredScaling property is one of the useful properties in fabric.js, which is very helpful when working with circles. This property allows us to scale the circle from its center point. It is incredibly helpful in certain design scenarios. What is Centered Scaling? Centered scaling is a property of Fabric.js objects that allows us to resize an object from its center point instead of a corner. This property maintains the position of the object relative to its center point, which means that it ...
Read MoreHow to create a static class in C++?
There is no such thing as a static class in C++. The closest approximation is a class that only contains static data members and static methods.Static data members in a class are shared by all the class objects as there is only one copy of them in the memory, regardless of the number of objects of the class. Static methods in a class can only access static data members, other static methods or any methods outside the class.A program that demonstrates static data members and static methods in a class in C++ is given as follows. Example #include ...
Read MoreJava Program to Separate the Individual Characters from a String
In the field of computer science, the string is a collection of a continuous character data sets. Here in this particular problem we will use some spaces to execute the logic. The individual characters present here in the string can be accessed through its index to perform the code. Here is a general flow to build a logic code to separate the individual characters from a string in a Java environment. Define a string with characters. Print the individual characters present from a given string. Set an initial to zero. Print the string by using the function string.charAt(i). Iterate ...
Read MoreJava Program to Show Time By Rolling Through Hours and Months
The credibility of an efficient coding language depends upon how well it can manage the date and time. In a Java Virtual Environment we get some inbuilt facilities like date, time and calendar to handle the problem related to date and time. java. until date class - In Java, there are many contains those are very important for the program. Date class deals with the operation about the date and time. They are those type of classes which comes with the feature of cloneable, Serializable and comparable interfaces. Extract the current date and time - There are two types ...
Read MoreHow to add multiple data types for props in Vue.js?
The javascript attribute names are case insensitive, so browsers are made in a way to interpret any uppercase characters to lowercase. This means, while using the DOM elements, camel Cased props names need to use their kebab-based (hyphen-delimited) equivalents. So let’s say that you are not sure of the type of value you might receive from the props in Vue.js. Usually, you will want every prop to have a specific type of value. But in a case when you want a prop to have a list of value types, you can use the following syntax to apply the same. props: ...
Read More