Posts

Human Computer Interaction (HCI) - Interaction Design Foundation

In this article, you’ll learn about Interactions between computers and humans should be as intuitive as conversations between two humans—and yet many products and services fail to achieve this.

JavaScript - LinkedIn Skill Assessments Quizzes with Answers

In this article, you will find LinkedIn Assessment, Questions and Answers for JavaScript.

How to convert string to `camelCase` in Laravel

Convert a given string to camelCase in Laravel using Str::camel() method. The Laravel provides many helpers to convert once case to another.

Git - LinkedIn Skill Assessments Quizzes with Answers

In this article, you will find LinkedIn Assessment, Questions and Answers for Git Version Control System.

Microsoft Excel - LinkedIn Skill Assessments Quizzes with Answers

In this article, you will find LinkedIn Assessment, Questions and Answers for Microsoft Excel.

C Programming Language - LinkedIn Skill Assessments Quizzes with Answers

In this article, you will find LinkedIn Assessment, Questions and Answers for C-language.

Identify whether the number is Even or Odd in C-language

If any number is exactly divisible by 2 then it’s an even number else it’s an odd number. In this tutorial we’ll see how to check whether the provided number is even or odd number using Modulo(%).

Constructor in JAVA

Java constructor is a special function which is use to initialize object and whose name is same as class name. The types of constructor: no-argument, default and parameterized constructors. Constructor is a special method to initialize the state of an object

Python - Relational Operators

Python provides operators that can be used to check the relationship between values or values within variables also known as operands. All relational operators, less than(<), less than or equal to(<=), greater than(>), greater than and equal to(>=) gives resultant value in boolean i.

Java - Relational Operators

Java provides operators that can be used to check the relationship between values or values within variables also known as operands. All relational operators, less than(<), less than or equal to(<=), greater than(>), greater than and equal to(>=) gives resultant value in boolean i.

Java - Comparison Operators

Java provides operators that can be used to compare values or values within variables. As the name implies both == and != are used for Comparison.

Java - Arithmetic Operators

Java supports different arithmetic operators that can be used to performs mathematical calculations on the values and variables aka operands. The basic arithmetic operations includes addition, subtraction, multiplication, division, etc. are performed with these operators.