Skip to content

Category Archives: Program Output

Pre-requisite: Function Overloading in C++ Function overloading is a feature of object-oriented programming where two or more functions can have the same name but different… Read More
Given a 2D array arr[][]of integers of size M x N, where N is the number of columns and M is the number of rows… Read More
Pre-requisite: Format specifiers in C The format specifier is used during input and output. It is a way to tell the compiler what type of… Read More
Prerequisite: How to return multiple values from a function in C or C++? There are often cases of using return statements while dealing with function calls.… Read More
Given an integer N, the task is to print a pattern of fish over 2N+1 rows. Example: Input: N=3Output:        *    … Read More
In some situations, React Js developer needs to render and hide components based on the particular condition. For example, while building a To-do list app,… Read More
Switch case statements are a substitute for long if statements that compare a variable to several integral values. The switch statement is a multiway branch… Read More
Incedo Inc. visited our college, SRM Institute of Science and Technology in August’21, and everything was conducted in virtual mode. I applied for the role… Read More
Pre-requisite: if-else This article focuses on discussing what happens when the print statement is used inside the if-else conditional statement. For example: Consider the below… Read More
With the advent of MATLAB and all the scientific inbuilt that it has brought, there’s been a significant change and simplification of sophisticating engineering scenarios.… Read More
Sometimes in Dataframe, when column data containing the long content or large sentence, then PySpark SQL shows the dataframe in compressed form means the first… Read More
IIR stands for Infinite Impulse Response, It is one of the striking characteristics of many linear-time invariant systems that are characterized from having an impulse… Read More
Using inbuilt function: strcpy(): Using the inbuilt function strcpy() from string.h header file to copy one string to the other. strcpy() accepts a pointer to… Read More
Runtime Errors: A runtime error in a program is an error that occurs while the program is running after being successfully compiled. Runtime errors are… Read More
ValueError is encountered when we pass an inappropriate argument type. Here, we are talking about the ValueError caused by passing an incorrect argument to the… Read More