Filter interviews by
I applied via Hirect and was interviewed before Jan 2022. There was 1 interview round.
HTML is a markup language used for creating the structure and content of web pages.
HTML stands for HyperText Markup Language.
It is the standard language for creating web pages and web applications.
HTML uses tags to define the structure and content of a web page.
It allows the inclusion of text, images, videos, links, and other media.
HTML provides a way to create headings, paragraphs, lists, tables, forms, and more.
It is...
Javascript features include dynamic typing, event-driven programming, and object-oriented programming.
Dynamic typing allows for flexibility in variable types
Event-driven programming allows for interactive web applications
Object-oriented programming allows for modular and reusable code
Supports functional programming
Can manipulate HTML and CSS
Can handle asynchronous programming with callbacks and promises
To add a Javascript file to HTML, use the script tag with the src attribute.
Create a script tag in the HTML file
Add the src attribute to the script tag and set it to the path of the Javascript file
Place the script tag in the head or body section of the HTML file
Example:
Var is function scoped, let and const are block scoped. Var can be redeclared and updated, let can be updated but not redeclared, const cannot be updated or redeclared.
Var is hoisted to the top of its scope, let and const are not.
Var can be declared without being initialized, let and const cannot.
Var can be used before it is declared, let and const cannot.
Example: var x = 5; let y = 10; const z = 15;
Example: function e...
Semantic tags in HTML are used to give meaning to the content of a web page.
Semantic tags are used to structure content and provide context for search engines and assistive technologies.
Examples of semantic tags include
Using semantic tags can improve accessibility, SEO, and maintainability of a website.
Block elements take up the full width of the page while inline elements only take up the space they need.
Block elements start on a new line and can have margins, padding, and borders
Inline elements can be nested inside block elements
Examples of inline elements include , , and
To center a div element, set its margin property to auto and specify a width.
Set the div element's margin property to auto
Specify a width for the div element
Example: div { margin: auto; width: 50%; }
An element in HTML is a building block of a webpage, defined by tags and containing content and attributes.
HTML elements are defined by tags, such as
for paragraphs or for images.
Elements can contain content, such as text or other elements.
Elements can also have attributes, such as the src attribute for images or the href attribute for links.
Top trending discussions
I applied via Company Website and was interviewed in Nov 2024. There were 13 interview rounds.
The Entity-Relationship (ER) model is a data model used to describe the relationships between entities in a database.
Entities are objects or concepts in the real world that can be distinguished from each other.
Relationships describe how entities are related to each other.
Attributes are properties that describe entities and relationships.
ER diagrams visually represent the ER model, showing entities, relationships, and a...
Threads are lighter weight than processes, share memory space, and are more efficient for multitasking.
Threads share the same memory space, making communication between them faster and more efficient.
Threads are lighter weight than processes, as they share resources such as memory and file descriptors.
Threads are more efficient for multitasking, as they can run concurrently within the same process.
Threads are easier to...
Google primarily focuses on pure data structures and algorithms-based questions during coding interviews. Other computer science core topics are typically not covered in Google's interviews. Therefore, it is essential to be proficient in data structures and algorithms to succeed in the Google coding interview.
An aptitude test is a tool used to evaluate a person's skills, abilities, and potential for success in a specific role or activity.
Group discussion is a process of exchanging ideas and opinions among individuals on a specific topic. It is a structured form of communication in which participants have the opportunity to express their views while also listening to others' perspectives on the same subject.
My strengths include problem-solving skills and attention to detail. My weaknesses include time management and public speaking.
Strengths: problem-solving skills
Strengths: attention to detail
Weaknesses: time management
Weaknesses: public speaking
I have a strong foundation in web development, a passion for learning, and a proven track record of delivering high-quality projects.
I have a solid understanding of HTML, CSS, and JavaScript
I am proficient in using various web development tools and frameworks such as React and Node.js
I have successfully completed several web development projects, including a responsive e-commerce website for a local business
An assignment is a task or piece of work that you are given to complete, particularly as part of your job or studies. The assignment for the course includes written assignments and practical tests, similar to tasks, work, jobs, or charges.
A case study is a detailed description and assessment of a specific situation in the real world, created for the purpose of deriving generalized insights and understanding. It can focus on an individual, a group of people, an organization, or an event, among other subjects.
My greatest accomplishment was successfully leading a team to launch a new website for a major client ahead of schedule.
Successfully led a team to launch a new website
Completed the project ahead of schedule
Received positive feedback from the client
I am motivated by challenges, learning opportunities, and the ability to make a positive impact.
Challenges push me to grow and improve my skills.
Learning opportunities allow me to stay updated with the latest technologies and trends.
Making a positive impact through my work gives me a sense of fulfillment and purpose.
My ideal work environment is a collaborative space with supportive colleagues, opportunities for growth, and a healthy work-life balance.
Collaborative team environment where ideas are shared and valued
Supportive colleagues who are willing to help and provide feedback
Opportunities for growth and learning new technologies
Healthy work-life balance with flexible hours and remote work options
By creating a positive work environment, offering growth opportunities, and implementing employee recognition programs.
Creating a positive work environment through open communication and support
Offering growth opportunities such as training programs and career advancement
Implementing employee recognition programs to acknowledge and reward hard work
Providing competitive salaries and benefits to attract and retain top ta
Real-time operating systems are designed to provide predictable response times and prioritize tasks based on timing constraints.
Real-time operating systems prioritize tasks based on timing constraints
They are designed to provide predictable response times
Examples include VxWorks, QNX, and FreeRTOS
Yes, I am comfortable working night shifts to support international clients.
I have previous experience working night shifts in a customer service role.
I am a night owl and tend to be more productive during late hours.
I understand the importance of supporting international clients and am willing to adjust my schedule accordingly.
Operational tasks for maintaining efficiency and quality include regular testing, monitoring performance, updating software, and implementing best practices.
Regularly test website functionality to ensure it is working properly
Monitor website performance metrics such as load times and user experience
Update software and plugins to the latest versions to prevent security vulnerabilities
Implement best practices for coding,
Prepare examples showcasing leadership, conflict resolution, and prioritization skills for a managerial round interview.
Leadership: Discuss a project where you led a team to success, highlighting your ability to motivate and guide others.
Conflict Resolution: Share a situation where you successfully resolved a conflict within a team or project, emphasizing your communication and problem-solving skills.
Prioritization: Ta...
I demonstrate adaptability, leadership, and commitment by actively seeking feedback, taking on new challenges, and fostering collaboration within the team.
Seek feedback from colleagues and supervisors to continuously improve
Volunteer for new projects or tasks to expand skills and knowledge
Encourage open communication and teamwork among team members
Lead by example by showing a positive attitude and willingness to help o...
posted on 17 Oct 2024
I applied via AmbitionBox and was interviewed in Sep 2024. There were 5 interview rounds.
You are provide some assignment and I complet this assignment
You give any code and i make this code
You give any topic and i reply this topic
Python provides powerful file handling capabilities through built-in functions like open(), read(), write(), and close().
Use open() function to open a file in different modes like 'r' for reading, 'w' for writing, 'a' for appending, etc.
Use read() function to read the contents of a file and write() function to write data to a file.
Remember to close the file using close() function after performing file operations to rel...
I applied via Company Website and was interviewed in Jul 2024. There were 2 interview rounds.
What is an aptitude test?
An aptitude test is a standardized test designed to assess a person's ability, skill, or knowledge in a specific area. (aptitude tests):-
1. Verbal Ability: Tests reading comprehension, grammar, and vocabulary skills.
2. Quantitative Ability: Tests mathematical skills, problem-solving, and data analysis.
3. Logical Reasoning: Tests ability to reason, think critically, and solve problems.
4. Technical Skills: Tests knowledge of specific technical skills, such as programming or coding.
Case study:-
I. Introduction:
- Brief overview of the company/organization
- Background information on the industry/market
- Purpose of the case study
II. Problem Statement:-
- Description of the problem or challenge faced by the company
- Key issues and constraints
III. Analysis:-
- SWOT analysis (Strengths, Weaknesses, Opportunities, Threats)
- Market analysis (competitor, customer, market trends)
- Financial analysis (revenue, costs, profitability)
IV. Alternatives and Options:-
- Potential solutions or strategies
- Evaluation of pros and cons
V. Recommendations:-
- Proposed solution or course of action
- Justification and rationale
VI. Implementation:-
- Action plan and timeline
- Resources and budget required
VII. Conclusion:
- Summary of key findings
- Lessons learned and takeaways.
Hcf lcm etc readong cs fundamental
We all prove the best company
posted on 26 Sep 2023
I applied via Naukri.com and was interviewed in Aug 2023. There were 3 interview rounds.
Kasineni venkata Sai Mukesh
Creating a frame using Python involves using loops to print characters in a specific pattern.
Use nested loops to print characters in the desired pattern
Determine the dimensions of the frame (rows and columns)
Print characters based on the position in the loop
Create a profile using CSS and JavaScript
Use CSS to style the profile layout
Use JavaScript to add interactive elements like buttons or animations
Include a profile picture, name, bio, and contact information
Add hover effects or transitions for a polished look
Key responsibilities of Web Developers include designing, coding, and maintaining websites, as well as collaborating with clients and team members.
Designing and developing websites using programming languages such as HTML, CSS, and JavaScript
Ensuring websites are responsive and optimized for various devices
Collaborating with clients to understand their requirements and provide solutions
Testing and debugging websites to...
HTTP/2 offers several advantages over HTTP 1.1, including improved performance and efficiency.
Multiplexing: HTTP/2 allows multiple requests and responses to be sent and received at the same time over a single connection, improving efficiency.
Header compression: HTTP/2 uses HPACK compression for headers, reducing overhead and improving performance.
Server push: HTTP/2 allows servers to push resources to the client before...
ETag is an HTTP header used for web caching to determine if a resource has changed.
ETag is a unique identifier assigned to a specific version of a resource on the web server.
When a client requests a resource, the server sends the ETag along with the resource.
The client can then use the ETag in subsequent requests to check if the resource has been modified.
If the ETag matches the current version of the resource on the s...
I applied via Company Website and was interviewed in Jul 2023. There were 3 interview rounds.
What is your name
From
Qualification
Family background
Hobbies
Weekness strength
Thanks you
Mathematics,communication skills,
I applied via Campus Placement and was interviewed in Feb 2024. There was 1 interview round.
HTML CSS javascript jQuery
I applied via Company Website and was interviewed in Jul 2023. There were 2 interview rounds.
Java script basics html css.
Python medium level.
Anaconda.
My sql interface
In what way should a team work in order to reduce the time and complexity of a project. Code reduction
based on 1 review
Rating in categories
TCS
Accenture
Wipro
Cognizant