Top MS Office Alternatives

Shirjeel Yunus
Updated on 13-Apr-2023 10:14:43

506 Views

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 More

Current Affairs: Everything You Need to Know While Preparing for UPSC

Naresh Soni
Updated on 13-Apr-2023 10:14:20

253 Views

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 More

Clear UPSC in 150 Days

Naresh Soni
Updated on 13-Apr-2023 10:03:54

503 Views

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 More

Circle Centered Scaling Property in Fabric.js

Shabaz Alam
Updated on 13-Apr-2023 09:16:15

316 Views

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 More

Create a Static Class in C++

Arjun Thakur
Updated on 13-Apr-2023 00:15:52

27K+ Views

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 More

Separate Individual Characters from a String in Java

Rudradev Das
Updated on 12-Apr-2023 17:40:29

5K+ Views

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 More

Sort Array Elements in Descending Order in Java

Rudradev Das
Updated on 12-Apr-2023 17:29:02

5K+ Views

Array is a collection of same data types stored at some contiguous memory locations. The arrays are a class present in java.until package which provides pre-defined sorting with a static manner and no return value. Here is the syntax of the Arrays.sort() method mentioned below − public static void sort(int[] ar, int from_index, int to_index) Here in the above syntax we have ar - short of the array name from_index - a parameter we can use as optional, where the sorting takes a run. to_index - an optional parameter donates the index of the element. Here is ... Read More

Shuffle Vector Elements in Java

Rudradev Das
Updated on 12-Apr-2023 17:06:51

224 Views

Shuffle() is collection class method in Java, works in a random manner based on the permutation logic on a specific group of list elements. Tree are two distinct types of method in a shuffle class(), depending on the particular parameters. Java Collections shuffle(list) Method. Java Collections shuffle(list, random) Method. In this method, we can arrange the characters randomly to generate some random values. Then we will apply the suffle method on it. To perform the vector shuffle, we can use Fisher-Yates shuffle algorithm. In this method, we can learn a linear scan on a vector and swap each ... Read More

Show Time by Rolling Through Hours and Months in Java

Rudradev Das
Updated on 12-Apr-2023 17:04:57

166 Views

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 More

Add Multiple Data Types for Props in Vue.js

Mayank Agarwal
Updated on 12-Apr-2023 17:02:16

770 Views

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

Advertisements