All Basic Articles
What will be the output of the following pseudocode? Initialize Integer x, y, z Set y = 1, x = 2 z = x ^… Read More
Predict the output of the following pseudo-code  Integer x = 1, y = 2, z = 3  x = y + z  z = x… Read More
Predict the output of the following pseudocode for n = 5, m = 6. Integer solve(Integer n, Integer m )  if(n > 4 && m… Read More
Predict the output of the following pseudo-code  Integer p, q, r, s  Set p = 4, q = 2, r = 1  s = (p… Read More
Calculate the output of the following pseudocode. Integer w, x, y, z Set w = 21, x = 11 for (each y from 21 to… Read More
Predict the output of the following pseudo-code if x= 1 and y=2:  Integer solve(int x, int y)  if(x > 1)  solve(x – 1, y +… Read More
Predict the output of the following pseudocode for x = 10, y = 5.  Integer solve(Integer x, Integer y)  if(y > 0)  if(x > 0) … Read More
Integer x, y, z  Set x = 10, y = 16,z = 3  if(x > y)  x = 2 * y  Else  y = x… Read More
Predict the output of the following pseudocode for x = 4, y = 9. Integer solve(Integer x, Integer y) if(y > 0)  if(x > 0)… Read More
In this article, we will see Temperature Conversion between Celsius, Fahrenheit & Kelvin using HTML CSS & JavaScript. The Temperature is generally measured in terms… Read More
Pollination is the biological process by which pollen from the male part of the flower transfers to the female part of the same or on… Read More
Predict the output of the given pseudocode Set n = 14, sum = 0, i = 5while i < n do    increase sum by… Read More
Recently Jio Platforms came to our college for their Spark Programme. They started with a pre-placement talk and then there were 4 rounds, Aptitude Round… Read More
Technical Zoom call (1 hour): Coding question: Implement stack from another data structure in Java Which data structure you can choose and why? Implement push,… Read More
Count the number of ” # ” printed. For m = 0 to 14 do    For n = 0 to 14 do     … Read More
What will happen for the below pseudocode: Set Integer res = 0 do     –res     display res     res++ While(res >= 0) End do-while (A) The program… Read More
Why do we check up to the square root of a number to determine if that number is prime? Prime numbers are natural numbers greater… Read More
Count the number of ” * ” printed by the given pseudo code when the input is 25.  Write “Please enter a number” Read input Repeat while… Read More
Predict the output of the given pseudo code if the value of the number is 6:  Read number k = 2 i = 2 while i <= number: … Read More
Display filter macros enable you to quickly display information from a Wireshark capture file. You can save the results of your filter into a separate… Read More