Question
Average of 6 positive integers is calculated as 25. It
was later found that while calculating the average, someone mistakenly entered 18 instead of 30. Find the correct average.Solution
Incorrect sum of six numbers = 25 × 6 = 150 Correct sum = 150 − 18 + 30 = 162 So, correct average = 162 ÷ 6 = 27
1.   Predict the output of the code
public class Animal {
  public static void main(String args[])
           ...
Appending value to list in python
Which of the following is NOT considered a core characteristic of cloud computing?Â
Abstract Class in Java
In the design and analysis of algorithms, which of the following algorithms is based on the greedy approach?
- Which of the following protocols is used for resolving IP addresses to MAC addresses in a network?
Which type of software is designed to help users perform specific tasks, such as creating documents, spreadsheets, or presentations?
What is the purpose of the with statement when working with files?
Which component in a V-shaped software development model corresponds to the testing phase?
Predict the correct output of below code in python
Greeting = lambda : print('Welcome to Ixambee’)
Greeting()