Find Interview Questions for Top Companies
Wibmo Interview Questions and Answers
Ques:- What is Human resource?
Asked In :- wibmo,
Ques:- How do you switch between ARM and Thumb modes in code
Right Answer:
To switch between ARM and Thumb modes in code, use the `BX` instruction with the least significant bit (LSB) set to 1 for Thumb mode and 0 for ARM mode. For example, to switch to Thumb mode, use `BX Rn` where `Rn` contains an address with the LSB set to 1. To switch back to ARM mode, use an address with the LSB set to 0.
Ques:- How is the ARM Compiler different from GCC or Clang
Right Answer:
The ARM Compiler is specifically optimized for ARM architecture, providing better performance and code size for ARM-based applications, while GCC and Clang are general-purpose compilers that support multiple architectures. Additionally, the ARM Compiler includes proprietary features and optimizations tailored for ARM processors that may not be available in GCC or Clang.
Ques:- What is the role of the MCAL (Microcontroller Abstraction Layer)
Right Answer:
The MCAL (Microcontroller Abstraction Layer) provides a standardized interface between the AUTOSAR software components and the microcontroller hardware, allowing for hardware independence and easier software portability across different microcontrollers.
Ques:- What are runnable entities and how are they scheduled by the RTE
Right Answer:
Runnable entities are the basic units of execution in AUTOSAR that encapsulate the functionality of a software component. They are scheduled by the RTE (Runtime Environment) based on the configured timing and triggering mechanisms, such as periodic or event-driven scheduling, ensuring that they are executed at the appropriate times according to the system's requirements.
Ques:- What is the use of the debugger in ABAP development
Right Answer:
The debugger in ABAP development is used to analyze and troubleshoot ABAP programs by allowing developers to pause execution, inspect variable values, step through code line by line, and identify errors or issues in the logic.
Ques:- I was asked in an interview…”Suppose u have a field with UNIQUE KEY. can u leave two or more cells NULL in SQL Server 2005…If Yes then Why…if NOT then Why…..
Right Answer:
Yes, you can leave two or more cells NULL in a field with a UNIQUE KEY in SQL Server 2005. This is because NULL values are considered distinct from each other, allowing multiple NULLs in a column with a UNIQUE constraint.
Ques:- What is machine learning?
Right Answer:
Machine learning is a branch of artificial intelligence that enables computers to learn from data and improve their performance on tasks without being explicitly programmed.
Ques:- What are user defined functions (UDFs) in Sql Server?
Right Answer:
User Defined Functions (UDFs) in SQL Server are custom functions created by users to perform specific calculations or operations that can return a single value (scalar UDF) or a table (table-valued UDF). They can be used in SQL queries just like built-in functions.
Ques:- Can we generate a trigger for two tables? if so what is the query to generate a trigger for two tables employye table and department table with employee having department no.
Right Answer:
No, a single trigger cannot be directly created for two tables in SQL Server. However, you can create separate triggers for each table. Here’s an example of how to create triggers for the `employee` and `department` tables:

```sql
CREATE TRIGGER trg_employee
ON employee
AFTER INSERT, UPDATE
AS
BEGIN
-- Trigger logic for employee table
END;

CREATE TRIGGER trg_department
ON department
AFTER INSERT, UPDATE
AS
BEGIN
-- Trigger logic for department table
END;
```
AmbitionBox Logo

What makes Takluu valuable for interview preparation?

1 Lakh+
Companies
6 Lakh+
Interview Questions
50K+
Job Profiles
20K+
Users