Skip to main content

SBI IBPS IT Officer Scoring Topics #1

    1. G3 is a computer CHIP
    2. If instruction RST-5 is written in a program, the program control will jump to location 0028H.
    3. TOP-DOWN is a tree PREORDER traversing.
    4. An Operand STACK is essential for conversion to INFIX Expression.
    5. Header of IP is FIXED part of 20 Bytes.
    6. FENCE register is used for MEMORY PROTECTION.
    7. YACC semantic action is sequence of C Statements.
    8. s Symbol represents SYMMETRIC DIFFERENCE. E.g. AsB
    9. 5th NF is related to JOIN DEPENDENCY.
    10. 8086 Microprocessor is a 16 bit Processor.
    11. A total of about 1 million bytes can be directly addressed by the 8086 microprocessor
    12. 8086 has 8 flags
    13. Compare to 8086, the 80286 provides a higher degree of memory operation
    14. The address space of 8086 Microprocessor is 216 = 1MB.
    15. The action of parsing the source program into the proper syntactic classes is known as LEXICAL ANALYSIS.
    16. Printf() in C used to print “character, string, float, integer, octal and hexadecimal values” onto the output screen.
    17. Fprint() in C used to sends formatted output to a stream.
    18. Sprint() in C used to send formatted output to a string pointed to, by str.
    19. Maximum data rate to transmit binary signal from NYQUIST Theorem is 2H.
    20. TTL (Transistor to transistor logic) have HIGHEST FANOUT.
    21. FIFO is a behavior of BELADY’S ANOMALY.
    22. MESH TOPOLOGY is mostly reliable.
    23. I-node number is an index to the array of opening files maintained by the Kernel.
    24. Business uptime should be monitored to prevent the loss of revenue.
    25. STATIC KEYS makes WEB insecure.
    26. TRUNKS are the components of fibre optic network.
    27. BOOT MONITORS are Memory Resident Antivirus.
    28. DISK SCANNERS are Antivirus protection system.
    29. An INFORMATION is a processed data.
    30. A FILE is a collection of Related Records.
    31. The dBASE III+ is mostly used in Database.
    32. ASSEMBLER, COMPILER & INTERPRETER are types of translators.
    33. The OS is also Administration Division.
    34. COMPILER is fastest translator.
    35. Project Management are addressed first and approach to development in WATERFALL Model or SDLC Model,
    36. ROLL FORWARD facility should be done after taking DB IMAGE.
    37. ROLL BACK facility should be done before COMMIT/ DB IMAGE.
    38. SONET uses FIBRE OPTIC cable
    39. What the user has & what the user knows’ is the best means of user Authentication.
    40. DRY PIPE can not be used for extinguishing fire.
    41. DATA ACCURACY is NOT done by MODEM.
    42. TRANSMISSION SPEED, ERROR DETECTION & CORRECTION and COMPRESSION is done by MODEM.
    43. In two-tier client server architecture, the client usually FAT CLIENT.
    44. A thin client is a lightweight computer that is purpose-built for remote access to a server.
    45. SMPS converts RAW input power to power.
    46. Appropriate signs of emergency exits are takes care of physical & environmental security.
    47. CASE tool can’t help Understanding Requirements.
    48. The Senior Management provides the Go-ahead approval for development of projects.
    49. DOS identifies the way a disk has been formatted by Media Descriptor.

Comments

Popular posts from this blog

Hi! I'm Java...

Java is a computer programming language. It enables programmers to write computer instructions using English based commands, instead of having to write in numeric codes. It’s known as a “high-level” language because it can be read and written easily by humans. Like English, Java has a set of rules that determine how the instructions are written. These rules are known as its “syntax”. Once a program has been written, the high-level instructions are translated into numeric codes that computers can understand and execute. Who Created Java? In the early nineties, Java was created by a team led by James Gosling for Sun Microsystems. It was originally designed for use on digital mobile devices, such as cell phones. However, when Java 1.0 was released to the public in 1996, its main focus had shifted to use on the Internet. It provided more interactivity with users by giving developers a way to produce animated webpages . Over the years it has evolved as a successful language for

I'm the Server Operating System

Server Operating System A server operating system is software that was especially developed to serve as a platform for running multi-user computer programs, applications that are networked and programs critical to business computing. This type of operating system (OS) often comes bundled with the most common types of applications deployed in the client-server model, a term used to indicate the exchange of information between computers. For example, a hypertext transfer protocol (HTTP) or web server hosts or "holds" the text files, images files and scripts that work together to form a website. When someone connects to the Internet and types in a web address, the server that holds the files of the site delivers or "serves" the requested pages to the client computer or the machine that made the request. Frequently used applications in the client-server model handle operations for sharing files and printers across a network, hosting and serving web pages via the

A Hit Count Using Java Servlet's Session Tracking

import java.io.*; import javax.servlet.*; import javax.servlet.http.*; public class SessionTracker extends HttpServlet {         public void doGet(HttpServletRequest req,HttpServletResponse res)         throws ServletException,IOException         {                res.setContentType("text/html");                PrintWriter out=res.getWriter();                HttpSession session=req.getSession(true);                Integer count=(Integer)session.getValue("tracker.count");                if(count==null)                {                         count=new Integer(1);                }else{                         count=new Integer(count.intValue()+1);                }                session.putValue("tracker.count",count);                out.println("<HTML><BODY><H1>SESSION TRACKING DEMO</H1>");                out.println("You've visited this page "+count+((count.intValue()==1)?" time.":"times."