Filter interviews by
I was interviewed in Dec 2024.
Logical reasoning,
Abstract reasoning
Time and work
Profit and loss
List and tuple
Decoding and encoder
Advantages of python
Important of software skills
Role of business success
Create a more opportunities
Research the company
Practice
Analysis a client production process and suggest way to improve
Python list and tuple are both data structures used to store multiple items in a single variable, but list is mutable while tuple is immutable.
List is defined using square brackets [] and can be modified after creation.
Tuple is defined using parentheses () and cannot be modified after creation.
Example of list: my_list = [1, 'apple', True]
Example of tuple: my_tuple = (2, 'banana', False)
The __init__() method is a special method in Python classes used to initialize new objects.
The __init__() method is called when a new object is created from a class.
It is used to initialize the attributes of the object.
The __init__() method is similar to a constructor in other programming languages.
Top trending discussions
I applied via Walk-in and was interviewed in Oct 2024. There was 1 interview round.
Def factorial_iterative(n):
result = 1
for i in range(1, n + 1):
result *= i
return result
I applied via Naukri.com and was interviewed in Jul 2023. There were 3 interview rounds.
Train and time and work
posted on 24 Jan 2024
I applied via Job Fair and was interviewed in Dec 2023. There was 1 interview round.
posted on 14 Aug 2022
I applied via Walk-in and was interviewed in Jul 2022. There were 3 interview rounds.
Basic need will be need for fresher
posted on 9 Jan 2025
I applied via Naukri.com and was interviewed in Dec 2024. There was 1 interview round.
Function Overriding is a concept in object-oriented programming where a subclass provides a specific implementation of a method that is already provided by its parent class.
In Function Overriding, a subclass can provide a specific implementation of a method that is already defined in its parent class.
The method in the subclass must have the same name, return type, and parameters as the method in the parent class to ove...
Using LINQ query to order data in C#
Use the OrderBy method to sort data in ascending order
Use the OrderByDescending method to sort data in descending order
You can also use ThenBy and ThenByDescending for secondary sorting
Out parameter is used to pass data out of a method or function.
Out parameters are used when a method needs to return multiple values.
They are declared using the 'out' keyword in C#.
Example: void CalculateArea(int length, int width, out int area) { area = length * width; }
Reflection in C# allows for inspecting and manipulating metadata of types at runtime.
Reflection is used to dynamically create instances of types, access properties, and invoke methods.
Examples include using reflection to load assemblies at runtime, inspect attributes of types, and generate code dynamically.
Reflection can be slow and should be used judiciously due to performance overhead.
I applied via Naukri.com and was interviewed in Oct 2024. There was 1 interview round.
JVM is the virtual machine that runs Java bytecode, JRE is the runtime environment for Java programs, and JDK is the development kit for creating Java applications.
JVM (Java Virtual Machine) is responsible for running Java bytecode on different platforms.
JRE (Java Runtime Environment) includes JVM, libraries, and other components necessary to run Java applications.
JDK (Java Development Kit) is a software development ki...
String is immutable in Java to ensure security, thread safety, and optimization.
Immutable strings prevent accidental changes to sensitive data like passwords.
Immutable strings allow for safe sharing of string literals across multiple threads.
Immutable strings enable string pooling for memory optimization.
Example: String str = "Hello"; str.concat(" World"); // str remains "Hello"
I applied via Company Website and was interviewed in Mar 2024. There were 3 interview rounds.
I was interviewed in Aug 2023.
A simple program to print 'fizz' for multiples of 3, 'buzz' for multiples of 5, and 'fizzbuzz' for multiples of both.
Iterate through numbers from 1 to n.
Use modulo operator to check divisibility by 3 and 5.
Print 'fizz', 'buzz', or 'fizzbuzz' accordingly.
Yes, classes implementing an interface must implement interface methods.
Classes implementing an interface must provide concrete implementations for all methods declared in the interface.
Failure to implement all interface methods will result in a compilation error.
Interfaces are used to define a contract that implementing classes must adhere to.
based on 1 review
Rating in categories
Accountant
5
salaries
| ₹1.5 L/yr - ₹2.4 L/yr |
Junior Accountant
4
salaries
| ₹1.5 L/yr - ₹2.5 L/yr |
Data Entry Operator
3
salaries
| ₹2 L/yr - ₹2.2 L/yr |
Flipkart
Amazon
Snapdeal
Infibeam