Filter interviews by
I applied via Campus Placement and was interviewed in Sep 2024. There was 1 interview round.
Import random
import string
def generate_password(length=12, use_special_chars=True):
characters = string.ascii_letters + string.digits
if use_special_chars:
characters += string.punctuation
password = ''.join(random.choice(characters) for _ in range(length))
return password
def main():
print("Password Generator")
length = int(input("Enter the desired length of the password: "))
use_special = input("Include special characters? (yes/no): ").lower() == 'yes'
password = generate_password(length, use_special)
print(f"Generated Password: {password}")
if __name__ == "__main__":
main()
I applied via Job Portal and was interviewed in Oct 2024. There was 1 interview round.
I applied via Walk-in and was interviewed in Jun 2024. There were 2 interview rounds.
Written test 1 includes aptitude test
Design web pages in tools
Top trending discussions
I was interviewed in Dec 2024.
posted on 6 Dec 2024
posted on 24 Oct 2024
strip() method is used to remove whitespace from beginning and end in Python
Use the strip() method on a string to remove whitespace from both beginning and end
Example: ' hello '.strip() will return 'hello'
Example: ' hello '.strip(' h') will return 'ello'
I applied via LinkedIn and was interviewed in Jun 2024. There were 3 interview rounds.
Event loops are mechanisms in programming languages that allow for asynchronous execution of code.
Event loops handle the execution of multiple tasks in a non-blocking manner.
They continuously check for tasks in the event queue and execute them one by one.
Event loops are commonly used in JavaScript to handle asynchronous operations like setTimeout, setInterval, and AJAX requests.
I applied via LinkedIn and was interviewed in Aug 2024. There was 1 interview round.
I am a passionate software engineering student with experience in web development and a strong desire to learn and grow.
Currently pursuing a degree in Computer Science
Proficient in programming languages such as Java, Python, and JavaScript
Experience with front-end technologies like HTML, CSS, and React
Completed internships at tech companies like XYZ Inc.
Interested in exploring machine learning and artificial intelligen
I have strong skills in programming languages such as Java, Python, and C++, as well as experience with web development and database management.
Proficient in Java, Python, and C++ programming languages
Experience with web development using HTML, CSS, and JavaScript
Familiarity with database management systems like MySQL and MongoDB
I applied via Recruitment Consulltant and was interviewed in Jun 2024. There were 3 interview rounds.
It consist of easy aptitude question and time given is 10 minutes
Need to write test case for the given topic
based on 5 interviews
Interview experience
based on 7 reviews
Rating in categories
Software Developer
8
salaries
| ₹2 L/yr - ₹6 L/yr |
Software Engineer
3
salaries
| ₹3.6 L/yr - ₹3.6 L/yr |
Programmer
3
salaries
| ₹3 L/yr - ₹3.2 L/yr |
Senior Mobile Application Developer
3
salaries
| ₹5.8 L/yr - ₹6.4 L/yr |
Full Stack Software Developer
3
salaries
| ₹3 L/yr - ₹7.2 L/yr |
Infosys
TCS
Wipro
HCLTech