Runtime Errors
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 »
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 »
Given a number N, the task is to print Fibonacci Series till Nth number without using any loop. Examples: Input: N = 5 Output: 0… Read More »
When we talk of randomness in general, it’s not something that shouldn’t possess repeitition, it is something that outputs data that is unpredictable. Random numbers… Read More »
An Arrow operator in C/C++ allows to access elements in Structures and Unions. It is used with a pointer variable pointing to a structure or… Read More »
Prerequisite: Switch Case in C/C++ Problem Statement: Write a menu-driven program using the Switch case to convert the CGS system to MKS system and vice… Read More »
Prerequisite: Dictionary Note: Output of all these programs is tested on Python3 1.What is the output of the following of code? filter_none edit close play_arrow… Read More »
Predict the output of the following C++ programs: Question 1: filter_none edit close play_arrow link brightness_4 code #include <cstdlib> #include <iostream> using namespace std; int… Read More »
Delete is an operator that is used to destroy array and non-array(pointer) objects which are created by new expression. Delete can be used by either… Read More »
What is the output of the following program? filter_none edit close play_arrow link brightness_4 code #include <iostream> using std::cout; int main() { int i =… Read More »
Consider the following C program. filter_none edit close play_arrow link brightness_4 code #include <stdio.h> int main(void) { int a = ‘d’; printf(“%d\n”, a); /*OUTPUT… Read More »
Prerequisite : Decision making in C Question 1 filter_none edit close play_arrow link brightness_4 code #include”stdio.h” #include”stdlib.h” void reverse(int i) { if (i > 5)… Read More »
Prerequisite : Pointers in C Question 1 : What will be the output of following program? filter_none edit close play_arrow link brightness_4 code #include “stdio.h”… Read More »
Prerequisite: Python-Sets 1. What is the output of the code shown below? filter_none edit close play_arrow link brightness_4 code sets = {1, 2, 3, 4,… Read More »
Prerequisite : String Comparison in Java 1. What should be the output of this program? filter_none edit close play_arrow link brightness_4 code class GeeksforGeeks {… Read More »