Interview Questions

Q:

What are the main attributes for a successful commercial lawyer?

Answer

Interpersonal Skills: Good lawyers and paralegals have exceptional interpersonal skills and can establish trusting relationships with each and everyone they work with.
Logical Thinking Ability: A great lawyer is able to guess logically and make legitimate judgments and assumptions based on data presented.
Perseverance: Those working in the legal profession must have perseverance. In most cases require long hours of work with heavy research and lots of writing. A superb lawyer or legal assistant must be active to put in the time it takes to get the role done.
Public Speaking Skills: A good lawyer has excellent public speaking skills and is comfortable addressing a courtroom. They can also easily handle speaking in front of other groups.
Writing Skills: A great lawyer or legal assistant has exceptional writing skills which might be used in preparing compelling arguments, motions, briefs, and other legal documents.
Creativity: A brilliant lawyer is creative and able to think of affordable solutions when problems and unique situations arise.
Research Skills: Preparing a legal strategy generally requires a vast amount of studies. The one who involved in the legal profession should have superb research skills to be able to find and recognize pertinent information.

Report Error

View answer Workspace Report Error Discuss

Subject: Law

6 7672
Q:

Tell me how you stay upto date with fashion?

Answer

Check out the magazines on the newsstand on a regular basis.
receive email newsletters from the style internet site to present you recent fashion thoughts. Keep in mind of your age and frame type while analyzing those newsletters.

Report Error

View answer Workspace Report Error Discuss

9 7662
Q:

How many ways are there to initialize int with a constant?

A) 1 B) 2
C) 3 D) 4
 
Answer & Explanation Answer: B) 2

Explanation:

There are two formats for initializers in C++ as shown in the example that follows. The first format uses the traditional C notation. The second format uses constructor notation.

int foo = 123;

 

int bar (123);

Report Error

View Answer Report Error Discuss

Filed Under: C++
Job Role: Software Architect

1 7609
Q:

What are Payroll source documents?

Answer

The Payroll source documents are the employee Time Sheets (or equivalent) that record when the employee worked and generally what they did. These records are subject to audit by the Labor Department, EEOC and probably others that I haven't encountered. These should be bound into a Payroll Source Document folder.

However, there are other employee documents that need to be retained, e.g., their original employment application, employee reviews (if you do them),that record their federal/state tax exemption choices,reporting their annual wages and withholdings, etc.

These can be filed in separate Employee files (by employee name or number) -- or simply integrated into the Payroll Source Document folders (in the week in which they occur). I very much favor the latter -- especially if you're doing computer accounting -- in keeping with my "always file chronological" bias.

Report Error

View answer Workspace Report Error Discuss

1 7575
Q:

Social engineering attacks are best identified by

A) Ransomware B) Phishing
C) Both A & B D) None of the above
 
Answer & Explanation Answer: C) Both A & B

Explanation:

Social engineering is the art of tricking users into performing certain harmful activities or attacks, users must be trained to identify social engineering. Social engineering attacks typically involve some form of psychological manipulation, fooling otherwise unsuspecting users or employees into handing over confidential or sensitive data. Commonly, social engineering involves email or other communication that invokes urgency, fear, or similar emotions in the victim, leading the victim to promptly reveal sensitive information, click a malicious link, or open a malicious file. Because social engineering involves a human element, preventing these attacks can be tricky for enterprises.

 

Report Error

View Answer Report Error Discuss

6 7554
Q:

How many types of macros are there in c++?

A) 1 B) 2
C) 3 D) 4
 
Answer & Explanation Answer: B) 2

Explanation:

There are two types of macros. They are object-like and function-like.

Report Error

View Answer Report Error Discuss

Filed Under: C++

1 7550
Q:

What is SQL*Plus? Explain its features

Answer

SQL*plus allows SQL and PL/SQL scripts to interactively run in command line.

It allows three kinds of commands to run; SQL, PL/SQL and SQL * Plus commands. It’s most commonly used by DBA’s to interact with the oracle database.

Report Error

View answer Workspace Report Error Discuss

Subject: Oracle

14 7544
Q:

In OSI network architecture, the routing is performed by

A) transport layer B) session layer
C) network layer D) data link layer
 
Answer & Explanation Answer: C) network layer

Explanation:

in_osi_network_architecture_the_routing_is_performed_by1553604163.jpg image

 

In networking, the Open Systems Interconnection is commonly called as OSI model. It has a 7 layer architecture for the communication.

 

In OSI network architecture, the routing is performed by network layer which is layer number 3 with the help of intermediate routers.

Report Error

View Answer Report Error Discuss

4 7526