Interview Questions

Q:

What are Child Selectors ?

Answer

A child selector is used when you want to match an element that is the child of another specific element.
The parent and child selectors are separated by spaces.
The following selector locates an unordered list element within a paragraph element and makes a text within that element bold.


p > ul {font-weight: bold;}

Report Error

View answer Workspace Report Error Discuss

Subject: Web Technology

4 2306
Q:

Why is the main() method declared static?

Answer

main() method is called by the JVM even before the instantiation of the class, hence it is declared as static.

Report Error

View answer Workspace Report Error Discuss

Subject: Java

0 2306
Q:

What are the differences between COBOL and COBOL II?

Answer

There are some differences:


COBOL II supports structured programming by using in line Performs and explicit scope terminators. It introduces new features (EVALUATE, SET. TO TRUE, CALL BY CONTEXT, etc). It permits programs to be loaded and addressed above the 16-megabyte line .  It does not support many old features (READY TRACE, REPORT-WRITER, ISAM, etc.). It offers enhanced CICS support.

Report Error

View answer Workspace Report Error Discuss

0 2303
Q:

Job cost sheets constitute the subsidiary ledger for the

Answer

The job cost sheets constitute the subsidiary ledger for the Work in Process Inventory Account.


A job cost sheet is a form used to record the costs chargeable to a specific job and to determine the total and unit costs of the completed job. Companies keep a separate job cost sheet for each job.

Report Error

View answer Workspace Report Error Discuss

Subject: Bank Interview Exam Prep: Bank Exams , CAT
Job Role: Analyst , Bank Clerk , Bank PO

1 2302
Q:

What do you accomplish by GROUP BY ... HAVING clause?

Answer

GROUP BY partitions the selected rows on the distinct values of the column on which you group by. HAVING selects GROUPs which match the criteria specified

Report Error

View answer Workspace Report Error Discuss

0 2302
Q:

Why is free space left in KSDS Dataset?

Answer

While allocating KSDS Datasets, free space is declared at regular intervals at the time of initial loading. This is done because this free space is utilized for keeping the data arranged in sequence physically, even though inserted randomly.

Report Error

View answer Workspace Report Error Discuss

0 2302
Q:

As a supervisor for a wholesale market, what actions would you take to increase the profit?

Answer

Applicant should answer that as a wholesaler; he/she would interview the suppliers of wholesale market and negotiate the prices, discounts, transportation arrangements, and credit terms. Oversee the distribution of merchandize to different outlets and maintain adequate stock levels. Establish a good rapport with suppliers and supervise the retail outlet markets to get a better knowledge of supply chain management.

Report Error

View answer Workspace Report Error Discuss

Subject: Retail

1 2302
Q:

How to set cookies in PHP?

Answer

The function setcookie() is used to define a cookie that is to be sent along with HTTP headers. The cookie must be sent prior to any output from the script as is the protocol restriction. After setting the cookies, they can be used when the next page is loaded by using $_COOKIE or $HTTP_COOKIE_VARS arrays.

Report Error

View answer Workspace Report Error Discuss

Subject: PHP

0 2302