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

Using GREP in UNIX

How To Use grep Command In Linux / UNIX by  VIVEK GITE  on  AUGUST 2, 2007  ·  147 COMMENTS H ow do I use grep command in Linux? grep command searches the given file for lines containing a match to the given strings or words. By default, grep prints the matching lines. Use grep to search for lines of text that match one or many regular expressions, and outputs only the matching lines. The name, "grep", derives from the command used to perform a similar operation, using the Unix/Linux text editor ed: g/re/p grep command syntax grep 'word' filename grep 'string1 string2' filename cat otherfile | grep 'something' command | grep 'something' Use grep to search file Search /etc/passwd for boo user: $ grep boo /etc/passwd You can force grep to ignore word case i.e match boo, Boo, BOO and all other combination with -i option: $ grep -i "boo" /etc/passwd Use grep recursively You can search recursively i.e. read all files under each

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."