Author name: admin

What is the primary purpose of the @SpringBootApplication annotation?

What is the primary purpose of the @SpringBootApplication annotation? A) To enable JPA repositories B) To scan for components in the project C) To mark the main class of a Spring Boot application and enable auto-configuration D) To configure a Spring Boot application for use with an external server Answer: C) To mark the main […]

What is the primary purpose of the @SpringBootApplication annotation? Read More »

What is Spring Boot?

What is Spring Boot? A) A command-line tool for managing Spring projects B) A framework that simplifies the development of Spring applications by providing default configurations C) A tool for building Android applications D) A database management system Answer: B) A framework that simplifies the development of Spring applications by providing default configurations Explanation: Spring

What is Spring Boot? Read More »

What is a macro in C?

What is a macro in C? a) A preprocessor directive that defines a piece of code that can be reused b) A variable that stores a floating-point value c) A function that returns a pointer d) A memory location Answer: a) A preprocessor directive that defines a piece of code that can be reused Explanation:

What is a macro in C? Read More »

What is an enum in C?

What is an enum in C? a) A user-defined data type consisting of named integer constants b) A built-in data type for storing floating-point numbers c) A function that returns multiple values d) A variable that stores a string Answer: a) A user-defined data type consisting of named integer constants Explanation: An enum (enumeration) in

What is an enum in C? Read More »

What is recursion in C?

What is recursion in C? a) A function calling itself b) A loop inside a function c) A function returning multiple values d) A function with multiple arguments Answer: a) A function calling itself Explanation: Recursion in C refers to the technique of a function calling itself to solve a smaller instance of the same

What is recursion in C? Read More »

Scroll to Top