DTO OBRIG 1

  Contrato a favor de terceiro Marília, devedora de Graça, decide contratar Fabiano para que este de aulas de equitação a Graça em troca do perdão da dívida.
Estamos perante a celebração de um contrato a favor de terceiro.
"O contrato a favor de terceiro é [como refere João de Matos Antunes
Varela, Das Obrigações em Geral, Vol. I, 10ª ed., pág. 410] o contrato em que um dos contraentes (promitente) atribui, por conta e à ordem de outro (promissário), uma vantagem a um terceiro (beneficiário)

...

See on Wikiteka »

Programing with c


Q1. Attempt any two questions (15 Marks)


1. Explain Algorithm? Write an algorithm to add two numbers.

Answer:
An algorithm is a step-by-step method to solve a problem or perform a specific task.

Algorithm to add two numbers:

  1. Start
  2. Declare variables a, b, and sum
  3. Input two numbers a and b
  4. Compute sum = a + b
  5. Display sum
  6. Stop

2. What is Flow Chart? Explain. And draw the Flow Chart to print table.

Answer:
A flowchart is a visual representation of steps in a process using symbols like rectangles,...

See on Student Notes »

Trying

The literature of ancient India is a vast and glorious treasure, forming the foundation of Indian civilization and deeply influencing global thought. It is traditionally categorized into two main groups: Shruti (that which is heard/revealed) and Smriti (that which is remembered/transmitted).
Here are the most significant categories and works:
1. Vedic Literature (Shruti)
This is the oldest stratum of Indian literature, considered eternal knowledge revealed to ancient sages.
 * The Vedas: The four foundational

...

See on Wikiteka »

Gahshdh

🌟 Interface Basics in Java
An Interface in Java is a blueprint of a class. It defines a contract of behavior that implementing classes must adhere to. Interfaces are a key mechanism for achieving abstraction and simulating multiple inheritance of behavior in Java.
Key Characteristics of Interfaces
 * 100% Abstract (Historically): Traditionally, interfaces could only contain abstract methods and public static final variables (constants).
 * Modern Features (Java 8+): Interfaces can now include default

...

See on Student Notes »

Heheh

The basic structure of a Java program is based on the concept of classes. Every executable Java program must contain at least one class definition.
💻 Essential Structure of a Java Program
A typical Java application will have the following hierarchical structure: 1. Package Statement (Optional)
The very first statement in a Java source file (if present) is the package statement. It organizes classes into logical groups, preventing naming conflicts.
 * Syntax: package package_name;
 * Example: package

...

See on Student Notes »

Heheh

The basic structure of a Java program is based on the concept of classes. Every executable Java program must contain at least one class definition.
💻 Essential Structure of a Java Program
A typical Java application will have the following hierarchical structure: 1. Package Statement (Optional)
The very first statement in a Java source file (if present) is the package statement. It organizes classes into logical groups, preventing naming conflicts.
 * Syntax: package package_name;
 * Example: package

...

See on Student Notes »

services

Unit 1 Q1. Explain the Gaps Model of Service Quality with examples. What are the prescriptions for closing quality gaps?

Service quality is one of the most critical aspects of service marketing, as it determines customer satisfaction, loyalty, and retention. Unlike physical products, services are intangible, heterogeneous, and perishable, making it challenging to maintain consistent quality. To understand and manage service quality effectively, the Gaps Model of Service Quality was developed by

...

See on Wikiteka »

hhhvashjva

An interceptor is a class or method that intercepts EJB method calls or lifecycle events. It is used for common tasks like logging, security, transactions, and auditing. It helps avoid dupli

cate code and keeps bu

  • Page 1 
  • Page 2 
  • new-page.pngsiness logic separate from system logic. Interceptors can be defined as a separate class or inside the bean. They use annotations to define behavior.

@AroundInvoke is used for method interception, while @PostConstruct and @PreDestroy are used for lifecycle interception.

...

See on Student Notes »

civil

Chapter 2:



Counter Claim Section 66(1) – Sessions Court: Can hear the case even if the counterclaim is bigger than the plaintiff’s claim, but cannot award more than its own limit (e.g., max RM1 million).

Section 66(2) – High court: Any party can apply to move the whole case to the High Court, which has no monetary limit.

Issue: Claim = Principal (within limit) + Interest (pushes total over limit)

Foo Sey Koh v Chua Seng Seng (1986): Only count interest up to the date of filing (not after

...

See on Student Notes »