Question
What is the time limit for filing revised return at
present?Solution
As per the Income Tax Act 1961, the time limit for filing a revised return at present is: Before the expiry of one year from the end of the relevant assessment year For example, if the relevant assessment year is 2021-2022 (AY 2021-2022), the taxpayer has the option to file a revised return for that assessment year until the end of the next year, i.e., before March 31, 2023. Please note that the time limit for filing a revised return may be subject to change in the future due to amendments in tax laws, so it is always essential to refer to the latest tax rules and regulations at the time of filing.
Which algorithm guarantees minimum spanning tree and will produce a different tree depending on tie-breaking?
Which of the following is NOT a divide-and-conquer algorithm?
Which data structure gives amortized O(α(n)) time for union and find operations, where α is inverse Ackermann?
Which of the following sorting algorithms is considered stable (i.e., preserves the relative order of equal elements)?
In the context of searching, what is the primary advantage of using hashing?
Output of below code
public class Prg {
public static void main(String args[]){
System.out.print("A" + "B" + 'A');
}
...A directed acyclic graph (DAG) has 10 vertices and 15 edges. What is the maximum possible number of topological orderings?
Which shortest-path algorithm is appropriate for graphs with non-negative weights and supports decrease-key efficiently for faster performance?
In mobile computing, what is the main feature of pervasive computing?
Consider the following Python code snippet for binary search:
  def binary_search(arr, target):
    low = 0
    ...