Filter interviews by
I applied via Campus Placement and was interviewed in Jun 2024. There were 2 interview rounds.
OA round contained aptitude as well as technical question and there are 60 question which had to solve in 1 hr .and topic included like percentage ,ratio and proportion ,ratio proportion ,Lcm hcf
and for technical .net ,php ,java,c++,js,html,css and many more topics were.
Java has three types of for loops: traditional, enhanced (for-each), and labeled for loops, each serving different purposes.
Traditional for loop: Syntax - for(initialization; condition; increment/decrement) { // code } Example: for(int i = 0; i < 5; i++) { System.out.println(i); }
Enhanced for loop (for-each): Syntax - for(dataType item : collection) { // code } Example: for(String name : names) { System.out.println(...
While loops check the condition before executing, while do-while loops execute at least once before checking the condition.
While loop: Executes code block as long as the condition is true. Example: while (i < 5) { /* code */ }
Do-while loop: Executes code block once, then checks the condition. Example: do { /* code */ } while (i < 5);
Key difference: While loop may not execute if the condition is false initially; d...
The task is to print each character of a name separated by commas, enhancing readability and formatting.
Use a loop to iterate through each character of the string.
Join the characters using a comma as a separator.
Example: For the name 'John', the output should be 'J,o,h,n'.
In Python, this can be done using: ','.join(name).
File handling involves reading, writing, and managing files in a programming environment.
File operations include opening, reading, writing, and closing files.
In Python, use 'open()' to access files: 'file = open('example.txt', 'r')'.
Always close files after operations using 'file.close()' to free resources.
Use 'with' statement for better file handling: 'with open('example.txt', 'r') as file:'.
Handle exceptions using tr...
Top trending discussions
I appeared for an interview before Feb 2021.
I applied via Walk-in and was interviewed in Jun 2020. There was 1 interview round.
I applied via Job Portal
I applied via Shine and was interviewed before Mar 2021. There were 3 interview rounds.
I applied via Naukri.com and was interviewed before May 2017. There were 2 interview rounds.
I applied via Walk-in and was interviewed before Sep 2020. There were 3 interview rounds.
I applied via Walk-in and was interviewed in Nov 2019. There were 3 interview rounds.
I applied via Walk-in and was interviewed before Jul 2021. There were 3 interview rounds.
Data structures and algorithms
Python etl,pandas, pyspark questions
posted on 22 Sep 2021
I applied via Naukri.com and was interviewed before Sep 2020. There were 3 interview rounds.
Multithreading in Java allows for concurrent execution of multiple threads within a single program.
Multithreading can improve performance by allowing multiple tasks to be executed simultaneously.
Java provides built-in support for multithreading through the Thread class and Runnable interface.
Synchronization is important to prevent race conditions and ensure thread safety.
Examples of multithreading in Java include GUI a...
based on 1 interview experience
Difficulty level
Duration
based on 5 reviews
Rating in categories
Software Engineer
5
salaries
| ₹1.8 L/yr - ₹5 L/yr |
Software Developer
3
salaries
| ₹3.2 L/yr - ₹4 L/yr |
Associate Support Engineer
3
salaries
| ₹3.2 L/yr - ₹3.6 L/yr |