Interview Questions

Q:

What is a stub network?

A) A network with only one entry and no exit point. B) A network that has only one entry and exit point.
C) A network with more than one exit point. D) A network with more than one exit and entry point.
 
Answer & Explanation Answer: B) A network that has only one entry and exit point.

Explanation:

A stub network has only one default path to non-local hosts and no outside network knowledge. Non-local stub network traffic uses a single logical path when traveling in and out of the network.

 

Stub networks are essentially local area networks (LAN) that either do not connect to the outside and relay data packets internally or are dead-end LANs that know of only one network exit. Stub networks may have multiple connections but use one path to single points of destination.

 

Hence, a stub network is a network that has only one entry and exit point.

Report Error

View Answer Report Error Discuss

3 3609
Q:

Differentiate between realloc() and free().

Answer

- Free() - A block of memory previously allocated by the malloc subroutine is freed by free subroutine. Undefined results come out if the Pointer parameter is not a valid pointer. If the Pointer parameter is a null value, no action will take place.


- Realloc() - This subroutine changes the size of the block of memory pointed to by the Pointer parameter to the number of bytes specified by the Size parameter and returns a new pointer to the block. The pointer specified by the Pointer parameter must be created with the malloc, calloc, or realloc subroutines and should not be deallocated with the free or realloc subroutines. Undefined results show up if the Pointer parameter is not a valid pointer.

Report Error

View answer Workspace Report Error Discuss

Subject: C++

0 3605
Q:

What are the goals of Accounts receivable?

Answer

As sales occurs every customer is not able to pay the bills that's where A/R are occurs the goal of A/R is to maintain summarize & record all the transactions related to unpaid a/c or future collections or A/R.

Report Error

View answer Workspace Report Error Discuss

1 3605
Q:

What are virtual functions?

Answer

Polymorphism is also achieved in C++ using virtual functions. If a function with same name exists in base as well as parent class, then the pointer to the base class would call the functions associated only with the base class. However, if the function is made virtual and the base pointer is initialized with the address of the derived class, then the function in the child class would be called.

Report Error

View answer Workspace Report Error Discuss

Subject: C++

1 3602
Q:

What methods have you used to gain commitment from your team?

Answer

Tips :


In order to achieve the commitment, leaders have to request and convince the team to set goals and put them into the process. The cooperative spirit and solidarity for goal achievement are created by the leaders. The team is led into the implementing period as quickly as possible. The argument and ideas from all stakeholders need to be praised. In order to have a success and brilliant commitment, they must express their passionate personal commitment and boost a useful cultivation by highly evaluating individuals’ value and their contributions.

Report Error

View answer Workspace Report Error Discuss

7 3596
Q:

What are the activities present in payroll task?

Answer

1. Processing Payroll to generate Paycheck and Pay Stubs


2. Generating Tax reports and vouchers using which Taxes are deposited to Govt (Employee Tax).


3. Processing reports that are handed over to Accounting Dept.


4. Ensuring that the Deductions, Benefits, Acruals, Taxes and Salaries are accurate (


5. Posting the Journals to Finance


6. Processing Govt Reports and submitted to Govt


7. Entering interims (may also be done by HR in some Companies)


7. Year End Process to generate W2s

Report Error

View answer Workspace Report Error Discuss

0 3592
Q:

Marketing organisation:

As a consultant, what advice would you give a company while setting up its marketing department?

Answer

As a consultant , I would:


• Recommend structuring of the marketing department as per the demands of the different tasks, roles and responsibilities keeping in mind the cost(budget) factor as long as it fits within the budget of the company.


• Finding out and establishing the level of skills, duties and responsibilities of the employees via job descriptions and job specifications.


• Proper and regular supervision of the department to ensure its smooth functioning


• Determine the marketing functions of the department as per the requirements (advertising,distribution channels,promotional activities)

Report Error

View answer Workspace Report Error Discuss

1 3589
Q:

Which among the following is used to send data from one page to another with the URL but you can send limited size of data with the URL

A) Cookies B) View state
C) Querystring D) None
 
Answer & Explanation Answer: C) Querystring

Explanation:

Querystring is used to send data from one page to another with URL.But it can store only some minimum amount of data.Most browsers allow a limit of 255 characters on URL length

Report Error

View Answer Report Error Discuss

Filed Under: .NET
Job Role: Software Architect

0 3581