
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
Found 26504 Articles for Server Side Programming

3K+ Views
In Swift, underscores have many different uses for a different purposes. Here are some examples. Ignore unnecessary loop variables or return values. Absence of identifiers for external parameters in function calls. Even if they were initially specified as constants, making variables changeable. Ignoring tuple components or using discard values when managing errors. To Ignore a Value To ignore a value that a function or method returns in Swift, use an underscore. You could compose something like this, for instance, if you only worry about an operation's success or failure. This is the most common case you use in ... Read More

972 Views
In Swift, we can use the map() method to the dictionary to apply a transformation to the values of the dictionary. This method returns a newly created object with the same keys as the original dictionary but with the values transformed by the mapping function. Example 1: Transforming Values with a Closure In the following example, we are performing the multiplication on each value in the dictionary using the mapValues() function. We pass a closure that takes an argument. In the resulting dictionary, you can see that each value has been doubled. import Foundation let inputDictionary = [1: 2, 3: ... Read More

949 Views
In C#, LINQ (Language Integrated Query) is a powerful tool that enables you to easily sort, filter, and manipulate data. In this article, we'll demonstrate how to use LINQ to sort a list of employees based on their salary and department. Sorting a List of Employees Based on Salary and Department using LINQ To sort a list of employees based on their salary and department using LINQ, you can follow the steps below − 1. Create a Class to Represent an Employee public class Employee { public string Name { get; set; } public int ... Read More

1K+ Views
There is no single "best" practice for naming Swift files that add extensions to existing objects, but here are some commonly used conventions − Object Prefix Followed by Functionality String+Utilities.swift − adds utility functions to the String class Array+Sorting.swift − adds sorting functions to the Array class UIColor+Extensions.swift − adds color-related functions to the UIColor class Functionality Prefix Followed by Object CustomView+Animation.swift − adds animation functionality to a custom view class called CustomView JSONEncoder+CustomEncoding.swift − adds custom encoding and decoding functionality to the JSONEncoder class UICollectionViewLayout+Extensions.swift − adds layout-related functions to the UICollectionViewLayout class Descriptive Naming ... Read More

216 Views
In Swift, there are some different syntaxes to declare an empty dictionary. It is important to remember that all syntaxes produce the same result. In this article, you will see examples of how to declare an empty dictionary and define a dictionary in Swift. What is a Swift Dictionary? A dictionary is a collection in Swift that lets you keep key-value pairs. Each key in the dictionary has a corresponding value, and each word in the dictionary needs to be distinct. Because dictionaries are unordered, the sequence in which key-value pairs are introduced does not matter. Example In this example, ... Read More

8K+ Views
The GetEnvironmentVariable() method of the Environment class in C# is used to get the value of an environment variable. It is a useful method for retrieving system-wide and user-specific environment variables. In this article, we will discuss the usage of the GetEnvironmentVariable() method and see how to use it in a C# program. What is the GetEnvironmentVariable() Method? The GetEnvironmentVariable() method is a static method of the Environment class in C#. It takes the name of an environment variable as a string and returns the value of the variable as a string. If the environment variable does not exist, it ... Read More

6K+ Views
In Swift, you can convert an enum value to a String through the rawValue property. This is if the enum has a raw value of type String. If the enum doesn't have a raw value, you can use the String(describing:) initializer to get a string representation of the enum value. Also, you can use the CustomStringConvertible protocol. Example 1 Convert an enum value to a string using the rawValue property.In this example, Fruit is an enum with a raw value of type String. The rawValue property is used to get a string representation of the myFruit enum value, which is ... Read More

2K+ Views
The Exists property in C# is a very useful property that checks whether any element in a collection matches a given condition. This property is a part of the List class in C# and returns a Boolean value indicating whether any element exists in the list that satisfies the specified condition. In this article, we will explore the usage of the Exists property in a C# program. What is the Exists Property? The Exists property is a Boolean property that is defined in the List class in C#. It takes a delegate as an argument and returns a Boolean value ... Read More

2K+ Views
In Swift, when you call a function that throws an error, you must either mark the function call with the try keyword or handle the error using a do-catch block. If you see the error message "Call can throw, but it is not marked with 'try' and the error is not handled", it means that you have called a function that can throw an error, but you have not handled the error properly. How to Fix These Errors? Mark the function call with the try keyword. For example − do { let result = try someFunctionThatCanThrow() ... Read More

285 Views
The Aggregate() method is a powerful LINQ method that allows you to perform a reduction operation on a sequence of elements. This method can be used to perform calculations on a collection of data, such as finding the sum, product, or maximum value of a set of numbers. In this article, we will explore how to use the Aggregate() method in a C# program. What is the Aggregate() Method? The Aggregate() method is a LINQ extension method that takes two parameters: a seed value and a function that performs a reduction operation on a sequence of elements. The seed value ... Read More